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

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


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

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

.logotipo a{
	display: inline-block;
	width: 185px;
	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_menu.png");
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
	margin-right: 40px;
	position: relative;
	z-index: 6;
	
}

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

.espacio{
	width: 100%;
	height: 50px;
}

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

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

/*.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);
}
