/*============ Custom Mobile Menu  =================================================================*/
.mobileMenuContent {
	width: 0;
	height: 0;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #00000022;
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	z-index: 1000;
	transition: opacity .7s cubic-bezier(.13,1.67,.7,.61);
}
/* .mobileMenuContent .dropdown-menu.top-elevate {
	transform: translate(0, -100%);
} */
.mobileMenuContent.active {
	width: 100%;
	height: 100vh;
	bottom: 0;
	opacity: 1;
	transition: bottom .7s cubic-bezier(.13,1.67,.7,.61);
}
.mobileMenuContent #menu_user {
	padding: 5px 0 10px 0;
    background-color: #4062FF;
    color: white;
    margin-top: 8px;
    border-radius: 5px;
}
.mobileMenuContent>div {
	width: 100%;
	height: 80vh;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 5px;
	background-color: white;
	color: black;
	box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
	padding: 15px;
	border-radius: 8px 8px 0 0;
	position: relative;
	bottom: -100%;
	transition: bottom .7s cubic-bezier(.13,1.67,.7,.61);
}
.mobileMenuContent.active>div {
	bottom: 0;
	transition: bottom .7s cubic-bezier(.13,1.67,.7,.61);
}
.mobileMenuContent>div a:hover {
	text-decoration: none;
}
.mobileMenuContent>div>div>a, .mobileMenuContent>div>a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 5px !important;
    border-bottom: 1px solid #ddd;
    color: black;
    cursor: pointer;
	/* transition: all .2s ease-in-out; */
}
.mobileMenuContent>div .activeAddLink {
	background: none;
    border-bottom: 1px solid #4062FF;
	color: #4062FF;
}
.mobileMenuContent>div>div>button, .mobileMenuContent>div>div>a>img, .mobileMenuContent>div>a>img {
	padding: 8px;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	background-color: #4062FF;
    border-color: #4062FF;
	color: white;
}
.mobileMenuContent>div>div:hover, .mobileMenuContent>div>a:hover {
	background-color: #4062FF;
	color: white;
	border-radius: 5px;
}
.mobileMenuContent>div>div:hover>a {
    color: white;
}



.mobileMenuContent .navLogo, .mobileMenuContent .navLogo img {
    background: none !important;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    border-bottom: 0 !important;
    margin-bottom: 10px;
}



.mobileMenuContent .some-link.show {
	position: fixed;
	top: 0 !important;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #00000022;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 !important;
	margin: 0 !important;
}
.mobileMenuContent .some-link.show>div {
	width: 90%;
	background-color: white;
	padding: 15px 0;
	border-radius: 8px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.mobileMenuContent .some-link.show>div a{
	padding: 15px 30px;
}


/*============ Dark Mode  =================================================================*/
.c_darkmode .mobileMenuContent #menu_user {
    background-color: #011c53;
}
.c_darkmode .mobileMenuContent>div {
	background-color: #111;
	color: white;
}
.c_darkmode .mobileMenuContent>div a {
	color: white;
}
.c_darkmode .mobileMenuContent>div>div, .c_darkmode .mobileMenuContent>div>a {
    border-bottom: 1px solid #333;
}
.c_darkmode .mobileMenuContent>div .activeAddLink {
    border-bottom: 1px solid #ccc;
}
.c_darkmode .mobileMenuContent>div>div>button, 
.c_darkmode .mobileMenuContent>div>div>a>img, 
.c_darkmode .mobileMenuContent>div>a>img {
	background-color: #011c53;
}
.c_darkmode .mobileMenuContent>div>div:hover, .c_darkmode .mobileMenuContent>div>a:hover {
	background-color: #011c53;
    border-color: #011c53;
}
.c_darkmode .mobileMenuContent .some-link.show>div {
	background-color: #111;
}

/*============ Custom Scrollbar =================================================================*/

#mobileMenuContent ::-webkit-scrollbar {
	width: 3px;
}

#mobileMenuContent ::-webkit-scrollbar-track {
	background: black;
}

#mobileMenuContent ::-webkit-scrollbar-thumb {
	background: #aaaaaa;
}

#mobileMenuContent ::-webkit-scrollbar-thumb:hover {
	background: #5AA9FF;
}