.header {
  background-color: #232F3E;
}

.header .search_input {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.header .search_input form select {
  font-size: 12px;
  height: 38px;
  width: 180px;
  background-color: gainsboro;
}

.header .search_input form input {
  margin: 0px;
  width: 250px;
}

.header .search_input form button img {
  width: 10%;
}

.header .info_cliente {
  margin-top: 15px;
}

.header .info_cliente p {
  font-size: 12px;
  color: white;
  margin: 0px;
}

.header .navHeader {
  margin-top: 10px;
}

.header .navHeader .navLineas {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 22px;
}

.header .navHeader .navLineas li {
  list-style: none;
  padding-right: 5px;
  padding-left: 5px;
  font-size: 20px;
}

@media only screen and (max-width: 1024px) {
  .header .navHeader .navLineas li {
    padding-right: 9px;
    padding-left: 0px;
  }
}

.header .navHeader .navLineas li a {
  text-decoration: none;
  color: white;
  font-size: 15px;
}

@media only screen and (max-width: 1300px) {
  .header .navHeader .navLineas li a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .header .navHeader .navLineas li a {
    font-size: 10px;
  }
}

.header .navHeader .navLineas li:hover {
  background-color: #1880EA;
}

.header .navHeader .submenu {
  position: absolute;
  background-color: whitesmoke;
  display: flex;
  flex-wrap: wrap;
  z-index: 1000;
  width: 100%;
  justify-content: center;
  font-size: 17px;
}

.header .navHeader .submenu .nameSubmenu {
  text-align: center;
  width: 250px;
  margin: 10px;
}

.header .navHeader .submenu .nameSubmenu a {
  color: orangered;
}

.header .navHeader .submenu .nameSubmenu a:hover {
  color: orange;
}

.header .navHeader .submenu .nameSubmenu hr {
  margin-bottom: 5px;
  margin-top: 5px;
}

.header .navHeader .submenu .nameSubmenu .menuSubcategoria {
  padding-inline-start: 5px;
  list-style: none;
}

.header .navHeader .submenu .nameSubmenu .menuSubcategoria a {
  text-decoration: none;
  color: black;
}

.header .navHeader .submenu .nameSubmenu .menuSubcategoria li:hover {
  background-color: #F39D10;
}

.header .navHeader .submenu .nameSubmenu .menuSubcategoria li:hover a {
  color: white;
}

