@charset "utf-8";
/* CSS Document */
/* para paginas donde se mueve el menú */
#posMenuMovil {
  position: absolute;
  z-index: 20;
}

#menuProductos a {
	text-indent: -9999px;
	display: none;
}

#menuLateral {
  background: #F2F2F2;
  font-size: 17px;
  display: block;
  width: 100%;
  max-width: 380px;
  padding: 29px 0 50px 0;
  border: solid 1px var(--color-placeholder);
  border-radius: 7px;
  top: 0;
  left: 0;
}
#menuLateral ul {
  background: #F2F2F2;
}
#menuLateral ul li {
  position: relative;
}
#menuLateral ul li a {
  color: var(--color-negro);
  display: block;
  padding: 16px 49px;
  position: relative;
}
#menuLateral ul li a:hover {
  background: var(--color-amarillo);
}
#menuLateral ul li a::after {
  content: '';
  background: var(--color-gris9);
  height: 1px;
  width: auto;
  position: absolute;
  bottom: 0px;
  left: 28px;
  right: 25px;
  transition: all ease 500ms;
}
#menuLateral ul li a:hover::after {
  left: 0;
  right: 0;
}
#menuLateral ul ul {
  background: #808080;
  padding: 0;
  border-radius: 0 7px 7px 0;
  overflow: hidden;
}
#menuLateral ul ul, #menuLateral ul li:hover ul ul {
  display: none;
}
#menuLateral ul li:hover a { /* colorea a primer nivel */
  background: var(--color-amarillo);
}
#menuLateral ul li:hover ul, #menuLateral ul ul li:hover ul {
  display: block;
}
#menuLateral ul ul {
  display: none;
  width: 100%;
  border-top: solid 1px #FFF;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 130;
}
#menuLateral ul ul li {
  width: 100%;
  margin: 0px;
}
#menuLateral ul ul li a {
  background: transparent !important;
  color: var(--color-blanco) !important;
}
#menuLateral ul ul li a:hover {
  background: var(--color-amarillo) !important;
  color: var(--color-negro) !important;
}
.displayNone {
  display: none !important;
  position: absolute;
  z-index: 100;
}
.cerrarMenuLateral {
  color: var(--color-negro);
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  top: 7px;
  right: 14px;
}
.cerrarMenuLateral:hover {
  color: var(--color-rojo);
}
@media screen and (max-width: 1000px) {
  #menuLateral {
    width: 100%;
  }
  #menuLateral ul li a {
    padding: 16px 50px 16px 22px;
  }
  #menuLateral ul li a::after {
    left: 13px;
    right: 13px;
  }
}
@media screen and (max-width: 800px) {
	#menuProductos a {
		display: block;
	}
  #menuLateral {
    font-size: 16px;
    width: 330px;
    padding: 10px 0;
    border-radius: 0 0 7px 0;
    left: -330px;
    opacity: 0;
    pointer-events: none;
    transition: left 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(5px 7px 5px #0002);
    z-index: 1000;
  }
  #menuLateral.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    position: relative;
  }
  #menuLateral ul ul {
    background: #999;
    display: none;
    max-height: 0;
	  padding-bottom: 0;
    transition: max-height 0.3s ease;
    position: relative;
    left: 0;
    z-index: 1310;
  }
  #menuLateral ul li:hover ul {
    display: none;
  }
  #menuLateral ul ul.visible {
    display: block !important;
  }
	#menuLateral ul ul li a::after {
		background: var(--color-blanco);
	}
  .toggle-submenu {
    background: #888;
    color: #fff;
    font-size: 14px;
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
  } 
  #botonShowMenu {
    display: flex;
  }
}