@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');


:root {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	--bg-primary: #23232e;
	--bg-secondary: #141418;
	--text-primary: #b6b6b6;
	--text-secondary: #ececec;
	--scrollbar-color: #6649b8;
	--glow-text-color: #b030b0;
	color: #777777;
}


body {
	color: #777777;
	background-color: var(--bg-secondary);
	margin: 0;
	padding: 0;
}

main {
	margin-left: 6rem;
	padding: 1rem;
}


body::-webkit-scrollbar {
	width: 0.25rem;
}

body::-webkit-scrollbar-track {
	background: #1e1e24;
}

body::-webkit-scrollbar-thumb {
	background: #6649b8;
}

a {
	text-decoration: none;
	color: var(--scrollbar-color);
}
.creationLinkItem {
	text-decoration: none;
	transition: 1s;
}

.creationLinkItem:hover {
	transition: 1s;
	text-shadow: 0 0 1rem var(--scrollbar-color), 0 0 2rem var(--glow-text-color);
}

.ClearECFunctionDownload {
text-decoration: none;
}

.navbar {
	width: 6rem;
	height: 100vh;
	position: fixed;
	background-color: var(--bg-primary);
	transition: width 200ms ease;
}

.navbar-nav {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nav-item {
	width: 100%;
}

.nav-item:last-child {
	margin-top: auto;
}

.nav-link {
	display: flex;
	align-items: center;
	height: 5rem;
	color: var(--text-primary);
	text-decoration: none;
}

.link-text {
	display: none;
	margin-left: 1rem;
}

.nav-icon {
	min-width: 1rem;
	margin-left: 0rem;
	align-items: center;
}

.navbar:hover {
	width: 16rem;

}

.navbar:hover .link-text {
	display: block;

}

.buttons {
	background-color: var(--bg-secondary);
	position: relative;
	text-align: center;
	font-size: 1rem;
	color: #6649b8;
	font-weight: 400;
	border: 5px solid #6649b8;
	text-transform: capitalize;
	border-radius: 1rem;
	letter-spacing: 0.1rem;
	cursor: pointer;
	transition: 0.5s;
}

.buttons:hover {
	background-color: #00000057;
	box-shadow: 0 5px 50px 0 #6649b8 inset, 0 5px 50px 0 #6649b8,
		0 5px 50px 0 #6649b8 inset 0 5px 50px 0 #6649b8;
	transition: 1s;
	opacity: 80%;
}


.buttons::after {
	background-color: var(--bg-secondary);
	opacity: 100%;
	transition: 1.5s;
}

.button-danger {
	border-color: rgba(255, 0, 0, 0.637);
}

.shop-item {
	margin: 3rem;
}

.shop-item-title {
	display: block;
	width: 100%;
	/*text-align: center;*/
	font-weight: bold;
	font-size: 1.5em;
	margin: 0rem;

}

.shop-item-image {
	height: 8rem;

}

.shop-item-details {
	display: flex;
	align-items: center;
}

.shop-item-price {
	padding-right: 1rem;
}

.shop-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.cart-header {
	font-weight: bold;
	font-size: 1.2em;
	color: #333333;
}
.cart-column {
	display: flex;
	align-items: center;
	border-bottom: 1px solid black;
	margin-right: 1.5em;
	padding-bottom: 10px;
	margin-top: 10px;
	text-transform: uppercase;
	border-color: #777777;
}
.cart-row {
	display: flex;

}
.cart-item {
	width: 45%;
}
.cart-price {
	width: 20%;
	font-size: 1.2em;
	text-align: center;
	justify-content: center;
	
}


.cart-quantity {
	width: 35%;
}

.cart-item-title {
	color: rgb(88, 88, 88);
	margin-left: 0.5em;
	font-size: 1.2em;

}

.cart-item-image {
	width: 20rem;
	height: auto;
	border-radius: 10px;
}

.cart-quantity-input {
	height: 1rem;
	background-color: var(--bg-primary);
	border-color: var(--bg-primary);
	border-radius: 10%;
	border: 0.2rem solid var(--scrollbar-color);
	width: 5rem;
	margin-right: 3rem;
	margin-left: 3rem;
	text-align: left;
	font-size: 1.2em;

}

.cart-row:last-child {
	border-bottom:  1px solid #777777;
}
.cart-row:last-child .cart-column {
	border: none;
}

.cart-total {
	text-align: end;
	margin-top: 10px;
	margin-right: 10px;
}
.cart-total-title {
	font-weight: bold;
	font-size: 1.5em;
	color: #777777;
	margin-right: 20px;

}
.cart-total-price {
	color: #777777;
	font-size: 1.5em;

}

.button-purchase {
	display: block;
	margin: 40px auto 80px auto;
	font-size: 1.5em;
}

.modal .modal-content{
	background-color: var(--bg-primary);
}

.card .card-content{
	background-color: var(--bg-primary);
}

.center {
	margin-top: 13rem;
	padding-left: 23rem;

}

input {
color: #BEBEBE;
}