/*============ Custom Wrapper =================================================================*/

#custom-wrapper {
	display: flex !important;
	flex-wrap: wrap;
}

#custom-wrapper>nav#navbar {
	display: none;
}

#custom-wrapper>nav#navbar_custom {
	position: fixed;
	top: 0;
	width: 13%;
	height: 100vh;
	background-color: #4062FF;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 0;
	overflow: visible;
	z-index: 1000;
}

#custom-wrapper>nav#navbar_custom .menu-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	color: white;
	height: 80%;
	width: 100%;
	overflow-x: visible;
	overflow-y: auto;
	scrollbar-color: #aaaaaa #4062FF;
	scrollbar-width: thin;
	margin: 0px auto 0 auto;
}

#custom-wrapper>nav#navbar_custom .menu-links a {
	color: white;
	text-decoration: none;
}

#custom-wrapper>nav#navbar_custom .menu-links>a,
#custom-wrapper>nav#navbar_custom .menu-links>div>a,
#custom-wrapper>nav#navbar_custom .menu-links>div {
	width: 90%;
	display: flex;
	align-items: center;
	gap: 0 10px;
	transition: .2s !important;
}
#custom-wrapper>nav#navbar_custom .menu-links>div,
#custom-wrapper>nav#navbar_custom .menu-links>a {
	padding: 0 5px;
}

#custom-wrapper>nav#navbar_custom .menu-links .dropdown-menu a {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0 10px;
}

#custom-wrapper>nav#navbar_custom>div:nth-child(1) {
	width: 80%;
	margin: auto;
}

.navLogo img {
	width: 80px !important;
}

#custom-wrapper>nav#navbar_custom .menu-links a img,
#custom-wrapper>nav#navbar_custom .menu-links>div button {
	padding: 5px;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	transition: .2s;
}

#custom-wrapper>nav#navbar_custom .menu-links a span,
#custom-wrapper>nav#navbar_custom .menu-links div span {
	display: block;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.activeAddLink {
	background-color: #5AA9FF;
	border-radius: 5px;
	padding: 5px !important;
}

#custom-wrapper>nav#navbar_custom .menu-links a:hover,
#custom-wrapper>nav#navbar_custom .menu-links>div:hover {
	background-color: #5AA9FF;
	border-radius: 5px;
	transition: .2s !important;
}

#custom-wrapper>nav#navbar_custom .menu-links>div button:focus {
	box-shadow: none !important;
}

#custom-wrapper>nav#navbar_custom div .some-link.dropdown-menu {
	position: fixed;
	top: 0;
	left: 105px;
	border-radius: 8px;
	box-shadow: 1px 2px 6px rgba(167, 167, 167, 0.25);
	transition: .1s ease-in-out;
}

#custom-wrapper>nav#navbar_custom div .some-link.dropdown-menu.top-elevate {
	top: auto;
	bottom: 1%;
}

#custom-wrapper>nav#navbar_custom div .some-link.dropdown-menu.top-elevate2 {
	top: auto;
	bottom: 24%;
}

#custom-wrapper>nav#navbar_custom div .some-link.dropdown-menu.top-elevate3 {
	top: auto;
	bottom: 8%;
}

#custom-wrapper>nav#navbar_custom .menu-links>div .some-link a {
	color: black;
}


/*============ User Menu =================================================================*/

#menu_user {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start !important;
	width: 100% !important;
	justify-self: flex-end;
	margin-top: auto;
}

#menu_user>div>a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 10px;
	color: white;
}

#menu_user sub {
	position: absolute;
	top: 35px;
	right: 15px;
}

#menu_user .help-link h6 {
	text-align: center;
}

#menu_user .help-link .some-link a {
	font-size: 14px !important;
}

#menu_user .help-link .help-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 5px;
	margin: 20px auto 10px auto;
}

#menu_user .help-link .help-btn a {
	font-size: 12px !important;
}

#menu_user .navbar-avatar {
	background-color: rgba(255, 255, 255, 0.1);
	width: 20px;
	height: 20px;
	object-fit: cover;
	border-radius: 100% !important;
}

#custom-wrapper .dark-lang>div {
	margin-left: 0 !important;
}

.lang-btn .lang-list {
	position: absolute;
	left: 160px;
	bottom: 50px;
	padding: 8px;
	background-color: var(--white);
	border-radius: 8px;
	box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.3);
	display: none;
}

.lang-btn:hover .lang-list {
	display: block !important;
}


/*============ Custom Main  =================================================================*/

#custom-wrapper>main {
	width: 85vw;
	margin-top: 30px;
	margin-left: 12%;
	margin-bottom: 50px;
}


/*============ Custom Footer =================================================================*/

.custom-wrapper.footer {
	display: none;
	margin-left: 90px;
}


/*============ Dark Mode  =================================================================*/
.c_darkmode .activeAddLink {
	background-color: #3348f6;
}
.c_darkmode #custom-wrapper>nav#navbar_custom {
	background-color: #0f1522;
}

.c_darkmode #custom-wrapper>nav#navbar_custom .menu-links>div .some-link a {
	color: white;
}



@media screen and (max-width: 1400px) {
	#custom-wrapper>main {
		margin-left: 13% !important;
	}
}


@media screen and (max-width: 1250px) {
	#custom-wrapper>main {
		margin-left: 12%;
	}
}

@media screen and (max-width: 993px) {
	#custom-wrapper {
		flex-direction: column;
	}

	#custom-wrapper>nav#navbar_custom {
		display: none;
	}

	#custom-wrapper>nav#navbar {
		display: flex;
	}

	#custom-wrapper>main {
		width: 100%;
		margin-top: 100px;
		margin-left: 0 !important;
	}
	#custom-wrapper .dash-filters>div {
		width: 98%;
	}
}
