#header {
  position: fixed;
  top: 0;
  z-index: 11;
}

.header_fila_1 {
  height: 60px;
  background-color: #242424;
}

.header_fila_2 {
  height: 117px;
  background-color: #5F5F5F;
}

#contenedor_menu_header_pc {
  margin-bottom: 10px;
}

#contenedor_menu_header_pc > a {
  padding: 0px 20px;
}

.a_menu_header {
  display: inline-block;
}

.a_menu_header.active::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 70%;
  left: 14px;
  right: 0;
  top: -35px;
  background: #E83751;
}

#menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: flex-end;
  z-index: 13;
}

#menu-mobile > div:nth-child(2) {
  flex-basis: 70%;
  height: 100vh;
  background-color: #E83751;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#menu-mobile.show {
  transform: translateX(0);
}

#contenedor-interno-menu-mobile {
  flex-basis: 80%;
  margin: 0 auto;
  padding-top: 35%;
}

#contenedor-interno-menu-mobile a {
  display: block;
  padding-bottom: 20px;
}

.close-menu-mobile {
  position: absolute;
  top: 20px;
  right: 20px;
}

/*# sourceMappingURL=header.css.map */
