body.overflow-hidden {
  overflow: hidden;
}

header.header > div {
  max-width: 1440px;
  width: 90%;
  background: #fff;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header.header > div .header-menu {
  width: 100%;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
header.header > div .header-menu .menu-main-container > ul {
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
header.header > div .header-menu .menu-main-container > ul li {
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
header.header > div .header-menu .menu-main-container > ul li:hover {
  background: rgb(248, 238, 236);
}
header.header > div .header-menu .menu-main-container > ul li a {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  padding: 15px 0px;
  position: relative;
  color: rgb(91, 97, 112);
  transition: all 0.3s ease-in-out;
  flex-direction: column;
}
header.header > div .header-menu .menu-main-container > ul li a:hover {
  color: rgb(50, 58, 74);
}
header.header > div .header-menu .menu-main-container > ul li.menu-item-has-children > a::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transition: width 0.3s;
  background-image: url("../images/chevron-down.svg");
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu {
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 500;
  top: 55px;
  padding-bottom: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: none;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu ul {
  padding: 0;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu ul li {
  padding: 10px;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu ul li .menu-item-image img {
  width: 100%;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu ul li .menu-item-title {
  display: block;
  font-size: 16px;
  padding-top: 10px;
  text-align: left;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu .swiper-button-container {
  position: relative;
  height: 39px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu .swiper-button-container .swiper-button {
  position: static;
  margin: 0;
  border: 1px solid rgb(50, 58, 74);
  height: 12px;
  padding: 10px 0;
}
header.header > div .header-menu .menu-main-container > ul li .kkom-sub-menu .swiper-button-container .swiper-button::after {
  font-size: 12px;
  color: rgb(50, 58, 74);
}
header.header > div img {
  width: 100px;
  height: auto;
  object-fit: cover;
  padding: 30px 0;
}

.header-menu.super-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 10;
}

.header-menu-mobile-content {
  position: fixed;
  top: 0;
  left: -999px;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: left 0.3s ease-in-out;
  display: none;
}
.header-menu-mobile-content.active {
  left: 0;
}
.header-menu-mobile-content > div:first-child {
  background: white;
  width: 80%;
  height: 100%;
}
.header-menu-mobile-content > div:first-child ul.menu {
  padding: 20px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  overflow: auto;
  height: 600px;
}
.header-menu-mobile-content > div:first-child ul.menu button {
  height: 24px;
  width: 24px;
  float: right;
  padding: 0;
  background: none;
  transform: rotate(-90deg);
}
.header-menu-mobile-content > div:first-child ul.menu button.active {
  transform: rotate(0deg);
}
.header-menu-mobile-content > div:first-child ul.menu .sub-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  padding-top: 20px;
}
.header-menu-mobile-content > div:first-child ul.menu .sub-menu.active {
  display: flex;
}
.header-menu-mobile-content > div:first-child ul.menu .sub-menu li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.header-menu-mobile-content > div:first-child ul.menu .sub-menu li a {
  color: #757575;
}
.header-menu-mobile-content > div:first-child ul.menu > li.active > a {
  color: #58A4B0;
}
.header-menu-mobile-content > div:first-child .kkom_search_form {
  border-bottom: 1px solid #ddd;
  padding: 20px;
}
.header-menu-mobile-content > div:first-child .kkom_search_form > div {
  border: 1px solid #ddd;
  padding: 0 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.05);
}
.header-menu-mobile-content > div:first-child .kkom_search_form > div input {
  width: 80%;
}
.header-menu-mobile-content .icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.header-menu-mobile-content .icon svg {
  width: 24px;
  height: 24px;
  fill: #C0C0C0;
}

header.header-mobile {
  display: none;
}

.header-menu-mobile-content-wrapper {
  position: fixed;
  z-index: 200;
  background: rgba(0, 0, 0, 0.8);
  opacity: 300;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
}

@media (max-width: 992px) {
  header.header > div .header-menu {
    display: none;
  }
  header.header > div img {
    width: 80px;
    padding: 20px 0;
  }
  .header-menu-mobile-content {
    display: block;
  }
  header.header {
    display: none;
  }
  header.header-mobile {
    position: fixed;
    z-index: 100;
    display: block;
    height: 60px;
    background: #fff;
    width: 100%;
    top: 0;
  }
  header.header-mobile .header-menu-mobile .header-menu-mobile-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  header.header-mobile .header-menu-mobile .header-menu-mobile-icon span:nth-child(1) {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    margin-bottom: 5px;
  }
  header.header-mobile .header-menu-mobile .header-menu-mobile-icon span:nth-child(2) {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    margin-bottom: 5px;
  }
  header.header-mobile .header-menu-mobile .header-menu-mobile-icon span:nth-child(3) {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
  }
  header.header-mobile .logo-container {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.header-mobile .logo-container img {
    width: 50px;
    padding: 0;
  }
  .header-mobile-height {
    height: 60px;
  }
  .header-menu-mobile-content > div:first-child ul.menu > li,
  .header-menu-mobile-content > div:first-child ul.menu .sub-menu li {
    background: transparent !important;
  }
}

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