.header-placeholder {
  width: 100%;
  display: flex;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 40px 100px;
  border: 1px solid #fffff1;
  border-radius: 50px;
  background-color: #fffff1;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.217);
}
.header .container .menu,
.header .container .menu-mb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 5px 80px;
  position: relative;
}
.header .container .sub-menu-product {
  position: absolute;
  top: 100px;
  left: 70px;
  width: 70%;
  background-color: #0a6846;
  border: 1px solid #0a6846;
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.header .container .sub-menu-product .sub-menu-item-left,
.header .container .sub-menu-product .sub-menu-item-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header .container .sub-menu-product .sub-menu-item-left a,
.header .container .sub-menu-product .sub-menu-item-right a {
  color: #d2ffea;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border: unset;
  font-size: 16px;
}
.header .container .sub-menu-product .sub-menu-item-left a.hot-items,
.header .container .sub-menu-product .sub-menu-item-right a.hot-items {
  color: #ffc928;
}
.header .container .sub-menu-product .sub-menu-item-left a.hot-items .water-drop,
.header .container .sub-menu-product .sub-menu-item-right a.hot-items .water-drop {
  display: none;
}
.header .container .sub-menu-product .sub-menu-item-left a:not(.hot-items) .water-drop,
.header .container .sub-menu-product .sub-menu-item-right a:not(.hot-items) .water-drop {
  visibility: hidden;
}
.header .container .sub-menu-product .sub-menu-item-left a:hover,
.header .container .sub-menu-product .sub-menu-item-right a:hover {
  color: #4cb64c;
}
.header .container .sub-menu-product .sub-menu-item-left a:hover .water-drop,
.header .container .sub-menu-product .sub-menu-item-right a:hover .water-drop {
  visibility: visible;
}
.header .container .sub-menu-product .sub-menu-item-left a:hover.hot-items .star,
.header .container .sub-menu-product .sub-menu-item-right a:hover.hot-items .star {
  display: none;
}
.header .container .sub-menu-product .sub-menu-item-left a:hover.hot-items .water-drop,
.header .container .sub-menu-product .sub-menu-item-right a:hover.hot-items .water-drop {
  display: unset;
}
.header .container .sub-menu-product-mb {
  position: absolute;
  top: 100px;
  right: 70px;
  width: 50%;
  padding: 20px;
  background-color: #0a6846;
  border: 1px solid #0a6846;
  border-radius: 30px;
}
.header .container .sub-menu-product-mb .sub-menu-item-mb {
  display: flex;
  flex-direction: column;
}
.header .container .sub-menu-product-mb .sub-menu-item-mb a {
  color: #d2ffea;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: unset;
}
.header .container .sub-menu-product-mb .sub-menu-item-mb a:hover {
  color: #4cb64c;
}
.header .container a {
  cursor: pointer;
  color: black;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #fffff1;
  border-radius: 50px;
  padding: 5px 10px;
}
.header .container a {
  text-decoration: unset;
}
.header .container .menu-item.active {
  color: #0a6846;
  border: 2px solid #0a6846;
  border-radius: 50px;
  padding: 5px 10px;
}
.header .container .logo img {
  padding: 10px 0;
  cursor: pointer;
}

.header-mb {
  display: none;
}

@media (max-width: 1024px) {
  .header {
    display: none;
  }
  .header-mb {
    position: fixed;
    width: 95%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 20px 10px;
    border: 1px solid #fffff1;
    border-radius: 50px;
    background-color: #fffff1;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.217);
  }
  .header-mb .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
  }
  .header-mb .container img {
    width: 62px;
    height: 62px;
  }
  .header-mb .menu-hamburger {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0a6846;
    transition: left 0.3s ease;
    z-index: 999;
    overflow: scroll;
  }
  .header-mb .menu-hamburger .menu-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  .header-mb .menu-hamburger .menu-item .close-btn-hamburger-mb {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header-mb .menu-hamburger .menu-item .close-btn-hamburger-mb img {
    width: 35px;
    height: 35px;
    cursor: pointer;
  }
  .header-mb .menu-hamburger .menu-item a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #fff6d2;
    padding: 10px 0;
    line-height: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-mb .menu-hamburger .menu-item .show {
    color: #ffc928;
  }
  .header-mb .menu-hamburger .menu-item-product {
    display: flex;
    flex-direction: column;
  }
  .header-mb .menu-hamburger .menu-item-product a {
    color: #ffc928;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: unset;
  }
  .header-mb .menu-hamburger.show {
    left: 0;
  }
}

/*# sourceMappingURL=header.css.map */
