<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {background: none;}

body::before {
	content: '';
	display: block;
	z-index: -1;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--ThemeMangoGradient);
}

.nav {
	border-bottom: 1px solid #ffffff5e;
	height: unset;
	padding: 0;
	flex-direction: column;
	transition: 200ms;
}

.mobile_nav_expand nav {top: 0 !important;}

nav {
	position: sticky;
	top: -84px;
	width: 100%;
	background: none;
	transition: 200ms;
}

.mobile_nav_lower {top: 0;}

.logo_nav_cont {
	width: 100%;
	padding: 16px 30px;
}

.notification_banner {display: none;}
.notification_banner.show-mobile {display: block;}
.notification_banner.promo::after,
.notification_banner.promo::before {display: none;}

.notification_banner .mobile-only {display: inline;}
.notification_banner .desktop-only {display: none;}

.mobile_nav_expand .notification_banner.show-mobile {display: none;}

.mobile_nav_cont {
	position: fixed;
	top: 83px;
	height: 0vh;
	height: calc(100vh - 830px);
	height: calc(100 * var(--vh) - 83px) !important;
	overflow-y: auto;
	width: 100%;
	background: var(--MobileNavBg);
	left: 0;
	z-index: 90;
	display: flex;
	transform: translateX(-100%);
	transition: transform .35s ease,-webkit-transform .35s ease;
	flex-direction: column;
}

.mobile_nav_expand .nav, .scrolled_nav .nav {background: var(--MobileNavBg);}
.mobile_nav_expand .mobile_nav_cont {transform: translateX(0);}
.mobile_nav_expand {
	overflow-y: hidden;
	position: fixed;
	width: 100%;
	top: 0;
	bottom: 0;
}

.mobile_menu_btn {
	font-family: "Icons";
	padding: 8px;
	background: var(--MobileNavBtnBg);
	border-radius: 50%;
	font-size: 22px;
	margin-left: auto;
	display: block;
	transition: 200ms;
}

.mobile_menu_btn::after {content: '\F479';}
.mobile_nav_expand .mobile_menu_btn::after {content: '\F659'; font-weight: 900;}
.mobile_menu_btn:hover {
	background: var(--MobileNavBtnHoverBg);
}

.nav_items {
	font-family: 'Arial', sans-serif;
	color: var(--ThemeTextColor);
	font-size: 18px;
	appearance: none;
	list-style: none;
	display: flex;
	font-weight: bold;
	white-space: nowrap;
	flex-direction: column;
	gap: 0px;
	padding: 20px;
}

.upper_nav a {
	border-radius: 0;
	border-bottom: 1px solid var(--MobileNavBorderColor);
	display: block;
	padding: 15px;
}

.lower_nav {
	margin-left: auto;
	width: 100%;
	padding: 20px;
	text-align: center;
	gap: 15px;
	margin-top: auto;
}

.login_btn, .signup_btn {
	width: 100%;
	display: block;
	border-radius: 30px !important;
}

.lower_nav .login_btn {
	border: 2px solid currentColor;
	padding: 12px;
}

.lower_nav .signup_btn {
	padding: 14px;
}

.nav_items .dashboard_btn::after {display: none;}
</pre></body></html>