.sp_header__menu {
  top: 100px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
  position: fixed;
  background-color: #20346b;
  z-index: 800;
  padding: 0;
  overflow-y: scroll;
}

body.header__menu--on .sp_header__menu {
  display: block;
}

.sp_header__nav {
  position: relative;
  top: 20px;
  left: 0;
  list-style: none;
  padding: 0px 20px 100px;
}

.sp_header__nav-item {
  padding: 10px 0px 0px 10px;
}

.sp_header__nav > .sp_header__nav-item > a {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
}

.sp_header__nav-item:not(.has-children) > a:hover {
  color: #c6c6c6;
}

.sp_header__nav--inner {
  list-style: none;
  padding: 0px 0px 20px;
}

.sp_header__nav--sub {
  list-style: none;
  padding: 10px 0px 0px 10px;
  display: none;
}

.sp_header__nav--sub .sp_header__nav-item {
  border-left: 2px solid white;
  padding: 5px 0px 5px 10px;
  margin-bottom: 5px;
  transition: 0.3s all ease-in-out;
}

.sp_header__nav--sub .sp_header__nav-item:hover {
  border-left: 6px solid white;
}

.sp_header__nav--sub .sp_header__nav-item:hover a {
  transform: translateX(5px);
}

.sp_header__nav--inner .sp_header__nav-item svg {
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 3px;
  transition: 0.3s all ease-in-out;
}

.sp_header__nav--inner .sp_header__nav-item.active svg {
  transform: rotate(90deg);
}

.sp_header__nav-item a {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.sp_header__nav--inner .sp_header__nav-item a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
}

.sp_header__nav--sub .sp_header__nav-item a {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}

.header {
  /*height: 90px;*/
  flex-direction: row;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0px;
  position: fixed;
  top: 0;
  width: 100%;
  display: table;
  background-color: #fff;
  z-index: 600;
}

.header__wrap {
  max-width: 1140px;
  margin: 0px auto;
  width: calc(100% - 30px);
  display: flex;
  padding: 0px 15px;
}

.header__logo {
  padding-top: 10px;
}

.header__logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

.header__left {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
}

.header__main {
  flex: 0.8;
  display: flex;
  justify-content: space-evenly;
  /*height: 139px;*/
}

.header__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 31px;
  height: 33px;
  cursor: pointer;
  max-height: 33px;
  gap: 25px;
}

.header__nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 15px;
  cursor: pointer;
}

.header__nav > .header__nav-item {
  padding: 0px 15px;
}

.header__nav-item.is-open > .header__nav-link {
  color: #20346b;
}

.header__nav-item.is-open > .header__nav-link::after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #20346b;
}

.header__nav-link {
  text-decoration: none;
  color: #525252;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  padding: 36px 0px;
}

.header__nav-link .iconify {
  margin-right: 10px;
  font-size: 26px;
  position: relative;
  top: 4px;
  height: 30px;
  width: 30px;
}

.header__nav-item__inner-wrapper.show--hover {
  display: none;
}

/* .header__nav-item:hover .header__nav-item__inner-wrapper.show--hover, .header__nav-item-wrapper.hovered .header__nav-item__inner.show--hover {
    display: block;
} */

.header__nav-item.is-open .header__nav-item__inner-wrapper.show--hover {
  display: block;
}

.header__nav-item__inner-wrapper {
  position: absolute;
  margin: auto;
  top: calc(100% - 36px);
  width: 100%;
  left: 0;
  padding-top: 36px;
}
.header__nav-item__inner-background {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
}

/* .header__nav-item__inner {
    max-width: 1392px;
    margin: auto;
    position: relative;
} */

.header__nav-item__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* gap: 40px; */
}

.header__nav-item__inner-item.column {
  display: flex;
  flex-direction: column;
  width: 250px;
  border-right: none;
}

.header__nav-item__inner-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #525252;
}

.header__nav-item__inner-item {
  text-decoration: none;
  list-style: none;
  width: 250px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  color: #525252;
}

.header__nav-item__inner-item__content .header__nav-item__inner-item {
  padding-top: 0px;
  padding-bottom: 0px;
}

.header__nav-item__inner-item.is--label {
  border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
  cursor: default;
}

.header__nav-item__inner-item:hover,
.header__nav-item__inner-item.hovered {
  border-right: 1px solid #20346b;
}

.header__nav-item__inner-item:hover > .header__nav-item__inner-item-link,
.header__nav-item__inner-item.hovered > .header__nav-item__inner-item-link {
  color: #20346b;
  letter-spacing: -0.2px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

.header__nav-item__inner-item:hover .header__nav-item__inner-item__content,
.header__nav-item__inner-item.hovered .header__nav-item__inner-item__content {
  display: block;
}

.header__nav-item__inner-item-link {
  text-decoration: none;
  color: #525252;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
}

/* .header__nav-item__inner-item__content {
    position: absolute;
    left: 300px;
    min-width: 300px;
    top: 40px;
    display: none;
    z-index: 200;
} */

.header__nav-item__inner-item__content {
  position: relative;
  left: 0 !important;
  top: 0;
  display: block !important;
  min-width: unset;
  padding-top: 10px;
}

.header__nav-item__inner-item__content:nth-child(3) {
  left: 600px;
}
.header__nav-item__inner-item__content:nth-child(4) {
  left: 900px;
}

.header__nav-item__inner-item__content .header__nav-item__inner-item {
  border-right: none;
  padding: 4px 0;
}

.header__nav-item__inner-item__content .header__nav-item__inner-item:hover {
  transform: translateX(10px);
}

.header__nav-item__inner-item__content .header__nav-item__inner-item-link {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  padding: 8px 0px;
  display: block;
}

.header__nav-item__inner-item__content
  .header__nav-item__inner-item:hover
  > .header__nav-item__inner-item-link,
.header__nav-item__inner-item__content
  .header__nav-item__inner-item.hovered
  > .header__nav-item__inner-item-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #525252;
}

.header__nav_global__inner-wrapper {
  display: none;
  position: absolute;
  top: 60px;
  left: -24px;
}

.sp-header__global__inner-wrapper {
  display: none;
  position: absolute;
  left: -45px;
  width: auto;
  top: 43px;
}

.header__nav_global_item {
  display: table;
  padding-top: 2px;
  position: relative;
}

.header__nav_global_item:hover .header__nav_global__inner-wrapper,
.header__nav_global_item.hovered .header__nav_global__inner-wrapper {
  display: block;
}

.sp-header__global_link {
  cursor: pointer;
}

.sp-header__global_link.hovered .sp-header__global__inner-wrapper {
  display: block;
}

.header__nav_global__inner-wrapper::before,
.sp-header__global__inner-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 20px solid transparent;
  border-bottom: 20px solid #f3f3f3;
  border-right: 20px solid transparent;
  background: transparent;
  z-index: -1;
}

.header__nav_global__inner,
.sp-header__global__inner {
  background: #f9f9f9;
  border: 1.6px solid #eee;
  box-shadow: 16px 16px 80px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  list-style-type: none;
  width: 189px;
}

.header__nav_global__inner-item:not(:last-child),
.sp-header__global__inner-item:not(:last-child) {
  border-bottom: 1.6px solid #eeeeee;
}

.header__nav_global__inner-item-link,
.sp-header__global__inner-item-link {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #000000;
  width: calc(100% - 30px);
  padding: 10px 10px 10px 20px;
  text-decoration: none;
}

.header__nav_global_text {
  padding-top: 0px;
  top: 27px;
  position: absolute;
}

.header__right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  /*margin-left: auto;*/
  padding: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
  vertical-align: top;
  /*margin-right: 20px;*/
  min-width: 210px;
}

.header__right .header__nav-item {
  /*padding: 0px 0px 0px 80px;*/
}

.sp-header {
  display: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 109px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 600;
}

.sp-header__content {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 10px;
}

.sp-header__logo {
  margin-left: 25px;
  margin-right: auto;
}

.sp-header__logo img {
  width: 174px;
  max-width: 100%;
  height: auto;
}

.sp-header__link {
  color: #525252;
  font-weight: 500;
  margin-right: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}

.sp-header__link .iconify {
  margin-right: 5px;
}

.sp-header__menu-icon {
  margin-right: 25px;
  font-size: 16px;
  font-weight: 500;
  background-color: #20346b;
  height: 47px;
  width: 47px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-header__menu-icon img {
  max-width: 100%;
}

/** Tablet (Potrait) **/
@media only screen and (max-width: 1024px) {
  .header {
    display: none;
  }

  .header__left {
    padding-left: 20px;
  }

  .header__logo img {
    max-width: 200px;
    width: 158px;
  }

  .header__nav {
    display: none;
  }

  .header__nav-item {
    padding: 40px 15px;
    height: 29px;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__right {
    border-left: none;
  }

  .sp-header {
    display: block;
  }
}

/** Smartphone **/
@media only screen and (max-width: 767px) {
}

.header__nav-item__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* gap: 20px; */
  max-width: 1300px;
  margin: 0 auto;
  justify-content: center;
}

.header__nav-item__inner-item.column {
  display: flex;
  flex-direction: column;
  width: 220px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0 10px 0;
  align-items: center;
  text-align: center;
}

.header__nav-item__inner-item.column:last-child {
  border-right: none;
}

.header__nav-item__inner-item.column .header__nav-item__inner-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #525252;
  margin-bottom: 10px;
}

.header__nav-item__inner-item__content {
  display: block !important;
  padding-left: 0;
  position: relative;
  top: 0;
  left: 0 !important;
}

.header__nav-item__inner-item__content li {
  list-style: none;
  padding: 5px 0;
  margin: 0;
}

.header__nav-item__inner-item__content li a {
  color: #525252;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
  display: block;
  transition: 0.2s ease;
  font-weight: 400;
}

.header__nav-item__inner-item__content li:hover a {
  font-weight: 500;
  font-size: 14px;
  color: #20346b;
  transform: translateX(5px);
}

.header__nav-item__inner-item.column:hover {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.header__nav-item__inner-item.is--label:hover {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.header__nav-item__inner-item__content:nth-child(3),
.header__nav-item__inner-item__content:nth-child(4) {
  left: 0 !important;
}

.header__product-dropdown {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.header__product-group__title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px;
}

.header__product-group__title a {
  color: #20346b;
  text-decoration: none;
}

.header__product-group__title a:hover {
  text-decoration: underline;
}

/* Optional: make Brand Collection look cleaner (no columns) */
.header__product-group--brand .header__product-group__title {
  margin-bottom: 0;
}

/* Keep your open underline for Product */
.header__nav-item.is-open > .header__nav-link {
  color: #20346b;
}

.header__nav-item.is-open > .header__nav-link::after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #20346b;
}

/* Product dropdown wrapper open by click only */
.header__nav-item__inner-wrapper.show--hover {
  display: none;
}
.header__nav-item.is-open .header__nav-item__inner-wrapper.show--hover {
  display: block;
}

.header__nav-item__inner-wrapper.show--hover {
  display: none;
}

/* Open state + underline */
.header__nav-item--product.is-open > .header__nav-link {
  color: #20346b;
}

.header__nav-item--product.is-open > .header__nav-link::after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #20346b;
}

.header__nav-item--product.is-open
  .header__nav-item__inner-wrapper.show--hover {
  display: block;
}

/* Tabs row */
.header__product-tabs {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 18px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: center;
}

.header__product-tab {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 2px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #525252;
  position: relative;
  text-decoration: none;
}

.header__product-tab.is-active {
  color: #20346b;
}

.header__product-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #20346b;
}

/* Panels */
.header__product-panel {
  display: none;
}

.header__product-panel.is-active {
  display: block;
}

.header__nav-item__inner {
  max-width: 1300px;
  margin: 0 auto;
  justify-content: center;
}

.sp_header__nav-item__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp_header__nav-item.is-open > a .iconify--caretright {
  transform: rotate(90deg);
}

.sp_header__nav-item .iconify--caretright {
  transition: 0.3s all ease-in-out;
}



.header {
  position: fixed;
  z-index: 9999;
}

.header__nav-item--product {
  position: static;
}

.header__nav-item--product.is-open .header__nav-item__inner-wrapper {
  display: block;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
}