/* panel-lateral-menu (background) */

.panel-lateral-menu { /* este es el background, ocupa toda la pantalla */
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  transition: display 0.5s;
}

/* The side navigation menu */
.contenedor-panel-lateral-menu { /* este es el panel que muestra los contenidos */
  height: 100vh;
  width: 100%; /* 0 width - change this with JavaScript */ /* Hasta 20210315 estaba en 400px */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: var(--colorPanelFondoDocumento);
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: width 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  margin-top: 0; /* Antes 133px, para ver el logo, pero si el ascensor está desplazado, de nada sirve y se ve mal */
}

@media screen and (min-width: 400px) {
  .contenedor-panel-lateral-menu {
    width: 400px;
  }
}

.navegacion-logo-menu {
  background-color: var(--colorBackgroundFranjaLogosInstitucionales);
  border-bottom: var(--colorSeparador) solid 5px;
}

.icono-boton-cerrar-menu {
  display: flex;
  width: 60px;
  height: 100px;
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .icono-boton-cerrar-menu {
    width: 84px;
  }
}

.logo-col-menu {
  display: flex;
  height: 100px;
  justify-self: start;
  align-items: center;
}

@media screen and (min-width: 576px) {
  .logo-col-menu {
    justify-self: start;
    margin-left: 0;
  }
}

.logo-col-menu img {
  height: 70px;
}

@media screen and (min-width: 576px) {
  .logo-col-menu img {
    height: 80px;
  }
}

@media screen and (min-width: 768px) {
  .logo-col-menu img {
    height: 90px;
  }
}

.migas-menu {
  height: 60px;
  background-color: var(--colorAzulMigas);
  box-shadow: 0 1px 1px 0 rgba(0,0,0,0.07);
}

.migas-menu img {
  width: 16.67px;
  height: 14.17px;
  margin-left: 31.67px;
}

.titulo-modulos-menu {
  display: flex;
  height: 50px;
  font-size:  var(--letra12);
  font-weight: 600;
  color: var(--colorTextoTituloSeccionMenuLateral);
  align-items: center;
  margin-left: 20px;
}

@media screen and (min-width: 576px) {

  .titulo-modulos-menu {
    margin-left: 30px;
  }
}

.opcion-menu {
  cursor: pointer;
  height: 40px;
  width: 100%;
}

.contenedor-opcion-menu {
  height: 100%;
  width: 100%;
  background-color: var(--fondoOpcionNueva);
}

.contenedor-opcion-menu:hover {
  background-color: var(--fondoOpcionNuevaHover);
}

.grid-contenedor-opcion-menu {
  height: 100%;
  align-content: center;
}

.imagen-opcion-menu {
  display: flex;
  margin-left: 20px;
}

@media screen and (min-width: 576px) {

  .imagen-opcion-menu {
    margin-left: 30px;
  }
}

.imagen-opcion-menu img {
  width: 20px;
  border-radius: 4px;
}

.titulo-opcion-menu {
  display: flex;
  width: 100%;
  color:var(--colorTextoOpcionMenu);
  font-size: var(--letra12);
  line-height: 14px;
  font-weight: 600;
  align-items: center;
}

@media screen and (min-width: 576px) {

  .titulo-opcion-menu {
    font-size: var(--letra14);
    line-height: 16px;
  }
}

.titulo-opcion-menu p {
  margin: auto;
}

.ver-mas-opcion-menu {
  display: none; /* Estaba en flex */
  margin-right: 20px;
}

@media screen and (min-width: 576px) {

  .ver-mas-opcion-menu {
    margin-right: 30px;
  }
}

.ver-mas-opcion-menu img {
  width: 10px;
  height: 10px;
}

.contenedor-ver-mas-opcion-menu {
  display: flex;
  height: 36px;
  width: 100%; /*can be in percentage also.*/
  line-height: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.texto-ver-mas-opcion-menu {
  display: none;
  color: var(--colorTextoBotonVerMas);
  font-size: var(--letra12);
  font-weight: bolder;
  letter-spacing: 0.4px;
  margin-left: 5px;
}

@media screen and (min-width: 576px) {

  .texto-ver-mas-opcion-menu {
    display: inline;
  }
}

@media screen and (min-width: 768px) {

  .texto-ver-mas-opcion-menu {
    font-size: var(--letra14);
  }
}

#texto-ver-mas-opcion-menu {
  margin: 0;
  padding: 0;
}




.xconfiguracion-menu {
  grid-area: configuracion-menu;
}
