.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border: 0;
  z-index: 1001;
  height: 65px;
  background-color: #D9E3E5;
  font-size: 20px;
  padding: 0 20px;
}

/*with adminbar*/
body.logged-in.admin-bar header{
  margin-top: 32px;
}
/**/

.header-logo {
  width: 119px;
  height: 36px;
  object-fit: contain;
}

.chard {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  /*mix-blend-mode: multiply;*/
  isolation: isolate;
  z-index: 0;
  pointer-events: none;
}

.header nav {
  max-width: 1200px;
  height: 68px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}

.header nav>* {
  display: inline-block;
}

.header nav .menu-title {
  font-family: "HyberDisplay", "Helvetica", "Open Sans", sans-serif;
  font-size: 40px;
  padding: 20px;
  display: none;
}

.header nav a {
  text-decoration: none;
  font-size: 18px;
}

.header nav .link-container {
  flex: 1;
  text-align: right;
  margin: 0 20px;
}

.header nav .menu-btn {
  display: none;
}

.header nav .hamburger {
  margin: 0 20px 0 0;
  cursor: pointer;
  display: none;
  position: relative;
}

.header nav .hamburger span {
  display: block;
  width: 23px;
  height: 3px;
  margin-bottom: 6px;
  position: relative;
  background: #2E6680;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.header nav .hamburger span:last-of-type {
  margin-bottom: 0px;
}

.header nav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}

.header nav ul.menu li {
  display: inline-block;
  padding: 0 10px;
}

.header nav .icon-container {
  margin-left: auto;
}

.header nav .icon-container a {
  display: inline-block;
  margin: 0 10px;
}

.header nav .icon-container a:first-of-type {
  margin-left: 0;
}

.header nav .icon-container a:last-of-type {
  margin-right: 0;
}

.header nav .icon-container a.header-search-icon {
  margin-right: 0;
}

.header nav .icon-container a.header-search-icon img {
  width: 24px;
  height: 24px;
}

.header nav .menu-btn:checked~.link-container {
  visibility: visible;
  opacity: 1;
  top: 0;
  position: fixed;
}

.header nav .menu-btn:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  margin-bottom: -12px;
}
.header nav .menu-btn:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
.header nav .menu-btn:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  margin-bottom: 0;
}

.menu > li > .sub-menu {
  position: absolute;
  right: -10px;
  max-width: 150%;
  width: 75vw;
  padding: 60px 47px;
  background: white;
  box-shadow: 7px 7px 9px 0px #d7e3e53d;
  /*display: flex;
  flex-wrap: wrap;*/
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  row-gap: 30px;
  column-gap: 20px;
  text-align: left;
  font-weight: 700;
  font-family: "L10", "Helvetica", "Arial";
  overflow: auto;
  max-height: calc(100vh - 80px);
}
.menu > li > .sub-menu > li.menu-show-if-mobile {
  display: none;
}

.menu > li > .sub-menu a {
  font-size: 1.286rem;
  line-height: 2.4rem;
}
.menu > li > .sub-menu .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  font-weight: 400;
}
.menu > li > .sub-menu .sub-menu a {
  font-size: 1.142rem;
  line-height: 2.4rem;
}
.header nav .menu > li > ul.sub-menu > li {
  padding: 0;
}
.header nav .menu > li > ul.sub-menu > li > .sub-menu li {
  padding: 0;
}
.menu > li:hover > .sub-menu {
  display: grid;
}

.mobile-menu-open {
  overflow: hidden;
  height: 100%;
}
.mobile-menu-open .minicart-container {
  display: none !important;
}

.header nav ul.menu li.base-sub-menu-all {
  display: none;
}

/* Header search start */

.header .header_search {
  padding-top: 10px;
  display: none;
}

.header .header_search .product_list-search-input {
  background: #fff !important;
  padding: 14px 70px 14px 60px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
  font-size: 17px !important;
}

.header .header_search .product_list-search-button {
  font-size: 17px !important;
}

/* Header search end */


.cart-indicator {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #2f6680;
  font-size: 11px;
  width: 18px;
  height: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #fff;
  border-radius: 100%;
}

.header-menu-icon-cart {
  position: relative;
}

@media (max-width: 1085px) {
  .wrapper {
    padding: 65px 0;
  }
  .header {
    height: 65px;
  }
  .header nav .hamburger {
    display: inline-block;
  }
  .header nav>* {
    z-index: 2;
  }
  .header nav .link-container {
    visibility: hidden;
    flex: 1;
    text-align: left;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #D7E3E5;
    padding-top: 95px;
    z-index: 1;
    transition: opacity 0.25s ease-out, top 0.52s ease-out;
    opacity: 0;
    top: -100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .header nav .menu-title {
    display: none;
  }
  .header nav ul.menu {
    display: block;
  }
  .header nav ul.menu li {
    display: list-item;
    padding: 20px 20px;
  }
  .header nav ul.menu li a {
    font-size: 30px;
  }
  .header nav ul.menu > li > .sub-menu > li > a {
    font-size: 24px;
  }
  .menu > li > .sub-menu > li.menu-show-if-desktop {
    display: none;
  }
  .menu > li > .sub-menu > li.menu-show-if-mobile {
    display: inline-block;
  }
  .menu > li > .sub-menu {
    position: relative;
    right: 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
    /*display: flex;
    flex-wrap: wrap;*/
    display: flex;
    grid-template-columns: 1fr;
    row-gap: 0;
    column-gap: 0;
    text-align: left;
    font-weight: 400;
    font-family: "L10", "Helvetica", "Arial";
    overflow: hidden;
    max-height: none;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 40px;
  }
  .menu > li:hover > .sub-menu {
    display: flex;
  }
  .header nav .menu > li > ul.sub-menu > li > .sub-menu {
    display: none;
    padding-top: 10px;
  }
  .header nav .menu > li > ul.sub-menu > li {
    padding: 0 20px 28px 0;
    position: relative;
  }
  .header nav .menu > li > ul.sub-menu > li::after {
    content: "";
    background: url("../img/chevron-down-mobile-menu.svg") no-repeat;
    background-size: contain;
    width: 16px;
    height: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .header nav .menu > li > ul.sub-menu > li.menu-item-open > .sub-menu {
    display: flex !important;
  }
  .header nav .menu > li > ul.sub-menu > li.menu-item-open {
    padding-bottom: 16px;
  }
  .header nav .menu > li > ul.sub-menu > li.menu-item-open::after {
    transform: rotate(180deg);
  }
  .menu li.show-product-categories > a {
    font-family: 'HyberDisplay';
    text-transform: uppercase;
  }
  .menu > li > .sub-menu .sub-menu a {
    text-decoration: underline;
    font-size: 1.25rem;
  }
  .header nav ul.menu li.base-sub-menu-all {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .header-logo {
    width: 94px;
    height: 36px;
  }
  a.wishlist_products_counter.top_wishlist-heart-plus.no-txt, span.wishlist_products_counter.top_wishlist-heart-plus.no-txt {
    width: 30px;
    height: 31px;
  }
  a.top_wishlist-heart-plus:before {
    width: 25px !important;
    height: 27px !important;
  }

  .header-menu-icon img {
    max-width: 26px;
    max-height: 26px;
  }

  .header nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  a.wishlist_products_counter.top_wishlist-heart-plus.wishlist-counter-with-products:before, span.wishlist_products_counter.top_wishlist-heart-plus.wishlist-counter-with-products:before {
    height: 26px;
    width: 26px;
  }

  .header .header_search {
    padding-top: 0;
  }

  .header .header_search .product_list-search-input {
    font-size: 15px !important;
  }

  .header .header_search .product_list-search-button {
    font-size: 15px !important;
  }
}