nav {
	position: fixed;
	width: 300px;
	height: 100%;
	background-color: #ffffff;
	color: rgba(14,161,85,1.00) !important;
	font-weight: bold;
	overflow: hidden;
	overflow-y: auto;
	user-select: none;
	box-shadow: 4px 0 2px rgba(0,0,0,.15);
	-webkit-overflow-scrolling: touch;
}

/* SCROLLBAR */

nav::-webkit-scrollbar {
	width: .25rem;
}

nav::-webkit-scrollbar-track {
	background-color: rgba(0,0,0,0.25);
}

nav::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,0.50);
}

nav::-webkit-scrollbar-button {
	display: none;
}

.topnav-container {
    display: flex;
    width: 100%;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
    flex-direction: column;
}

#btn-menu {
	display: none;
}

/* LOGO */

.logo-container {
	padding: 1rem .5rem;
}

.logo-container img {
	display: block;
	width: 100%;
}

/* CUENTA */

.cuenta-container {
	padding: 0 .5rem;
}

.cuenta-avatar {
	display: flex;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 2rem;
	align-items: center;
	justify-content: center;
	margin: auto;
	font-size: 34px;
	background-color: rgba(14,161,85,1.00);
	color: #fff;
	overflow: hidden;
	transition: .25s background-color;
}

.cuenta-avatar:hover {
	background-color: rgba(11,130,70,1.00);
}

.cuenta-avatar i {
	color: #fff;
}

.cuenta-nombre {
	font-size: 18px;
	color: #666;
	font-weight: 500;
	text-align: center;
	margin: .25rem 0 .25rem;
}

.cuenta-logout {
	font-size: 14px;
	color: rgba(209,31,34,1.00);
	text-align: center;
}

/* MENU */

.menu-container {
	padding: 1rem .5rem;
}

.menu-container a {
	display: flex;
	padding: .5rem;
    align-items: center;
    justify-content: space-between;
}

.menu-container .sub-menu-1, .menu-container .sub-menu-2 {
    display: none;
}

.menu-container .sub-menu-1 a {
	height: 40px;
	padding-left: 2rem;
}

.menu-container .sub-menu-2 a {
	height: 40px;
	padding-left: 3rem;
}

.menu-container .icon-menu {
    display: flex;
    align-items: center;
	font-size: 22px;
	transition: .25s color;
}

.menu-container a:hover .icon-menu {
	color: #0EA155 !important;
}

.submenu-text{
    margin-left: .75rem;
	font-size: 16px;
	padding-bottom: 2px;
    color: #666 !important;
    font-weight: 1000;
	transition: .1s border-bottom, .1s color;
}

.menu-container .menu-text {
	margin-left: .75rem;
	font-size: 20px;
	padding-bottom: 2px;
    color: #000000;
    font-weight: bold;
	transition: .1s border-bottom, .1s color;
}

.menu-container a:hover .menu-text {
    color: #0EA155 !important;
	border-bottom: 1px solid #0EA155 !important;
}

.active .menu-text {
	border-bottom: 1px solid #0EA155 !important;
	color: #0EA155 !important;
}

.active .icon-menu {
	color: #0EA155 !important;
}

@media (max-width: 800px) {
	nav {
        position: static;
        width: 100%;
		box-shadow: 0 4px 2px rgba(0,0,0,.15);
    }
	
	.topnav-container {
        flex-direction: row;
        overflow: visible;
    }
	
	#btn-menu {
        display: block;
        cursor: pointer;
        padding: var(--padding-3);
    }
	
	.logo-container img {
        width: auto;
        max-height: 30px;
    }
	
	.cuenta-container {
        display: flex;
    }
	
	.cuenta-container > a {
		margin-right: 1rem;
	}
	
	.cuenta-avatar {
		height: 2.8rem;
		width: 2.8rem;
		border-radius: 1.3rem;
		font-size: 26px;
	}
	
	.menu-container {
        display: none;
        margin: 0;
		padding: .25rem;
    }
}

@media (max-width: 450px) {
	.cuenta-avatar {
		display: none;
	}
	
	.logo-container img {
		max-height: 25px;
	}
	
	.cuenta-nombre {
		font-size: 14px;
	}
	
	.cuenta-logout {
		font-size: 12px;
	}
}