body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'General Sans', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    box-sizing: border-box;
	background-color: #17343F;
}
body {
	position: relative;
}
*, *::before, *::after {
    box-sizing: inherit;
}
.container {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    z-index: 0;
    position: relative;
}
.desktop-menu-wrapper {
	top: 30px;
	height: fit-content;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
	z-index: 3;
	background: none !important;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
	max-width: 1100px;
	transition: width 2s ease-in-out, padding 2s ease-in-out;
}
.desktop-menu {
	position: relative;
	z-index: 6;
    display: flex;
	height: 94px;
	margin: 0 auto;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 47px;
    background-color: rgba(255, 255, 255, 0.13);
    border: 1px solid #767676;
    width: 100%;
	max-width: 1100px;
	padding: 0 35px;
	transition: width .7s ease-in-out, padding .7s ease-in-out;
}
.desktop-menu-wrapper.expanded,
.desktop-menu.expanded {
    width: calc(100% + 90px);
    max-width: calc(1100px + 90px);
    padding-right: 10px;
	
}
.desktop-menu-wrapper.expanded {
	padding-right: 0;
}
.desktop-menu:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
    border-radius: 47px;
}
.desktop-menu a {
    z-index: 7;
}
.desktop-menu a img {
	width: 100%;
	height: auto;	
	max-width: 182px;
	object-fit: contain;
    z-index: 7;
	transform: translate(0, 4px);
}
.desktop-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
	align-items: center;
    align-content: center;
    justify-content: flex-end;
    z-index: 7;
}
.desktop-menu ul li {
    margin: 0 40px;
}
.desktop-menu ul .button {
	font-family: 'General Sans Semibold';
    font-size: 22px;
    width: 200px;
    height: 66px;
    padding: 0;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
	margin: 0 20px 0 40px;
}
.desktop-menu ul li a,
.desktop-menu ul li a:hover,
.desktop-menu ul li a:active,
.desktop-menu ul li a:focus,
.sidebar ul li a,
.sidebar ul li a:hover,
.sidebar ul li a:active,
.sidebar ul li a:focus {
	font-family: 'General Sans Medium';
    text-decoration: none;
    color: #B9B9B9;
    font-size: 22px;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
	z-index: 11;
}
.sidebar,
.cart-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    transition: left 0.3s ease-in-out;
	z-index: 6;
	margin: 0 auto;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #253035;
    border: 1px solid #ffffff6B;
	padding: 20px 0 0;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.sidebar .buttons {
	width: 100%;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
	gap: 20px;
}
.cart-sidebar {
	left: auto;
    right: -550px;
    width: 550px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
	padding: 0;
	transition: right 0.3s ease-in-out;
    background-color: #253035;
    border: 1px solid rgba(255, 255, 255, 0.42);
}
.cart-items,
.cart-items .cart-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
	gap: 10px;
	padding: 25px 30px 0;
	z-index: 1;
}
.cart-items .cart-item .title {
    font-family: 'General Sans Semibold', sans-serif;
    font-size: var(--fs-sm-md);
    line-height: 1em;
	color: var(--white-color);
}
.cart-items .cart-item .price {
    font-family: 'General Sans', sans-serif;
    font-size: var(--fs-sm-md);
    line-height: 1em;
    font-weight: 400;
	color: var(--white-color);
	margin: 0 0 20px
}
.cart-items .cart-item .billed {
    font-family: 'General Sans', sans-serif;
    font-size: var(--fs-ssm);
    line-height: .8em;
    font-weight: 400;
	color: var(--gray-color);
}
.cart-items .cart-item .remove {
    font-family: 'General Sans', sans-serif;
    font-size: var(--fs-ssm);
    line-height: .8em;
    font-weight: 400;
	color: var(--white-color);
	text-decoration: underline;
	cursor: pointer;
}
.cart-sidebar.open {
	right: 0;
}
.sidebar.open {
    left: 0;
}
.sidebar .close-btn {
	position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 6;
}
.cart-sidebar .close-btn {
    cursor: pointer;
}
.close-btn img,
.cart-sidebar img {
    max-width: 19px;
    width: 100%;
    object-fit: contain;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0;
	z-index: 6;
	position: relative;
}
.sidebar ul li {
    padding: 10px 20px;
}
.mobile-menu .burger img {
    width: 100%;
    height: auto;
}
.mobile-menu .burger {
	width: 100%;
	max-width: 50px;
	height: auto;
    z-index: 5;
    position: absolute;
}
.button {
	display: inline-block;
	background-color: #00ff51;
	color: #000;
	padding: 24px 68px;
	text-decoration: none;
	border-radius: 50px;
	font-family: 'General Sans Bold', sans-serif;
	transition: all 0.3s ease;
	font-size: var(--fs-btn);
	cursor: pointer;
	text-align: center;
}
.button:hover {
	background-color: #00e64a;
	box-shadow: 0 0 50px rgba(0, 255, 81, 0.8);
}
.top-cart {
	display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%;
	padding: 35px 30px 25px;
	z-index: 1;
}
.cart-sidebar .cart-devider {
	width: 100%;
	border-bottom: 1px solid #767676;
	z-index: 1;
}
.cart-sidebar .cart-devider.bottom {
	margin: 0 0 30px;
}
.top-cart span {
	font-family: 'General Sans Semibold';
    font-size: var(--fs-xlg-subtitle);
    line-height: 1.1em;
	color: var(--primary-color);
}
.cart-icon {
	width: fit-content;
	cursor: pointer;
}
.cart-icon img {
	width: 35px !important;
}
.cart-sidebar .cart-sidebar-item .top-cart span {
	font-family: 'General Sans Semibold';
    font-size: var(--fs-xlg-subtitle);
    line-height: 1.1em;
	color: var(--primary-color);
}
#cart-icon img {
    width: 0 !important;
    padding: 0;
    overflow: hidden;
    transition: width 0.3s ease-in-out, padding 0.3s ease-in-out;
}
#cart-icon img.open {
    width: 70px !important;
    padding: 0 20px !important;
}
.open-cart-icon,
.open-cart-icon.open {
    content: url("../images/cart.svg");
}
#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 90%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: -3;
}
#cart-overlay.active {
    opacity: 1;
    visibility: visible;
	z-index: 5;
}
.cart-sidebar .cart-sidebar-item {
	width: 100%;
	display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
	gap: 20px;
}
.cart-sidebar .cart-sidebar-item:last-child {
	padding: 50px;
	gap: 20px;
}
.cart-sidebar .cart-sidebar-item:first-child {
	height: 100%;
	justify-content: flex-start;
}
.cart-sidebar .cart-sidebar-item .cart-subtotal {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: flex-start;
    justify-content: space-between;
}
.cart-sidebar .cart-sidebar-item span {
	font-family: 'General Sans', sans-serif;
	font-weight: 400;
	font-size: var(--fs-ssm);
	color: var(--gray-color);
}
.cart-sidebar .cart-sidebar-item .amount {
	font-family: 'General Sans Semibold', sans-serif;
	color: var(--white-color);
}
.cart-sidebar .cart-sidebar-item .button {
	font-family: 'General Sans Bold', sans-serif;
	font-size: var(--fs-btn);
	color: var(--price-color);
	width: 100%;
}
.sidebar .logo {
	width: 100%;
	height: auto;
	max-width: 120px;
	padding: 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

}
.sidebar .logo img {
	width: 100%;
	height: auto;
	max-width: 120px;
}
.login-icon {
	width: 26px !important;
    height: auto !important;
    margin: 0 !important;
}
.dashboard-icon {
	width: 30px !important;
    height: auto !important;
}
.checkout-message {
	z-index: 1;
    font-family: 'General Sans', sans-serif;
    font-weight: 400;
    font-size: var(--fs-ssm);
    line-height: 1.1em;
    color: var(--price-color);
    z-index: 1;
	text-align: center;
	width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
	gap: 7px;
	min-height: 400px;
}
#mobile-logo {
	width: 100%;
	position: fixed;
	display: none;
	top: 20px;
	z-index: 6;
}
@media screen and (max-width: 1200px) {
    .desktop-menu {
		max-width: 998px;
    }
}
@media screen and (max-width: 1024px) {
    .desktop-menu,
	.desktop-menu-wrapper	{
        display: none;
    }
    .mobile-menu {
        display: block;
    }
	.sidebar ul li:last-child,
	.sidebar ul li:last-of-type {
		margin: 0 0 30px;
	}
	.button {
		padding: 15px 40px;
	}
	#mobile-logo {
		display: flex;
		align-content: center;
		justify-content: center;
		align-items: center;
	}
}
@media screen and (min-width: 1025px) {
    .sidebar {
        display: none;
    }
}
@media screen and (max-width: 768px) {
	.cart-sidebar {
		right: -250px;
		width: 250px;
	}
}