.mf-menu-ico {
  position: relative;
  height: 2rem;
  width: 2rem;
  --background: var(--color-text);
  cursor: pointer;
}
.mf-menu-ico span {
  position: absolute;
  top: calc(50% - 0.0625rem);
  left: 0%;
  width: 65%;
  height: 0.125rem;
  transition: var(--transition);
  background: var(--background);
}
.mf-menu-ico::after, .mf-menu-ico::before {
  position: absolute;
  left: 0%;
  content: "";
  display: inline-block;
  width: 45%;
  height: 0.125rem;
  background: var(--background);
  transition: var(--transition);
  transition-duration: 0.2s;
}
.mf-menu-ico::after {
  top: 0.5rem;
}
.mf-menu-ico::before {
  bottom: 0.5rem;
  width: 85%;
}
.mf-menu-ico.active span {
  opacity: 0;
  transform: rotate(45deg) scale(0.5);
  background: var(--color-base-t-20);
}
.mf-menu-ico.active::before {
  width: 80%;
  transform: rotate3d(0, 0, 1, -45deg);
  margin-bottom: 0.5rem;
}
.mf-menu-ico.active::after {
  width: 80%;
  transform: rotate3d(0, 0, 1, 45deg);
  margin-top: 0.375rem;
}

.mf-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  transition: all 0.15s ease-in-out;
  z-index: 100;
  height: 4rem;
  transition-duration: 0.25s;
  background-color: #fff;
}
.mf-header + main {
  padding-top: 4rem;
}

.mf_scroll_active.mf_scroll_bottom .mf-header {
  transform: translateY(-120%);
}

.mf-header-main {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
@media (max-width: 1023px) {
  .mf-header-main {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.mf-header-main .open-mf-menu {
  margin-right: 0.5rem;
}
@media (min-width: 1024px) {
  .mf-header-main .open-mf-menu {
    display: none;
  }
}
.mf-header-main .logo {
  margin: auto;
  display: flex;
}
@media (min-width: 1024px) {
  .mf-header-main .logo {
    position: relative;
    z-index: 1;
    margin: 0;
    min-width: 140px;
  }
}
.mf-header-main .header-control {
  display: flex;
  font-size: 1.75rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0.25rem;
}
.mf-header-main .header-control > [class*=ico-] {
  width: 2rem;
  position: relative;
  cursor: pointer;
  transition: var(--transition-ease);
}
.mf-header-main .header-control > [class*=ico-]:hover {
  color: var(--color-base);
}
.mf-header-main .header-control > [class*=ico-] .counter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 0.5rem;
  position: absolute;
  top: 1.1875rem;
  right: -0.1875rem;
  background: var(--color-gray-s-70);
  border-radius: 10rem;
  color: #fff;
  border: solid 0.125rem #fff;
  pointer-events: none;
}
@media (min-width: 768px) {
  .mf-header-main .header-control {
    justify-content: flex-end;
    -moz-column-gap: 0.3125rem;
         column-gap: 0.3125rem;
    min-width: 7rem;
    margin-left: -7rem;
  }
}

.mf-menu {
  width: 100%;
  transition: transform 0.15s linear;
}
.mf-menu a {
  display: flex;
  width: 100%;
  align-items: center;
}
.mf-menu a:not(:hover) {
  color: var(--color-text);
}
@media (max-width: 1023px) {
  .mf-menu {
    z-index: 99;
    position: fixed;
    top: 4rem;
    left: 0;
    pointer-events: none;
    touch-action: none;
    background: #fff;
    height: calc(100dvh - 4rem);
    transform: translateX(-120%);
    overflow-x: hidden;
  }
  .mf-menu.active {
    transform: translateX(0);
    pointer-events: all;
    touch-action: auto;
  }
  .mf-menu a [class*=ico-] {
    margin-left: auto;
    font-size: 2rem;
    height: 1rem;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .mf-menu {
    height: 100%;
  }
  .mf-menu .main-menu {
    margin-left: -4.5rem;
  }
}
.mf-menu .main-menu {
  height: 100%;
  font-size: 1.125rem;
}
@media (max-width: 1023px) {
  .mf-menu .main-menu {
    position: relative;
  }
  .mf-menu .main-menu ul {
    width: 100%;
    height: 100%;
    transition: var(--transition-ease);
    overflow-y: auto;
    padding-bottom: 2rem;
    background: #fff;
  }
  .mf-menu .main-menu ul.submenu-active {
    overflow: hidden;
  }
  .mf-menu .main-menu ul li {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mf-menu .main-menu ul li a {
    padding: 1rem 0;
    border-bottom: solid 1px var(--color-border);
    font-weight: 600;
  }
  .mf-menu .main-menu ul li:not(.simple-submenu) > ul {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(120%);
  }
  .mf-menu .main-menu ul.submenu-active > li > ul.active {
    transform: translateX(0);
    overflow: auto;
    z-index: 2;
    padding-left: 0;
  }
  .mf-menu .main-menu .menu-back {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.25rem;
    cursor: pointer;
    position: sticky;
    top: 0;
    background-color: #fff;
    width: 100%;
    font-weight: 600;
    border-bottom: solid 1px var(--color-border);
    color: var(--color-base-s-30);
  }
  .mf-menu .main-menu .menu-back [class*=ico-] {
    font-size: 2rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .mf-menu .main-menu > ul {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .mf-menu .main-menu > ul > li {
    height: 100%;
  }
  .mf-menu .main-menu > ul > li > a {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-weight: 500;
  }
  .mf-menu .main-menu .menu-item-has-children > ul {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    transition: var(--transition-ease);
    transform: scale(0.5);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    touch-action: none;
    max-width: none;
    padding: 2rem 1rem 0.5rem;
    max-width: 50rem;
    display: flex;
    flex-wrap: wrap;
  }
  .mf-menu .main-menu .menu-item-has-children > ul li {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 25%;
  }
  .mf-menu .main-menu .menu-item-has-children > ul a {
    padding: 0.375rem 0;
  }
  .mf-menu .main-menu .menu-item-has-children > ul::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 1rem;
    left: 0;
    background-color: #fff;
    border-radius: var(--b-r-3);
    z-index: -1;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.04), 0 0 1rem rgba(0, 0, 0, 0.01);
  }
  .mf-menu .main-menu .menu-item-has-children:hover ul {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
    touch-action: auto;
  }
  .mf-menu .main-menu a > [class*=ico-],
  .mf-menu .main-menu .menu-back {
    display: none;
  }
}

.hide-products,
.compare-products {
  display: none;
}

.favorite_active .favorite-products {
  display: block;
}

.hide_active .hide-products {
  display: block;
}

.compare_active .compare-products {
  display: block;
}/*# sourceMappingURL=header-zaimu.css.map */