@charset "utf-8";
/* CSS Document */

/*/////////////////// ENCABEZADO ///////////////////*/


.cabecera{
	
	background: #000000;
	display: flex;
	justify-content:space-between;
	align-items: center;
	height: 70px;
	z-index: 200;
	position: fixed;
	width: 100%;
	border-bottom: solid 1px #fff;
	
}

.logotipo{
	background: url("../images/logo_levak.png");
	width: 298px;
	height: 56px; 
	margin-left: 30px;
	background-repeat: no-repeat;
	
}

.logotipo a{
	display: inline-block;
	width: 208px;
	height: 56px; 
}

.cont_admin{
	display: flex;
	align-items: center;
	
}

.iconos_admin{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 40px;
	gap:9px;
}

.icono_user {
	background: url("../images/icono_user.png");
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	background-size: contain;
}

.icono_whats {
	background: url("../images/logo_whatsapp.png");
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	background-size: contain;
	
}

.txt_cat{
	color: #fff;
	padding: 10px;
}
 
.icono_menu{
		position: relative;
		width: 30px;
		height: 50px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 50px;
	}

.icono_menu::before {
		content: '';	
		position: absolute;
		width: 100%;
		height: 6px;
		background:#fff;
		transform: translateY(-12px);
	    box-shadow: 0 12px #fff;
		transition: 0.5s;
		border-radius: 5px;
	}
	
.icono_menu::after {
		content: '';	
		position: absolute;
		left: 0;
		width: 70%;
		height: 6px;
		background: #fff;
		transform: translateY(12px);
		transition: 0.5s;
		border-radius: 5px;
	
	}

.slidebar.mostrar .icono_menu::before {
		transform: rotate(45deg);
		box-shadow: 0 0px #fff;
	}
	
.slidebar.mostrar .icono_menu::after {
		transform: rotate(315deg);
		width: 100%;
	}


/*/////////////////// NAV-USER ///////////////////*/

.btn_user{
	background: url("../images/icono_user.png");
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
	
	position: relative;
	z-index: 6;
}

.contenedor_user{
	position: relative;
	
	display: flex;
	justify-content: flex-end;
}

.dropdown_menu_user{
	display: none;
	position: absolute;
	min-width: 200px;
	background-color: #000;
	z-index: 5;
	top: 0px;
	padding: 10px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom: 1px solid #fff;
	
}

.btn_dropdown_user{
	width: 100%;
	height: 40px;
	border-bottom: 1px dashed #fff;
	padding: 10px;
	font-family: dm-sans, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11pt;
}

/*.btn_dropdown_user:nth-child(5){
	border-bottom:none;
} */

.contenedor_user:hover .dropdown_menu_user{
	display: flex;
	flex-direction: column;
}

 .btn_dropdown_user:hover{
	background-color: rgba(255,255,255,0.2);
}



/*/////////////////// NAVEGADOR ///////////////////*/


.slidebar{
	position: fixed;
	height: 100%;
	width: 260px;
	background: #000;
	margin-left: -300px;
	margin-top: 70px;
	transition: all .6s;
	z-index: 9;
}

.slidebar.mostrar{
	margin-left: 0px;
	z-index: 9150;
	border-right:  solid 1px #fff;
}

.cont_menu{
	position: relative;
	width: 100%;
	height: 85%;
	margin-top: 40px;
	overflow-y: scroll;
}

.cont_menu::-webkit-scrollbar {
	display: none;
}

.items_menu{
	width: 100%;
	height: 100%;
	list-style: none;
	transition: all 0.4s ease;
	
}

.submenu-active .items_menu{
	transform: translateX( -56%);
}

.item a, .submenu_item {
	padding: 12px;
	border-bottom: dashed 1px #494949;
	display: inline-block;
	width: 100%;
/*	border-radius: 12px; */
	
}

.item a:hover, .submenu_item:hover, .submenu .menu-title:hover {
	background: #494949;
	color:#fff;
}

.submenu_item{
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	cursor: pointer;
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 11pt;
	
}

.submenu{
	position: absolute;
	width: 100%;
	height: 100%; 
	top: 0px;
	background: #000;
	right: calc(-100% - 26px);
/*	height: calc(100% + 100vh); */
	display: none;
	overflow-y: scroll;
	
}

.show-submenu ~ .submenu{
	display: block;
}

.menu-title{
	
	font-size: 13pt;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	cursor: pointer;
	font-family: "condor", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.submenu .menu-title{
	
	cursor: pointer;
}

.dropdown_sub .item a {
	font-family: "dm-sans", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 11pt;
	padding: 16px 
}

.subtitulo_cat span {
	font-family: "dm-sans", sans-serif;
    font-weight: 500;
    font-style: normal;
	display: inline-block;
	width: 100%;
	font-size: 13pt;
	color: #fff;
	padding: 12px 14px;
	
}

.producto_categorias{
	width: 100%;
	
	color: #fff;
	text-align: center;
	padding: 15px;
}


/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
.logotipo {
    margin-left: 10px;
	max-width: 40%;
	background-size: contain;
}	
	
.icono_menu {
   
    margin-right: 10px;
}	
	
.iconos_redes a {
    
    width: 25px;
    height: 25px;
    margin-left: 8px;
}		
	
	
}


@media (min-width:0px) and (max-width:481px){
	
.logotipo {
		
	width: 200px;
    margin-left: 10px;
	min-width: 40%;
	background-size: contain;
}
	
.icono_menu {
        margin-right: 10px;
    }	
	
}

