@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 300;
  src: local("Circe"), url("../fonts/Circe-Light.woff") format("woff");
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 400;
  src: local("Circe"), url("../fonts/Circe-Regular.woff") format("woff");
}
@font-face {
  font-family: "Circe";
  font-style: normal;
  font-weight: 700;
  src: local("Circe"), url("../fonts/Circe-Bold.woff") format("woff");
}

:root {
  --black: #000000;
  --text: #121314;
  --grey-90: rgba(0, 0, 0, 0.9);
  --grey-85: rgba(0, 0, 0, 0.85);
  --grey-80: rgba(0, 0, 0, 0.8);
  --grey-70: rgba(0, 0, 0, 0.7);
  --grey-60: rgba(0, 0, 0, 0.6);
  --grey-55: rgba(0, 0, 0, 0.55);
  --grey-50: rgba(0, 0, 0, 0.5);
  --grey-35: rgba(0, 0, 0, 0.35);
  --grey-25: rgba(0, 0, 0, 0.25);
  --grey-15: rgba(0, 0, 0, 0.15);
  --grey-10: rgba(0, 0, 0, 0.1);
  --grey-5: rgba(0, 0, 0, 0.05);
  --white: #ffffff;
  --white-30: rgba(255, 255, 255, 0.3);
  --white-70: rgba(255, 255, 255, 0.7);
  --red: #ed1c24;
  --logo-red: #de302f;
  --logo-nougat: #c08f77;
  --action-uteplenie: #36a6e4;
  --action-new: #63a73a;
  --orange: #eb794b;
  --sber: linear-gradient(90deg, #fded2a -3.25%, #4ae57b 21.62%, #2b89cf 100%);
  --wb: linear-gradient(
    90deg,
    #ca12aa 0%,
    #ad139f 23.78%,
    #87148f 50.9%,
    #6d1483 73.9%,
    #4a1173 100%
  );

  --time: 0.3s;
  --fast: 0.2s;

  --swiper-navigation-size: 0;
  --swiper-pagination-bullet-horizontal-gap: 1px;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-inactive-color: #d7d7d8;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: #000000;
  --swiper-theme-color: #ffffff;
}

/* base */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Circe", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow-x: hidden;
}
.no-scroll {
  overflow: hidden;
}
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
h1,
.h1 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
}
h2,
.h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin: 0 0 30px;
  padding-left: 20px;
}
h4,
.h4 {
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
h5,
.h5 {
  font-size: 19px;
  line-height: 23px;
  font-weight: 400;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  position: relative;
}
p {
  margin: 0 0 1em;
}
img {
  max-width: 100%;
}
.container {
  width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
/* swiper customization */
.swiper-button-next,
.swiper-button-prev {
  width: 66px;
  height: 76px;
  margin-top: -38px;
  padding: 20px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 30px;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 30px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 21px;
}
/* header */
.header {
  width: 100%;
  z-index: 20;
  position: sticky;
  background: var(--white);
  top: -86px;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
  font-size: 13px;
  line-height: 16px;
}

.header-notification {
  background: var(--red);
  padding: 0 62px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 48px;
  margin-top: 0px;
}
.header-notification-hidden {
  margin-top: -48px;
}
.header-notification-text {
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.header-notification-close {
  font-size: 0;
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  position: absolute;
  right: 40px;
  top: 18px;
  background: transparent;
  cursor: pointer;
}
.header-notification-close svg {
  fill: var(--white);
}
.header-topline {
  padding: 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-10);
  font-size: 14px;
  line-height: 17px;
}
.header-phone-time-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}
.header-phone-time-bar a {
  opacity: 0.5;
  margin: 0 15px;
}
.header-phone-time-bar span {
  margin: 0 15px;
  opacity: 0.5;
}
.header-links-bar {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-links-bar li {
  margin: 0 15px;
  opacity: 0.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
ul.header-links-bar li::before {
  content: none;
}
.header-mainline {
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.header-burger-menu {
  display: none;
  padding: 21px 20px;
  background: transparent;
  border: none;
  font-size: 0;
}
.header-burger-menu svg {
  fill: var(--black);
}
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-logo svg {
  fill: var(--logo-red);
}
.header-burger-close {
  display: none;
}
.header-navigation {
  position: static;
}

.header-categories {
  margin: 0 -15px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  font-size: 16px;
  line-height: 24px;
  position: static;
}
.header-categories .header-categories-item {
  padding: 18px 15px;
  text-transform: uppercase;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}
.header-categories .header-categories-item > a::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  display: block;
  background: var(--red);
  bottom: -18px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.header-categories .header-categories-item:hover > a::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.header-categories .js-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-categories a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: color var(--time);
  -o-transition: color var(--time);
  transition: color var(--time);
  position: relative;
}
.header-categories a:hover {
  color: var(--red);
}
.header-categories-item.header-categories-accent {
  color: var(--red);
  font-size: 0;
}
.header-categories-item.header-categories-accent span {
  font-size: 18px;
  line-height: 24px;
}
.header-categories .dropdown-1 {
  background: var(--white);
  color: var(--black);
  position: absolute;
  width: 100%;
  padding: 20px calc(50% - 512px) 45px calc(50% - 492px);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%) scaleY(0);
  -ms-transform: translateY(100%) scaleY(0);
  transform: translateY(100%) scaleY(0);
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: var(--fast);
  -o-transition: var(--fast);
  transition: var(--fast);
  display: block;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
  font-size: 14px;
  line-height: 17px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-box-shadow: 1px 6px 8px -5px rgb(0 0 0 / 15%);
  box-shadow: 1px 6px 8px -5px rgb(0 0 0 / 15%);
  z-index: 60;
}
.header-categories .dropdown-1 > div {
  width: 100%;
  padding-right: 20px;
  margin-bottom: 30px;
  margin-right: auto;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}
.header-categories-toggle:hover .header-categories-dropdown {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(100%) scaleY(1);
  -ms-transform: translateY(100%) scaleY(1);
  transform: translateY(100%) scaleY(1);
}
.header-categories .dropdown-2 {
  text-transform: none;
  margin: 20px 0 0;
}
.header-categories .dropdown-2 > div:not(:last-child) {
  margin-bottom: 10px;
}
.header-categories .dropdown-3 {
  display: none;
}
.header-categories .dropdown-sale {
  text-transform: none;
  color: var(--red);
}
.header-icons {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 -20px;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-icons li {
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
ul.header-icons li::before {
  content: none;
}
.header-icons li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-icons svg {
  fill: var(--black);
}
.header-search-trigger:hover svg,
.header-icons a:hover svg {
  opacity: 0.5;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.header-items-in-cart {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 9.26px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  top: -8px;
  right: -12px;
}
/* header mainpage */
.header-main {
  position: absolute;
  color: var(--white);
  background: transparent;
  border-bottom: var(--white) 1px solid;
}
.header-main .header-topline {
  border-color: var(--white);
}
.header-main .header-logo svg {
  fill: var(--white);
}
.header-main .header-icons svg {
  fill: var(--white);
}
.header-main .header-burger-menu svg {
  fill: var(--white);
}
/* header fixed */
.header-fixed {
  position: fixed;
  color: var(--black);
  background: var(--white);
}
.header-fixed .header-notification {
  display: none;
}
.header-fixed .header-topline {
  display: none;
}
.header-fixed .header-logo svg {
  fill: var(--logo-red);
}
.header-fixed .header-icons svg {
  fill: var(--black);
}
.header-fixed .header-burger-menu svg {
  fill: var(--black);
}
/* footer */
.footer {
  margin-top: auto;
}
.footer-mainline {
  background: var(--grey-5);
  padding: 50px 40px 34px;
  font-size: 14px;
  line-height: 17px;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-column {
  width: 20%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer-column-title {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  color: var(--grey-60);
}
.footer-links li {
  position: relative;
  margin: 0;
}
.footer-links li::before {
  content: none !important;
}
.footer-links li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-links a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  position: absolute;
  bottom: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.footer-links a:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.footer-links-accent {
  font-weight: 700;
}
.footer-subscribe-block {
  margin-bottom: 20px;
}
.footer-column-text {
  color: var(--grey-60);
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-subscribe-email {
  width: 100%;
  background: var(--white-30) url("../img/email-icon.svg") no-repeat;
  background-position: 13px 14px;
  opacity: 0.5;
  border: 1px solid var(--grey-15);
  padding: 12px 20px 12px 44px;
}
.footer-social-links {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-social-links li {
  margin: 0 10px 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 12px;
  line-height: auto;
  color: var(--grey-60);

}
ul.footer-social-links li::before {
  content: none;
}
.footer-social-links a {
  width: 47px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-social-links svg {
  fill: var(--grey-25);
  margin-bottom: 5px;
}
.footer-social-links span {
  margin-top: auto;
}
.footer-bottomline {
  background: var(--grey-5);
  color: var(--grey-60);
  padding: 16px 40px;
  font-size: 14px;
  line-height: 24px;
}
/* hero banner */
.hero-banner {
  width: 100%;
  color: var(--white);
}
.hero-banner-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 50vw;
}
.hero-banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* stories slider */
.stories-block {
  padding: 60px 0 60px;
}
.stories-slider {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0 30px;
}
.stories-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 180px;
  text-align: center;
  margin: 0 30px;
  font-size: 16px;
  color: var(--grey-85);
}
.stories-item img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 16px;
}
/* main categories slider */
.main-cat-slider {
  width: 100%;
}
.main-cat-slider-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-cat-slider-img img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-cat-slider-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  font-size: 30px;
  line-height: 40px;
}
.main-cat-slider .swiper-button-next,
.main-cat-slider .swiper-button-prev {
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* main salespoint */
.main-salespoint {
  padding: 90px 20px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 20px;
  line-height: 26px;
  color: var(--grey-85);
  position: relative;
}
.main-salespoint-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.main-salespoint-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% + 40px);
  position: absolute;
  right: -21px;
  top: -20px;
  background: var(--grey-10);
}
.main-salespiont-img {
  margin-bottom: 30px;
  fill: var(--grey-35);
}
/* main sliders */
.main-slider-block {
  padding: 90px 20px 0;
  overflow: hidden;
  position: relative;
}
.main-slider {
  overflow: visible;
}
.main-slider-title {
  margin-bottom: 30px;
}
.main-new-link {
  position: absolute;
  top: 116px;
  right: 40px;
  font-size: 16px;
  line-height: 20px;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.main-new-link svg {
  top: 1px;
  margin-left: 10px;
}
.main-new-link:hover {
  opacity: 0.6;
}
.main-hit-link-block {
  position: absolute;
  top: 116px;
  right: 40px;
  font-size: 16px;
  line-height: 20px;
}
.main-hit-link {
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
  position: relative;
  cursor: pointer;
}
.main-hit-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.main-hit-link:not(:last-child) {
  margin-right: 20px;
}
.main-hit-link-selected {
  font-weight: 600;
}
.main-hit-link:hover::before,
.main-hit-link-selected::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.main-hit-dropdown {
  display: none;
  position: absolute;
  top: 96px;
  right: 20px;
}
.main-actions-slider {
  margin: 0 -20px;
}
/* catalog slider item */
.main-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
}
.catalog-item {
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
}
.catalog-item-photo {
  display: block;
  width: calc(20vw - 24px);
  height: calc((20vw - 24px)/525*700);
}
.catalog-item-photo picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;

}
.catalog-item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.catalog-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 8px 53px 10px 8px;
  position: relative;
}
.catalog-item-sizes {
  padding: 16px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--white-70);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  pointer-events: none;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  text-align: center;
}
.catalog-item:hover .catalog-item-sizes {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
}
.catalog-item-sizes-block {
  margin: 16px 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: all;
}
.catalog-item-sizes-block button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0 11px 5px;
}
.catalog-item-label {
  margin-bottom: 2px;
}
.catalog-item-label-sale {
  color: var(--red);
}
.catalog-item-label-new {
  color: var(--action-new);
}
.catalog-item-label-warm {
  color: var(--action-uteplenie);
}
.catalog-item-name {
  margin-bottom: 2px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.catalog-item-price {
  margin-bottom: 2px;
  font-size: 18px;
}
.catalog-item-price span {
  display: inline-block;
}
.catalog-item-price span:not(:last-child) {
  margin-right: 10px;
}
.catalog-item-price-sale {
  color: var(--red);
}
.catalog-item-price-old {
  color: var(--grey-50);
  text-decoration: line-through;
}
.catalog-item-colors {
  padding: 4px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-item-colors button {
  width: 10px;
  height: 10px;
  margin: 2px 2px 6px 2px;
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
  border-radius: 50%;
  padding: 0;
}
.catalog-item-colors button:not(:last-child) {
  margin-right: 6px;
}
.catalog-item-colors button.color-active::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--grey-10);
  position: absolute;
  top: -2px;
  left: -2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.catalog-item-favorite {
  width: 31px;
  height: 29px;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--grey-60);
}
.catalog-item-favorite button {
  width: 100%;
  height: 100%;
  background: url("../img/heart.svg") no-repeat center;
  cursor: pointer;
  font-size: 0;
  border: none;
  padding: 0;
}
.catalog-item-favorite-active button {
  background-image: url("../img/heart-filled.svg");
}
.catalog-item .swiper-button-next,
.catalog-item .swiper-button-prev {
  background-image: url("../img/catalog-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  padding: 0;
  opacity: 0;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.catalog-item .swiper-button-next {
  right: 10px;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
.catalog-item .swiper-button-prev {
  left: 10px;
}
.catalog-item:hover .swiper-button-next:not(.swiper-button-disabled),
.catalog-item:hover .swiper-button-prev:not(.swiper-button-disabled) {
  opacity: 1;
}
.catalog-item .swiper-pagination {
  display: none;
}
/* h1 seo block */
.h1-seo-block {
  padding: 80px 0;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  color: var(--grey-50);
}
.h1-seo-block h1 {
  text-align: center;
  margin-bottom: 40px;
}
.h1-seo-block p {
  font-size: 16px;
  line-height: 20px;
}
/* menu desktop */
.header-categories .menu-hidden {
  display: none;
}
/* search form */
.header-search-trigger {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header-search {
  background: var(--white);
  position: absolute;
  top: 146px;
  left: 0;
  width: 100%;
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  max-height: 100vh;
  max-height: calc(var(--vh, 1vh) * 100);
  overflow-y: auto;
  z-index: 50;
  -webkit-box-shadow: 1px 6px 8px -5px rgb(0 0 0 / 15%);
  box-shadow: 1px 6px 8px -5px rgb(0 0 0 / 15%);
  border-top: 1px solid var(--grey-10);
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.header-search-form {
  position: relative;
}
.header-search-open {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  overflow-y: visible;
}
.header-container {
  width: 768px;
  margin: 0 auto;
  padding: 75px 0;
}
.header-search-input {
  padding: 15px 26px 15px 0;
  border: none;
  border-bottom: 1px solid var(--grey-15);
  background: transparent;
  width: 100%;
}
.header-search-input::-webkit-input-placeholder {
  color: var(--grey-25);
}
.header-search-input::-moz-placeholder {
  color: var(--grey-25);
}
.header-search-input:-ms-input-placeholder {
  color: var(--grey-25);
}
.header-search-input::-ms-input-placeholder {
  color: var(--grey-25);
}
.header-search-input::placeholder {
  color: var(--grey-25);
}
.header-search-input:focus-visible {
  outline: none;
}
.header-search-back,
.header-search-reset,
.header-search-prev-reset {
  font-size: 0;
  width: 16px;
  height: 16px;
  position: absolute;
  padding: 0;
  background: transparent;
  border: none;
  right: 0;
  cursor: pointer;
}
.header-search-reset {
  top: 15px;
  display: none;
}
.header-search-reset svg {
  fill: var(--grey-25);
}
.header-search-reset-active {
  display: block;
}
.header-search-prev-reset {
  top: 14px;
}
.header-search-back {
  top: 15px;
}
.header-search-reset-active + .header-search-back {
  display: none;
}
.header-search-info {
  margin-top: 15px;
}
.header-search-title {
  text-transform: uppercase;
  padding: 30px 0 20px;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
}
.header-search-prev {
  display: none;
}
.header-search-prev-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-search-prev-item {
  padding: 10px 26px 10px 30px;
  display: block;
  margin-top: 10px;
  position: relative;
}
.header-search-prev-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/previous-icon.svg") no-repeat;
}
.header-search-result {
  display: none;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
.header-search-result-open {
  display: -ms-grid;
  display: grid;
}
.header-search-categories-list {
  margin-top: 15px;
}
.header-search-categories-item {
  padding: 10px 0;
  display: block;
}
.header-search-categories-item:not(:last-child) {
  margin-bottom: 10px;
}
.header-search-category-name:not(:last-child) {
  margin-right: 20px;
}
.header-search-category-parent {
  color: var(--grey-25);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 16px;
}
.header-search-products .catalog-item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.header-search-products .catalog-item-photo {
  display: block;
  margin-right: 5px;
  width: auto;
}
.header-search-products .catalog-item-info {
  font-size: 12px;
  line-height: 15px;
  height: auto;
  padding: 4px 9px 4px 7px;
}
.header-search-products .catalog-item-price {
  font-size: inherit;
  line-height: inherit;
}
.header-search-products .catalog-item-colors {
  font-size: inherit;
  padding: 0;
}
.header-search-products .catalog-item-category {
  color: var(--grey-25);
  margin-bottom: 2px;
}
.header-search-result-all {
  margin-top: 25px;
  text-align: center;
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}
/* header cart popup */
.header-cart-popup {
  padding: 20px;
  width: 410px;
  max-width: 100vw;
  background: var(--white);
  color: var(--black);
  font-weight: 400;
  position: absolute;
  right: -12px;
  bottom: -5px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
  max-height: calc(100vh - 90px);
  max-height: calc(var(--vh, 1vh) * 100 - 90px);
  overflow-y: auto;
  -webkit-filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
}
.header-cart-popup-active {
  opacity: 1;
  z-index: 998 !important;
  pointer-events: all;
}
.header-cart-popup-list {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--grey-15);
}
.header-cart-popup .catalog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}
.header-cart-popup .catalog-item-photo {
  width: 90px;
  height: 120px;
  margin-right: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header-cart-popup .catalog-item-info {
  padding: 4px 9px 4px 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: auto;
  width: calc(100% - 95px);
  font-size: 12px;
  line-height: 15px;
}
.header-cart-popup .catalog-item-name-block {
  width: 100%;
  margin-bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header-cart-popup .catalog-item-name {
  font-size: 16px;
  line-height: 18px;
  padding-right: 5px;
}
.header-cart-popup .catalog-item-params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  line-height: 16px;
}
.header-cart-popup .catalog-item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  text-align: right;
  font-size: inherit;
  line-height: inherit;
}
.header-cart-popup .catalog-item-price span:not(:last-child) {
  margin-right: 0;
}
.header-cart-popup-link {
  background: var(--black);
  color: var(--white);
  display: block;
  width: 100%;
  padding: 13px 20px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  -webkit-transition: var(--time);
  -o-transition: var(--time);
  transition: var(--time);
}
.header-cart-popup-link:hover {
  background-color: var(--grey-70);
  color: var(--white);
}
.header-cart-remove {
  border: none;
  background: transparent;
  width: 12px;
  height: 18px;
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}

/* fonts fix */
.block_side_WIDE .title-menu {
  font-size: 14px;
  line-height: 14px;
}
body .menu_top_block.catalog_block .dropdown> li > a {
  font-size: 16px;
}
ul.menu li, ul.mini-menu li {
  line-height: 24px;
}
.menu_top_block.catalog_block .dropdown>li.full.v_bottom>.dropdown>li>a, header .menu_top_block.catalogfirst li.full.v_bottom>.dropdown>li>a {
  font-size: 16px;
}
.menu_top_block.catalog_block .dropdown>li.full>.dropdown>li>a, header .menu_top_block.catalogfirst li.full>.dropdown>li>a {
  line-height: 24px;
}
.menu_top_block.catalog_block .dropdown>li.full.v_bottom>.dropdown>li>.dropdown>li>a, header .menu_top_block.catalogfirst li.full.v_bottom>.dropdown>li>.dropdown>li>a {
  font-size: 16px;
}
body .menu_top_block li.full .dropdown>li>a {
  font-size: 16px;
  line-height: 21px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .popup-window {
  font-family: "Circe", sans-serif;
}
.topic__inner .topic__heading #pagetitle {
  font-size: 50px;
  line-height: 50px;
}
.bx_filter.compact .bx_filter_parameters_box_title {
  font-size: 16px;
}
.topic__heading {
  padding-bottom: 20px;
}

#main .catalog_detail .item-stock>span, #main .catalog_detail .cheaper_form>span, #main .catalog_detail .table_sizes span, #main .catalog_detail .calculate-delivery-preview .font_sxs, #main .catalog_detail .calculate-delivery-preview .font_xs, #main .catalog_detail .price_txt {
  font-size: 16px;
}

.bx_filter .sku .bx_filter_input_checkbox .bx_filter_param_text, .sku_props .bx_item_detail_size ul li span {
  font-size: 14px;
  line-height: 16px;
}

.TABLES_SIZE_frame .form table.sizes td {
  font-size: 14px;
}
.popup .form .form_head h2 {
  font-size: 32px;
}
.left_menu li a {
  font-size: 16px;
}
.menu-type1.menu_top_block ul.left_menu li {
  line-height: 24px;
}
#main .catalog_detail .price_txt {
  padding: 0 20px;
}
.block_side_WIDE.catalog_page .right_block .section-content-wrapper.with-leftblock .inner_wrapper > div:not(.ajax_load), .block_side_WIDE .section-content-wrapper.with-leftblock .group_description_block {
  padding-left: 0;
}

.counter_wrapp .more_text {
  font-size: 13px;
  line-height: 15px;
}

@media (max-width: 1539px) {
  .catalog-item-photo {
    width: calc(25vw - 25px);
    height: calc((25vw - 25px)/525*700);
  }
}
/* media 1440 */
@media (max-width: 1440px) {
  .main-cat-slider-img img {
    height: 750px;
  }
  .main-salespoint-desc {
    font-size: 21px;
    line-height: 25px;
  }
}
@media (max-width: 1200px) {
  .header-categories .header-categories-item {
    font-size: 16px;
  }
  .header-categories-item.header-categories-accent {
    font-size: 0;
  }
  .header-categories-item.header-categories-accent span {
    font-size: 16px;
  }
  .name_tovar {
    font-size: 16px;
    font-family: "Circe", sans-serif;
  }
  .prices_block span {
    font-family: "Circe", sans-serif;
  }
  .mobile_articul {
    font-family: "Circe", sans-serif;
    font-size: 14px;
  }
}
@media (max-width: 1159px) {
  .catalog-item-photo {
    width: calc((100vw - 80px)/3);
    height: calc((100vw - 80px)/1575*700);
  }
}
/* media 1119- */
@media (max-width: 1120px) {
  .container {
    width: 1024px;
  }
  .header-categories {
    margin: 0 -11px;
  }
  .header-categories .header-categories-item {
    padding: 15px 5px;
  }
  .footer-social-links a {
    width: 46px;
  }
  .main-salespoint-desc {
    font-size: 19px;
    line-height: 23px;
  }
}
/* media 1024- */
@media (max-width: 1024px) {
  .header {
    top: -48px;
  }
  .hero-banner-img {
    height: 118.75vw;
  }
  .stories-block {
    padding: 40px 0;
  }
  .stories-slider {
    padding: 0 10px;
  }
  .stories-item {
    width: 150px;
    margin: 0 10px;
  }
  .stories-item img {
    width: 100px;
    height: 100px;
  }
  .main-salespiont-img {
    width: auto;
    height: 40px;
    margin-bottom: 10px;
  }
  .main-salespoint-desc {
    font-size: 12px;
    line-height: 15px;
  }
  .main-slider-item {
    width: 321px;
  }
  .main-hit-link-block {
    display: none;
  }
  .main-hit-dropdown {
    display: block;
    border: none;
    background: transparent url("../img/dropdown-arrow.svg") right center
      no-repeat;
    background-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 26px 0 0;
    color: var(--grey-70);
    width: auto;
    height: auto;
  }
  .main-actions-slider {
    margin: 0;
  }
  .main-actions-slider .main-slider-item {
    height: 555px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-actions-slider .main-slider-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-actions-slider .main-slider-item picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-actions-slider img {
    width: 400px;
  }
  .catalog-item-info {
    padding: 14px 16px 20px;
    height: 83px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .catalog-item-sizes {
    display: none;
  }
  .catalog-item-label {
    margin-bottom: 1px;
    font-size: 10px;
    line-height: 13px;
  }
  .catalog-item-name {
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 15px;
  }
  .catalog-item-price {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 0;
  }
  .catalog-item-price span:not(:last-child) {
    margin-right: 0;
  }
  .catalog-item-colors {
    display: none;
  }
  .catalog-item-favorite {
    display: none;
  }
  .catalog-item .swiper-pagination {
    display: block;
  }
  .catalog-item .swiper-button-next,
  .catalog-item .swiper-button-prev {
    display: none;
  }

  .menu-active .header-mainline {
    background: var(--white);
  }
  .menu-active .header-burger-menu {
    opacity: 0;
    pointer-events: none;
  }
  .menu-active .header-logo {
    margin: 0 auto;
    padding-right: 60px;
  }
  .menu-active .header-logo svg {
    fill: var(--logo-red);
  }
  .menu-active .header-icons {
    display: none;
  }
  .menu-active .header-burger-close {
    display: block;
  }
  .menu-active .header-categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 59px;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(var(--vh, 1vh) * 100 - 60px);
    padding: 0;
    background: var(--white);
    color: var(--black);
    font-weight: 400;
    -webkit-transform: translateX(-100vw);
    -ms-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  .menu-active .header-categories {
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    z-index: 20;
  }
  .header-categories .header-categories-dropdown {
    display: none;
  }
  .menu-active .header-categories-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-active .menu-mobile-hidden {
    display: none;
  }
  .menu-active .header-category-main {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .menu-active .menu-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-categories-personal {
    width: 100%;
    padding: 14px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-active .header-categories .header-categories-item {
    padding: 0;
    border-top: 1px solid var(--grey-10);
  }
  .menu-active .header-categories .header-categories-item a {
    display: block;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 24px;
    background: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    width: 100%;
  }
  .menu-active .header-categories .header-category-main > a {
    font-weight: 700;
  }
  .menu-active .header-categories .header-categories-personal a {
    border: none;
    text-transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-active .header-categories-personal a {
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: none;
  }
  .header-categories-personal svg {
    margin-right: 14px;
  }
  .menu-active .header-contacts-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
    background: var(--white);
    position: sticky;
    bottom: 0;
  }
  .header-contacts-mobile span {
    font-size: 13px;
    line-height: 16px;
    padding: 22px 20px;
    color: var(--grey-55);
    text-transform: lowercase;
    font-weight: 400;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .menu-active .js-submenu-trigger::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 49px;
    height: 60px;
    display: block;
    background: url("../img/arrow-icon.svg") no-repeat center;
  }
  .header-categories .js-submenu {
    position: absolute;
    top: -61px;
    opacity: 1;
    width: 100vw;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    -webkit-transform: translateX(100vw);
    -ms-transform: translateX(100vw);
    transform: translateX(100vw);
    z-index: 10;
    padding: 0;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    background: var(--white);
  }
  .menu-active .header-categories .js-submenu a {
    padding-left: 49px;
  }
  .header-categories .js-submenu {
    display: none;
  }
  .header-categories .js-submenu-active {
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    position: fixed;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-categories .js-submenu-active {
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
    position: fixed;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-categories .dropdown-1.js-submenu-active {
    top: -60px;
  }
  .header-categories .dropdown-1 > div {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .header-categories .dropdown-2 {
    margin: 0;
  }
  .js-back-trigger::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 49px;
    height: 60px;
    display: block;
    background: url("../img/arrow-icon.svg") no-repeat center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-categories .dropdown-2 > li:not(:last-child) {
    margin-bottom: 0;
  }
  .header-categories .js-submenu-active.dropdown-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-categories .dropdown-sale {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .header-categories .js-back-trigger {
    -webkit-box-ordinal-group: -9;
    -ms-flex-order: -10;
    order: -10;
  }
  .header-categories .js-back-trigger ~ div {
    border-top: 1px solid var(--grey-10);
  }
  .header-categories .dropdown-2 > div:not(:last-child) {
    margin-bottom: 0;
  }
  .header-categories .js-submenu.dropdown-3 a {
    text-transform: none;
  }
  .header-categories .js-submenu .js-back-trigger a {
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 60px;
  }

  .submenu-active .header-categories-item:not(.hide-siblings) {
    display: none;
  }
  .submenu-parent > div:not(.hide-siblings) {
    display: none;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 0;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 0;
  }
  .main-cat-slider .swiper-button-next,
  .main-cat-slider .swiper-button-prev {
    width: 56px;
    height: 64px;
  }
  .main-cat-slider-img img {
    height: calc(100vw * 800 / 960);
    -o-object-fit: cover;
    object-fit: cover;
  }
  .container {
    width: 768px;
  }
  .header-topline {
    display: none;
  }
  .header-mainline {
    padding: 0;
  }
  .header-burger-menu {
    display: block;
  }
  .header-logo {
    margin-right: auto;
    z-index: 20;
    -webkit-transition: (--time);
    -o-transition: (--time);
    transition: (--time);
  }
  .header-burger-close {
    padding: 22px;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    font-size: 0;
    z-index: 100;
    display: none;
  }
  .header-navigation {
    position: relative;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  .menu-active .header-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: var(--white);
    overflow: hidden auto;
    z-index: -1;
  }
  .menu-active .header-navigation.on-top {
    z-index: 20;
  }
  .header-categories {
    padding: 0 5px;
    margin: 0;
    border-top: 1px solid var(--grey-10);
    border-bottom: 1px solid var(--grey-10);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .header-categories .header-categories-item {
    padding: 15px 11px;
    font-size: 16px;
  }
  .header-categories-item.header-categories-accent {
    font-size: 0;
  }
  .header-categories-item.header-categories-accent span {
    font-size: 16px;
  }
  .menu-active .header-categories .header-categories-item {
    padding: 0;
  }
  .header-categories .dropdown-1 {
    padding: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .header-icons {
    margin: 0 0 0 -20px;
  }
  .header-items-in-cart {
    display: none;
  }
  .header-main .header-categories {
    border-color: var(--white);
  }
  .footer {
    margin-top: 69px;
  }
  .footer-social-links {
    padding-right: 10px;
    margin-bottom: -20px;
  }
  .footer-social-links li {
    margin-bottom: 20px;
  }
  .header-search-open {
    overflow-y: auto;
  }
  .header-search {
    padding: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    top: 0;
    
  }
  .header-container {
    width: 100%;
    padding: 0;
  }
  .header-search-input {
    padding: 22px 48px 22px 49px;
    font-weight: 700;
  }
  .header-search-input::-webkit-input-placeholder {
    font-weight: 400;
  }
  .header-search-input::-moz-placeholder {
    font-weight: 400;
  }
  .header-search-input:-ms-input-placeholder {
    font-weight: 400;
  }
  .header-search-input::-ms-input-placeholder {
    font-weight: 400;
  }
  .header-search-input::placeholder {
    font-weight: 400;
  }
  .header-search-reset {
    width: 48px;
    height: 60px;
    top: 0;
  }
  .header-search-reset svg {
    fill: black;
  }
  .header-search-back {
    display: block;
    width: 49px;
    height: 60px;
    right: auto;
    top: 0;
    left: 0;
    background: url("../img/arrow-icon.svg") no-repeat center;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .header-search-back svg {
    display: none;
  }
  .header-search-reset-active + .header-search-back {
    display: block;
  }
  .header-search-info {
    margin-top: 0;
  }
  .header-search-title {
    padding: 30px 20px 20px 40px;
  }
  .header-search-prev-item {
    margin-top: 0;
    padding: 10px 46px 10px 70px;
    position: relative;
  }
  .header-search-prev-item::before {
    left: 40px;
  }
  .header-search-prev-reset {
    right: 20px;
  }
  .header-search-categories-list {
    margin: 0;
    border-top: 1px solid var(--grey-10);
  }
  .header-search-categories-item {
    padding: 23px 48px 23px 40px;
    border-bottom: 1px solid var(--grey-10);
  }
  .header-search-categories-item:not(:last-child) {
    margin: 0;
  }
  .header-search-categories-item::before {
    content: "";
    width: 8px;
    height: 100%;
    display: block;
    background: url("../img/arrow-icon.svg") no-repeat center;
    position: absolute;
    right: 20px;
    top: 0;
  }
  .header-search-result-open {
    display: block;
  }
  .header-search-products {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 10px;
  }
  .header-search-products .catalog-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
  .header-search-products .catalog-item-photo img {
    width: 100%;
    height: auto;
  }
  .header-search-products .catalog-item-name span {
    font-weight: 700;
  }
  .header-search-products .catalog-item-category {
    display: none;
  }
  .header-search-products .catalog-item-info {
    margin: 5px 0 0;
    padding: 0px 9px 10px 7px;
  }
  .header-search-products .catalog-item-name {
    white-space: normal;
    overflow: visible;
  }
  .header-search-result-all {
    display: none;
  }
  .header-categories .header-categories-item > a::before {
    content: none;
  }
  .menu-active .header-categories a:hover {
    color: inherit;
  }
  .header-categories-toggle:hover .header-categories-dropdown {
    -webkit-transform: translateX(0vw);
    -ms-transform: translateX(0vw);
    transform: translateX(0vw);
  }
  h2,
  .h2 {
    padding-left: 0;
  }
  .main-new-link {
    right: 20px;
  }
  .main-hit-dropdown {
    top: 116px;
    background-size: 12px;
    font-size: 16px;
    line-height: 20px;
  }
  .h1-seo-block {
    padding-bottom: 0;
  }
  .topic__inner .topic__heading #pagetitle {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 1023px) {
  .catalog-item-photo {
    width: 321px;
    height: 428px;
  }
}
@media (max-width: 960px) {
  .main-cat-slider-text {
    font-size: 20px;
    line-height: 30px;
  }
}
/* media 768- */
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
  .header-mainline {
    border-bottom: 1px solid var(--grey-10);
  }
  ul.header-icons {
    margin: 0 8px 0 -12px;
    background: transparent;
  }
  .header-icons li {
    margin: 0 12px;
  }
  .header-icons li > a {
    padding: 0;
    font-size: 0;
    background: transparent;
  }
  .footer-info-block {
    margin-bottom: 40px;
  }
  .footer-column-title {
    font-weight: 700;
  }
  .footer-column {
    width: 100%;
  }
  .footer-links li:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer-company-block {
    display: none;
  }
  .footer-account-block {
    display: none;
  }
  .footer-subscribe-block {
    display: none;
  }
}
/* media 750- */
@media (max-width: 749px) {
  h1,
  .h1 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
  }
  h2,
  .h2 {
    font-size: 19px;
    line-height: 23px;
  }
  h4,
  .h4 {
    font-size: 12px;
    line-height: 15px;
  }
  h5,
  .h5 {
    font-size: 12px;
    line-height: 15px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    padding: 10px;
    width: 36px;
    height: 44px;
    background-size: 13px;
    margin-top: -22px;
  }
  .main-cat-slider .swiper-button-next,
  .main-cat-slider .swiper-button-prev {
    padding: 10px;
    width: 36px;
    height: 44px;
  }
  .footer {
    margin-top: 0;
  }
  .stories-block {
    padding: 30px 0;
  }
  .stories-slider {
    padding: 0;
  }
  .stories-item {
    width: 90px;
  }
  .stories-item img {
    width: 80px;
    height: 80px;
  }
  .main-salespoint {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 60px;
  }
  .main-salespoint-item:not(:last-child)::after {
    content: none;
  }
  .main-slider-block {
    padding: 50px 10px 0;
  }
  .main-new-link {
    top: 54px;
    font-size: 13px;
    line-height: 16px;
  }
  .main-hit-dropdown {
    top: 54px;
    background-size: 9px;
    padding-right: 15px;
    font-size: 13px;
    line-height: 16px;
  }
  .main-actions-slider .main-slider-item {
    width: 280px;
    height: 484px;
  }
  .catalog-item-info {
    margin: 5px 0;
    padding: 0 9px 10px 7px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
  }
  .catalog-item-label {
    margin-bottom: 3px;
  }
  .catalog-item-price {
    margin-bottom: 3px;
  }
  .catalog-item-price-old {
    font-size: 12px;
    line-height: 15px;
    text-decoration: none;
    top: -2px;
    font-weight: 500;
  }
  .catalog-item-colors {
    font-size: 12px;
    line-height: 15px;
    display: block;
    padding: 0;
  }
  .catalog-item-colors button {
    display: none;
  }
  .main-slider-item .catalog-item-label {
    display: none;
  }
  .main-slider-item .catalog-item-price-sale {
    color: inherit;
  }
  .main-slider-item .catalog-item-price-old {
    display: none;
  }
  .catalog-item .swiper-pagination {
    display: none;
  }
  .h1-seo-block {
    padding: 90px 0 60px;
  }
  .h1-seo-block p {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
  }
  .header-categories {
    display: none;
  }
  .menu-active .header-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-new-link svg {
    width: 15px;
    height: 10px;
  }
  .catalog-item-photo {
    width: calc(50vw - 15px);
    height: calc((50vw - 15px)/525*700);
  }
  #main .catalog_detail .price_txt {
    padding: 10px;;
  }
}
@media (max-width: 480px) {
  .topic__inner .topic__heading #pagetitle {
    font-size: 24px;
    line-height: 30px;
  }
}
/* media 425- */
@media (max-width: 425px) {
  .main-salespoint-desc br {
    display: none;
  }
}
@media (max-width: 340px) {
  .footer-social-links li {
    margin: 0 8px 20px;
  }
}