@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  height: 100%;
}

a {
  color: #e8455f;
}

body.searchFixed {
  position: fixed;
}

.site-container {
  background: #fff;
}
.site-container.fix {
  padding-top: 100px;
}

.slidingbutton {
  background: #fff;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 130px;
  z-index: 1000;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
          box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
  display: none;
}
.slidingbutton--active {
  display: block;
}
@media only screen and (max-width: 767px) {
  .slidingbutton--active {
    display: none;
  }
}
.slidingbutton__wrapper {
  max-width: 1540px;
  margin: 0 auto;
}
.slidingbutton__container {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.slidingbutton .button--add {
  height: 40px;
  width: 210px;
}
.slidingbutton .product__price {
  margin-bottom: 0;
}

.header {
  background: #fff;
  width: 100%;
}
.header.fixed {
  top: 0;
  position: fixed;
  z-index: 1000;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
          box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
}
.header--top {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F9F9F9;
}
.header--middle {
  gap: 42px;
  height: 120px;
  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;
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1539px) {
  .header--middle {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 980px) {
  .header--middle {
    gap: 20px;
  }
}
.header--menu {
  height: 45px;
  background: #d0d0d0;
  position: relative;
  overflow: visible;
  z-index: 1120;
}
@media only screen and (max-width: 1419px) {
  .header--menu {
    display: none;
  }
}
.header__callback {
  font-weight: 600;
  color: #E8455F;
  border: 1px solid #E8455F;
  border-radius: 20px;
  text-align: center;
  height: 43px;
  line-height: 43px;
  max-width: 177px;
  padding: 0 20px;
  text-decoration: none;
}
.header__callback:hover {
  color: #fff;
  background: #E8455F;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
@media only screen and (max-width: 1055px) {
  .header__callback {
    display: none;
  }
}
.header__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 1539px) {
  .header__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header__logo {
  background: url(/img/v9_logo.png) no-repeat top left;
  background-size: contain;
  width: 200px;
  height: 77px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo > span {
  font-size: 11px;
  position: absolute;
  width: 141px;
  height: 24px;
  color: #959697;
  top: 35px;
  left: 60px;
}
.header__catalog {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background: #E8455F;
  width: 137px;
  height: 40px;
  border-radius: 28px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  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;
  text-decoration: none;
  gap: 15px;
}
@media only screen and (max-width: 1419px) {
  .header__catalog {
    display: none;
  }
}
.header__catalog:hover {
  background: #D03049;
}
.header__catalog:active {
  background: #B41F36;
}
.header__catalog::before {
  background: url(/img/menu.svg) no-repeat center;
  width: 18px;
  height: 14px;
  content: "";
  display: block;
}
.header__search {
  min-width: 281px;
  height: 55px;
  border: 1px solid #C3C3C3;
  font-size: 16px;
  color: #444444;
  border-radius: 55px;
  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;
  padding: 0 20px;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 710px) {
  .header__search {
    display: none;
  }
}
.header__query {
  border: none;
  width: 100%;
}
.header__submit {
  background: url(/img/search.svg) no-repeat;
  width: 26px;
  height: 24px;
  display: block;
  border: none;
}
.header__widget {
  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;
  max-width: 254px;
  width: 100%;
}
@media only screen and (max-width: 837px) {
  .header__widget {
    display: none;
  }
}
.header__contacts {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__address {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 665px) {
  .header__address {
    display: none;
  }
}
.header__address a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
}
.header__address a::before {
  content: "";
  width: 30px;
  height: 35px;
  background: url(/img/email.svg) no-repeat center;
  display: block;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.contacts__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
.contacts__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
.contacts__phones a {
  color: #444;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 5px;
}
.contacts::before {
  content: "";
  width: 24px;
  height: 28px;
  background: url(/img/phone.svg) no-repeat center;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 379px) {
  .contacts::before {
    display: none;
  }
}

.social {
  width: 25px;
  height: 25px;
  display: block;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.social--vk-dark {
  width: 32px;
  height: 32px;
  background: url(/img/social-vk-dark.svg) no-repeat center;
  background-size: 100%;
}
.social--vk-dark:hover {
  background-image: url(/img/social-vk-hover.svg);
}
.social--vk {
  background: url(/img/social-vk.svg) no-repeat center;
  background-size: 100%;
}
.social--vk:hover {
  background-image: url(/img/social-vk-hover.svg);
}
.social--tg-dark {
  width: 32px;
  height: 32px;
  background: url(/img/social-tg-dark.svg) no-repeat center;
  background-size: 100%;
}
.social--tg-dark:hover {
  background-image: url(/img/social-tg-hover.svg);
}
.social--tg {
  background: url(/img/social-tg.svg) no-repeat center;
  background-size: 100%;
}
.social--tg:hover {
  background-image: url(/img/social-tg-hover.svg);
}
.social--wa-dark {
  width: 32px;
  height: 32px;
  background: url(/img/social-wa-dark.svg) no-repeat center;
  background-size: 100%;
}
.social--wa-dark:hover {
  background-image: url(/img/social-wa-hover.svg);
}
.social--wa {
  background: url(/img/social-wa.svg) no-repeat center;
  background-size: 100%;
}
.social--wa:hover {
  background-image: url(/img/social-wa-hover.svg);
}

.widget {
  width: 26px;
  height: 24px;
  display: block;
  position: relative;
}
.widget--compare {
  background: url(/img/compare.svg) no-repeat center;
}
.widget--compare:hover {
  background: url(/img/compare-active.svg) no-repeat center;
}
.widget--favorites {
  background: url(/img/favorites.svg) no-repeat center;
}
.widget--favorites:hover {
  background: url(/img/favorites-active.svg) no-repeat center;
}
.widget--cart {
  background: url(/img/cart.svg) no-repeat center;
}
.widget--cart:hover {
  background: url(/img/cart-active.svg) no-repeat center -1px;
}
.widget--profile {
  background: url(/img/profile.svg) no-repeat center;
}
.widget--profile:hover {
  background: url(/img/profile-active.svg) no-repeat center;
}
.widget span {
  font-size: 10px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 15px;
  line-height: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9px;
  background: #E8455F;
  color: #fff;
  position: absolute;
  right: -10px;
  top: -6px;
}
.widget:hover span {
  background: #C3C3C3;
  color: #fff;
}

.darkzone {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(54, 54, 54, 0.9);
  z-index: 1110;
}
.darkzone--active {
  opacity: 1;
  visibility: visible;
  z-index: 20000;
}
.darkzone__search {
  display: table;
  height: 100%;
  width: 100%;
}
.darkzone__form {
  vertical-align: middle;
  display: table-cell;
  text-align: center;
}
.darkzone__form form {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.darkzone__form input[type=text] {
  padding: 10px 88px 10px 10px;
  width: 100%;
  font-size: 16px;
  height: 60px;
}
.darkzone__form input[type=submit] {
  right: 0px;
  top: 0px;
  position: absolute;
  height: 60px;
  background: #e8455f;
  color: #fff;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  width: 78px;
}
.darkzone__close {
  position: fixed;
  bottom: 80px;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 30px;
  opacity: 1;
}
.darkzone__close::after, .darkzone__close::before {
  content: "";
  height: 1px;
  width: 41px;
  position: absolute;
  background-color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.darkzone__close::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.darkzone__close::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.topline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.topline__node--combo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.topline__node--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.topline__node--time {
  font-weight: 600;
  color: #444;
}
@media only screen and (max-width: 1500px) {
  .topline__node--time {
    display: none;
  }
}
.topline__node--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  color: #b5b5b5;
}
.topline__node--phone a {
  font-weight: 600;
  color: #444444;
  text-decoration: none;
}
@media only screen and (max-width: 1055px) {
  .topline__node--phone {
    display: none;
  }
}
.topline__node--menu {
  max-width: 1024px;
}
@media only screen and (max-width: 1419px) {
  .topline__node--menu {
    display: none;
  }
}
.topline__hamburger {
  width: 42px;
  height: 40px;
  background: url(/img/mob_hamb.png) no-repeat center;
  display: none;
  margin-right: 10px;
}
@media only screen and (max-width: 1419px) {
  .topline__hamburger {
    display: block;
  }
}
.topline__filler {
  display: none;
}
@media only screen and (max-width: 1419px) {
  .topline__filler {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: block;
  }
}
.topline__callback {
  width: 42px;
  height: 40px;
  background: url(/img/mob_callback.png) no-repeat center;
  display: none;
  cursor: pointer;
}
.topline__callback:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 1055px) {
  .topline__callback {
    display: block;
  }
}
.topline__search {
  width: 42px;
  height: 40px;
  background: url(/img/mob_search.png) no-repeat center;
  display: none;
  cursor: pointer;
}
.topline__search:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 710px) {
  .topline__search {
    display: block;
  }
}
.topline__cart {
  width: 42px;
  height: 40px;
  background: url(/img/navbar-cart.svg) no-repeat center;
  display: none;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 837px) {
  .topline__cart {
    display: block;
  }
}
.topline__cart .subfooter__widget {
  left: 15px;
  top: 18px;
}

.subdomain {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22px;
}
@media only screen and (max-width: 499px) {
  .subdomain {
    display: none;
  }
}
.subdomain > span {
  font-size: 16px;
}
.subdomain::before {
  content: "";
  background: url(/img/pinpoint.svg) no-repeat;
  width: 14px;
  height: 14px;
  display: block;
}
.subdomain::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: "";
  background: url(/img/showregions.svg) no-repeat;
  width: 10px;
  height: 7px;
  display: block;
}
@media only screen and (max-width: 972px) {
  .subdomain::after {
    display: none;
  }
}
.subdomain.active::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.subfooter {
  position: fixed;
  z-index: 4000;
  width: 100%;
  bottom: 0px;
  height: 64px;
  background: #f8f8f8;
  -webkit-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.2);
  display: none;
}
@media only screen and (max-width: 837px) {
  .subfooter {
    display: block;
  }
}
.subfooter__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 10px;
}
.subfooter__icon {
  text-decoration: none;
  position: relative;
}
.subfooter__img {
  background: url(/img/navbar-cart.svg) no-repeat center;
  width: 41px;
  height: 35px;
  display: block;
  margin: 0 auto;
}
.subfooter__img--main {
  background: url(/img/navbar-home.svg) no-repeat center;
}
.subfooter__img--favorites {
  background: url(/img/navbar-fav.svg) no-repeat center;
}
.subfooter__img--social {
  background: url(/img/navbar-social.svg) no-repeat center;
}
.subfooter__title {
  font-size: 11px;
  color: #616161;
  text-align: center;
  display: block;
  margin-top: 3px;
}
.subfooter__widget {
  background: #e8455f;
  font-size: 9px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  display: block;
  position: absolute;
  left: 17px;
  top: 17px;
  color: #fff;
  text-decoration: none;
  border-radius: 100%;
}
.subfooter__widget--favorites {
  top: 12px;
  left: 24px;
}

/*
.regions {
    position: absolute;
    z-index: 1130;
    top: 31px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0px 20px 30px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    display: block;
    &.active {
        display: block;
        @media only screen and (max-width: 972px) {
            display: none;
        }
    }
    & span {
        & a {
            display: block;
            &:hover {
                color: #444;
            }
        }
    }
    & ul {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 0;
        margin: 10px 0 0 0;
        & li {
            list-style: none;
            padding: 0 20px 0 0;
            margin: 0;
            position: relative;
            & a {
                height: 18px;
                font-size: 12px;
                display: block;
                position: relative;
                &:hover {
                    color: #444;
                }
            }
            & b {
                display: block;
                position: relative;
                left: -22px;
                margin-bottom: -17px;
            }
        }
    }
}
*/
.regions {
  position: fixed;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(34, 34, 34, 0.8);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.regions--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.regions__wrapper {
  padding: 40px 60px;
  background: #fff;
  border-radius: 20px;
  width: 900px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.regions__heading {
  font-weight: 700;
  font-size: 30px;
}
.regions__search {
  position: relative;
}
.regions__search input {
  border-radius: 50px;
  border: 1px solid #C3C3C3;
  font-size: 16px;
  font-weight: 400px;
  padding: 13px 20px;
  width: 100%;
  height: 44px;
}
.regions__clear {
  background: url(/img/cabinet/close.svg) no-repeat center;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.regions__list {
  height: 350px;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.regions__text {
  font-size: 18px;
  color: #444444;
}
.regions__icon {
  width: 30px;
  height: 30px;
  border: 1px solid #C3C3C3;
  border-radius: 100%;
  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;
}
.regions__icon::after {
  background: #E8455F;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.regions__icon--active::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.regions__item {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.regions__item:hover .regions__icon::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.regions__item--hidden {
  display: none;
}

.menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 132px;
  bottom: 0;
  background: rgba(34, 34, 34, 0.8);
  z-index: 1000;
  display: none;
  /*display: block;*/
}
.menu--active {
  display: block;
}
.menu__wrapper {
  background: #fff;
  height: 631px;
  position: relative;
}
.menu__bg {
  max-width: 1540px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  height: 631px;
  z-index: 2000;
  display: grid;
  grid-template-columns: 345px auto;
  gap: 41px;
}
.menu__aside {
  background: #F9F9F9;
  padding: 40px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  font-size: 18px;
}
.menu__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #444444;
  cursor: pointer;
}
.menu__group::before {
  content: "";
  background: url(/img/menus.png) 0 0 no-repeat;
  width: 35px;
  height: 35px;
}
.menu__group--room::before {
  background-position: -35px 0;
}
.menu__group--country::before {
  background-position: -70px 0;
}
.menu__group--color::before {
  background-position: -35px -35px;
}
.menu__group--size::before {
  background-position: 0 -35px;
}
.menu__group--sale::before {
  background-position: -70px -35px;
}
.menu__group--active, .menu__group:hover {
  color: #E8455F;
}

.nodes {
  margin: 0;
  padding: 0;
  list-style: none;
  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;
  width: 100%;
  height: 22px;
  gap: 30px;
}
@media only screen and (max-width: 1090px) {
  .nodes {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 890px) {
  .nodes {
    display: none;
  }
}
.nodes > .node {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.nodes > .node a {
  color: #444;
  text-decoration: none;
}
.nodes > .node a:hover {
  color: #E8455F;
}
.nodes > .node.active a {
  color: #E8455F;
}

.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.accordion__wrapper {
  display: none;
}
.accordion__wrapper--room {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}
.accordion__wrapper--room div > a {
  gap: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F9F9F9;
  padding: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #7E7E7E;
}
.accordion__wrapper--room div > a:hover span {
  color: #e8455f;
}
.accordion__wrapper--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.accordion__wrapper > ul {
  width: 100%;
  min-height: 100px;
  margin: 0 auto;
  padding: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.accordion__wrapper > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: normal;
  overflow: hidden;
}
.accordion__wrapper > ul > li > a {
  color: #444;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.accordion__wrapper > ul > li > a:hover {
  color: #e8455f;
}
.accordion__wrapper > ul > li > a + a {
  margin-top: 10px;
}
.accordion__wrapper > ul > li > ul {
  padding: 0;
  margin: 10px 0 20px 20px;
}
.accordion__wrapper > ul > li > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accordion__wrapper > ul > li > ul > li > a {
  color: #777;
  font-size: 16px;
  text-decoration: none;
}
.accordion__wrapper > ul > li > ul > li > a:hover {
  color: #e8455f;
}
.accordion__wrapper--10 > ul {
  grid-template-columns: repeat(3, 1fr);
}
.accordion__wrapper--82111 > ul > li > a + a {
  margin-top: 30px;
}
.accordion__wrapper--81689 > ul > li > a {
  font-size: 16px;
}
.accordion__wrapper--81689 > ul > li > ul > li > a {
  font-size: 14px;
}

.accordion__wrapper--9 .node__a {
  grid-template-columns: repeat(2, 1fr);
}
.accordion__wrapper--9 .node__a > li {
  gap: 20px;
  overflow: visible;
}
.accordion__wrapper--9 .node__a > li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.accordion__wrapper--9 .node__a > li > div a {
  font-size: 18px;
  text-decoration: none;
  color: #444444;
}
.accordion__wrapper--9 .node__a > li > div img {
  width: 40px;
  display: block;
}
.accordion__wrapper--9 .node__a > li > div .node__b {
  position: relative;
}
.accordion__wrapper--9 .node__a > li > div .node__b > .node__c {
  padding: 0 0 0 10px;
  left: 100%;
  top: -8px;
  position: absolute;
  display: none;
  z-index: 1000;
}
.accordion__wrapper--9 .node__a > li > div .node__b > .node__c > ul {
  border-radius: 20px;
  border: 1px solid #E8455F;
  padding: 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.accordion__wrapper--9 .node__a > li > div .node__b > .node__c > ul > li {
  list-style: none;
  white-space: nowrap;
}
.accordion__wrapper--9 .node__a > li > div .node__b > .node__c > ul > li > a {
  font-size: 14px;
}
.accordion__wrapper--9 .node__a > li > div .node__b > .node__c > ul > li > a:hover {
  color: #E8455F;
}
.accordion__wrapper--9 .node__a > li > div .node__b:hover .node__c {
  display: block;
}
.accordion__wrapper--9 .node__a > li > div .node__b:hover > a {
  color: #E8455F;
}

.accordion__wrapper--89593 .node__a {
  grid-template-columns: repeat(1, 1fr);
}
.accordion__wrapper--89593 .node__a > li {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow: visible;
}
.accordion__wrapper--89593 .node__a > li > div {
  position: relative;
  background: #F9F9F9;
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion__wrapper--89593 .node__a > li > div a {
  font-size: 18px;
  text-decoration: none;
  color: #444444;
  text-align: center;
}
.accordion__wrapper--89593 .node__a > li > div a:hover {
  color: #e8455f;
}
.accordion__wrapper--89593 .node__a > li > div .node__c {
  left: 0;
  right: 0;
  top: 100%;
  position: absolute;
  display: none;
  z-index: 1000;
}
.accordion__wrapper--89593 .node__a > li > div .node__c > ul {
  margin-top: -15px;
  border-radius: 20px;
  border: 1px solid #E8455F;
  padding: 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.accordion__wrapper--89593 .node__a > li > div .node__c > ul > li {
  list-style: none;
  white-space: nowrap;
}
.accordion__wrapper--89593 .node__a > li > div .node__c > ul > li > a {
  font-size: 14px;
}
.accordion__wrapper--89593 .node__a > li > div .node__c > ul > li > a:hover {
  color: #E8455F;
}
.accordion__wrapper--89593 .node__a > li > div:hover .node__c {
  display: block;
}
.accordion__wrapper--89593 .node__a > li > div:hover > a {
  color: #E8455F;
}

.accordion__wrapper--81689 .node__a {
  grid-template-columns: repeat(3, 1fr);
}
.accordion__wrapper--81689 .node__a > li {
  gap: 20px;
  overflow: visible;
}
.accordion__wrapper--81689 .node__a > li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.accordion__wrapper--81689 .node__a > li > div a {
  font-size: 18px;
  text-decoration: none;
  color: #444444;
}
.accordion__wrapper--81689 .node__a > li > div .node__color {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: block;
}
.accordion__wrapper--81689 .node__a > li > div .node__color.white {
  border: 1px solid #3f3f3f;
}
.accordion__wrapper--81689 .node__a > li > div .node__color.half-white {
  border: 1px solid #3f3f3f;
  position: relative;
}
.accordion__wrapper--81689 .node__a > li > div .node__color.half-white:after {
  width: 13px;
  height: 25px;
  background: #3f3f3f;
  content: "";
  position: absolute;
  left: 11px;
  top: -1px;
  border-radius: 0 25px 25px 0;
}
.accordion__wrapper--81689 .node__a > li > div .node__b {
  position: relative;
}
.accordion__wrapper--81689 .node__a > li > div .node__b > .node__c {
  padding: 0 0 0 10px;
  left: 100%;
  top: -8px;
  position: absolute;
  display: none;
  z-index: 1000;
}
.accordion__wrapper--81689 .node__a > li > div .node__b > .node__c > ul {
  border-radius: 20px;
  border: 1px solid #E8455F;
  padding: 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.accordion__wrapper--81689 .node__a > li > div .node__b > .node__c > ul > li {
  list-style: none;
  white-space: nowrap;
}
.accordion__wrapper--81689 .node__a > li > div .node__b > .node__c > ul > li > a {
  font-size: 14px;
}
.accordion__wrapper--81689 .node__a > li > div .node__b > .node__c > ul > li > a:hover {
  color: #E8455F;
}
.accordion__wrapper--81689 .node__a > li > div .node__b:hover .node__c {
  display: block;
}
.accordion__wrapper--81689 .node__a > li > div .node__b:hover > a {
  color: #E8455F;
}

.accordion__wrapper--sale img {
  border-radius: 20px;
  max-width: 1235px;
  width: 100%;
}

/*
.accordion {
    @include clear;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; 
    width: 100%;
    &__wrapper {
        z-index: 2000;
        box-shadow: 0 4px 5px rgba(57, 76, 89, 0.5);
        background: #fff;
        position: absolute;
        left: 0;
        right: 0;
        top: 45px;
        display: none;
    }
    & > li {
        @include clear;
        @include animate-bg;
        height: 45px;
        line-height: 45px;
        list-style: none;
        color: #444;
        font-size: 18px;
        cursor: pointer;
        & > a {
            display: block;
            padding: 0 13px;
            color: #444;
            text-decoration: none;
        }     
        & > span {
            display: block;
            padding: 0 13px;
        }
        & > div > ul {
            @include wrapper;
            min-height: 100px;
            margin: 0 auto;
            padding: 30px 0 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            & > li {
                @include clear;
                display: flex;
                flex-direction: column;
                line-height: normal;
                overflow: hidden;
                & > a {
                    color: #444;
                    font-size: 18px;
                    font-weight: 500;
                    text-decoration: none;
                    display: block;
                    &:hover {
                        color: #e8455f;
                    }
                    & + a {
                        margin-top: 20px;
                    }
                }
                & > ul {
                    padding: 0;
                    margin: 10px 0 20px 20px;
                    & > li {
                        @include clear;
                        & > a {
                            color: #777;
                            font-size: 18px;
                            text-decoration: none;
                            &:hover {
                                color: #e8455f;
                            }
                        }
                    }
                }
            }
        }
        &:hover {
            background: #E8455F;
            color: #fff;
            & > a {
                color: #fff;
            }
            & > .accordion__wrapper {
                display: block;
            }
        }
    }
}
*/
.content {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1539px) {
  .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.content--sidebar {
  display: grid;
  grid-template-columns: 325px auto;
}
@media only screen and (max-width: 1339px) {
  .content--sidebar {
    grid-template-columns: auto;
  }
}
.content--body {
  padding-top: 30px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .content--body {
    padding-top: 10px;
  }
}
.content--static {
  padding-bottom: 20px;
}

.fixed {
  position: fixed;
}

.isearch {
  background: #fff;
  padding: 0 20px 20px 20px;
  position: relative;
}
@media only screen and (max-width: 1339px) {
  .isearch {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    margin: 0 auto;
    top: 0;
    left: 0;
    z-index: 777777;
    width: 100%;
    overflow: auto;
    height: 100%;
    left: -100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 15px;
    min-height: 100vh;
  }
}
@media only screen and (max-width: 1339px) {
  .isearch--open {
    visibility: visible;
    left: 0;
    opacity: 1;
  }
}
.isearch__close {
  display: none;
  position: fixed;
  top: 17px;
  right: 10px;
  z-index: 13;
  background: url("/img/navbar-close.svg") no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  z-index: 110;
}
@media only screen and (max-width: 1339px) {
  .isearch__close {
    display: block;
  }
}

.mobilesearch {
  display: none;
  position: relative;
  line-height: 1;
  padding: 10px 20px;
  background-color: #e8455f;
  color: #FFFFFF;
  margin: 20px 0;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 1339px) {
  .mobilesearch {
    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;
    gap: 10px;
  }
}
.mobilesearch::before {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  content: "";
  background: url(/img/filter.svg) no-repeat center 100%/contain;
}
.mobilesearch span {
  font-size: 16px;
  font-weight: bold;
}

.popfilter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 499px) {
  .popfilter {
    font-size: 14px;
  }
}
.popfilter__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popfilter__group span {
  display: block;
  padding: 5px 5px 5px 0;
}
@media only screen and (max-width: 499px) {
  .popfilter__group {
    overflow: scroll;
    white-space: nowrap;
  }
}
.popfilter__delete {
  background: #fff url(/img/remove.png) right center no-repeat;
  color: #444;
  display: block;
  padding: 5px 20px 5px 5px;
  margin-right: 5px;
}

.product {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 543px;
  gap: 30px;
}
@media only screen and (max-width: 1086px) {
  .product {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 980px) {
  .product {
    grid-template-columns: auto;
    margin-top: 0;
  }
}
.product__img {
  max-width: 945px;
  overflow: hidden;
}
.product__galery {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product__galery img {
  max-width: 100%;
}
.product__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.product__compare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #444444;
}
.product__compare::before {
  content: "";
  background: url(/img/compare.svg) no-repeat;
  width: 16px;
  height: 20px;
  display: block;
}
.product__compare--active {
  color: #e8455f;
}
.product__compare--active::before {
  background-image: url(/img/compare-active.svg);
}
.product__favorites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #444444;
}
.product__favorites::before {
  content: "";
  background: url(/img/favorites.svg) no-repeat;
  background-size: 100%;
  width: 23px;
  height: 23px;
  display: block;
}
.product__favorites--active {
  color: #e8455f;
}
.product__favorites--active::before {
  background-image: url(/img/favorites-active.svg);
}
.product__stock {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  color: #E8455F;
  font-size: 16px;
  font-weight: 600;
}
.product__stock::before {
  width: 24px;
  height: 24px;
  background: url(/img/available.svg) no-repeat;
  content: "";
  display: block;
}
.product__outofstock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
}
.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}
.product__colors {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
@media only screen and (max-width: 980px) {
  .product__colors {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.product__colors span {
  font-size: 16px;
  font-weight: 400;
}
.product__colors span a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #444444;
  font-weight: 600;
}
.product__colors span a:hover {
  color: #E8455F;
}
.product__props {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
  color: #444;
  font-size: 16px;
  font-weight: 400;
}
.product__props dl {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 10px;
}
@media only screen and (max-width: 980px) {
  .product__props dl {
    font-size: 14px;
  }
}
.product__props dl a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #444444;
  font-weight: 600;
}
.product__props dl a:hover {
  color: #E8455F;
}
.product__props button {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-top: 10px;
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  background: #F9F9F9;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (max-width: 980px) {
  .product__props button {
    display: none;
  }
}
.product__props button:hover {
  background: #B41F36;
  color: #fff;
}
.product__title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 980px) {
  .product__title {
    display: none;
  }
}
.product__title--mobile {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  display: none;
}
@media only screen and (max-width: 980px) {
  .product__title--mobile {
    display: block;
  }
}
.product__title span {
  color: #959697;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.product__title h1 {
  margin: 3px 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}
.product__maintenance {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #B6B6B6;
  background: #FFF;
  padding: 20px 10px;
  margin-top: 20px;
  text-decoration: none;
  color: #444;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 980px) {
  .product__maintenance {
    font-size: 16px;
    padding: 10px;
  }
}
.product__maintenance:hover {
  background: #D03049;
  color: #fff;
}
.product__delivery {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}
.product__delivery a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #000;
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .product__delivery a {
    font-size: 16px;
  }
}
.product__delivery a:hover {
  color: #E8455F;
}
.product__options {
  margin: 20px 0;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C3C3C3;
}
.product__options::before {
  content: "";
  background: url(/img/location.svg) no-repeat;
  width: 24px;
  height: 25px;
  display: block;
  margin-right: 10px;
}
.product__options span {
  font-family: Arial, Helvetica, sans-serif;
}
.product__options a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
}
.product__options a:hover {
  color: #E8455F;
}
.product__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 50px;
}
.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 25px;
  gap: 3px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product__price span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
}
.product__priceold {
  color: #959697;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 25px;
  gap: 3px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-decoration: line-through;
}
.product__priceold span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.product__sizes {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (max-width: 980px) {
  .product__sizes {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.product__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}
.product__cheap {
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid #B6B6B6;
  color: #444;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product__cheap {
    font-size: 16px;
  }
}
.product__cheap a {
  color: #444;
  font-weight: 700;
  line-height: 100%;
  text-decoration-line: underline;
}
.product__buy {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (max-width: 980px) {
  .product__buy {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
@media only screen and (max-width: 980px) {
  .product__buy button {
    width: 230px;
  }
}

.photos {
  margin: 0;
  padding: 0;
  list-style: none;
}
.photos__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.photos__prev {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 30px;
  height: 30px;
  background: url(/img/product-prev.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  cursor: pointer;
}
.photos__prev:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.photos__next {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 30px;
  height: 30px;
  background: url(/img/product-next.svg) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  cursor: pointer;
}
.photos__next:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.colors {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.colors__item {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 5px;
  border: 1px solid #B6B6B6;
  background: #FFF;
  width: 60px;
  height: 60px;
  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;
}
.colors__item--active {
  border: 1px solid #363636;
}
.colors__item:hover {
  -webkit-transform: scale(0.9, 0.9);
      -ms-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
.colors__bulb {
  background-image: url(/img/carpet.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 40px;
}
.colors__part {
  opacity: 0.5;
}

.colors__bulb--var1 .colors__part {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: block;
}

.colors__bulb--var2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.colors__bulb--var2 .colors__part {
  width: 20px;
  height: 40px;
  border-radius: 40px 0 0 40px;
}
.colors__bulb--var2 .colors__part:nth-child(2) {
  border-radius: 0 40px 40px 0;
}

.colors__bulb--var3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.colors__bulb--var3 .colors__part {
  width: 20px;
  height: 20px;
  border-radius: 40px 0 0 0;
}
.colors__bulb--var3 .colors__part:nth-child(2) {
  border-radius: 0 40px 0 0;
}
.colors__bulb--var3 .colors__part:nth-child(3) {
  width: 40px;
  border-radius: 0 0 40px 40px;
  grid-column: span 2;
}

.colors__bulb--var4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.colors__bulb--var4 .colors__part {
  width: 20px;
  height: 20px;
  border-radius: 40px 0 0 0;
}
.colors__bulb--var4 .colors__part:nth-child(2) {
  border-radius: 0 40px 0 0;
}
.colors__bulb--var4 .colors__part:nth-child(3) {
  border-radius: 0 0 0 40px;
}
.colors__bulb--var4 .colors__part:nth-child(4) {
  border-radius: 0 0 40px 0;
}

.youtube {
  display: table;
  width: 100%;
  height: 100%;
}
.youtube__inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: none;
}

.tabs {
  margin-top: 50px;
  border-bottom: 1px solid #C3C3C3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1127px) {
  .tabs {
    display: none;
  }
}
.tabs__item {
  border-radius: 20px 20px 0px 0px;
  padding: 25px 30px 24px;
}
@media only screen and (max-width: 1539px) {
  .tabs__item {
    padding: 15px 15px 14px;
  }
}
.tabs__item a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  color: #444;
}
@media only screen and (max-width: 1539px) {
  .tabs__item a {
    font-size: 16px;
  }
}
.tabs__item a:hover {
  color: #e8455f;
}
.tabs__item span {
  position: relative;
  top: -13px;
  color: #e8455f;
}
.tabs__item--active {
  background: #363636;
}
.tabs__item--active a {
  color: #fff;
}
.tabs__content {
  display: none;
  padding: 39px 0 0;
  color: #000;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
}
@media only screen and (max-width: 1539px) {
  .tabs__content {
    padding: 20px 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .tabs__content {
    font-size: 14px;
  }
}
.tabs__content--overlook p {
  margin-bottom: 10px;
}
.tabs__content a {
  color: #444;
  font-weight: 400;
  line-height: 100%;
  text-decoration-line: underline;
}
.tabs__content--active {
  display: block;
}
.tabs__content dl {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  row-gap: 20px;
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
  .tabs__content dl {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 10px;
  }
}
.tabs--mobile {
  display: none;
  width: 100%;
  height: 50px;
  font-size: 18px;
  padding: 10px;
  margin-top: 20px;
}
@media only screen and (max-width: 1127px) {
  .tabs--mobile {
    display: block;
  }
}

.table--contacts td {
  padding: 5px 10px 0 0;
}

.pricelist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  position: relative;
}
.pricelist > li {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 11px 19px;
  cursor: pointer;
  border: 1px solid #B6B6B6;
  border-radius: 20px;
  /*
  &:nth-child(n+7) {
      display: none;
  }
  */
}
.pricelist > li.active, .pricelist > li:hover {
  background: #E8455F;
  border-color: #D03049;
}
.pricelist--active > li:nth-child(n+7) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pricelist__header {
  color: #444;
  background: #fff;
  border-radius: 5px;
  /*border: 1px solid #B6B6B6;*/
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  /*padding: 20px;*/
  cursor: pointer;
  z-index: 200;
  position: relative;
}
.pricelist__header--more::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: url(/img/expand.svg) no-repeat center;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 13px;
  height: 9px;
  content: "";
  display: block;
}
.pricelist__header--active::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.pricelist__header span {
  position: relative;
  top: -13px;
  color: #e8455f;
  font-size: 14px;
  font-weight: 400;
}
.pricelist__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.pricelist__name {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}
.pricelist__amount {
  color: #4FAD00;
  font-size: 11px;
  line-height: 11px;
}
.pricelist__empty {
  color: #444;
  font-size: 11px;
  line-height: 11px;
}
.pricelist__price {
  font-size: 20px;
  font-weight: 600;
  display: none;
}
.pricelist__price span {
  font-size: 19px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.pricelist__discount {
  color: #959697;
  font-size: 14px;
  font-weight: 600;
  text-decoration: line-through;
  text-align: right;
}
.pricelist__discount span {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.pricelist > li.active .pricelist__name,
.pricelist > li:hover .pricelist__name {
  color: #fff;
}

.pricelist > li.active .pricelist__amount,
.pricelist > li:hover .pricelist__amount {
  color: #fff;
}

.slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 980px) {
  .slides {
    display: none;
  }
}
.slides li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slides a {
  display: block;
}
.slides a img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
.slides__heading {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  line-height: 130%; /* 32.5px */
  margin: 20px 0 15px;
}
@media only screen and (max-width: 980px) {
  .slides__heading {
    display: none;
  }
}

.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 900px) {
  .blog {
    gap: 20px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 699px) {
  .blog {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 499px) {
  .blog {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog a {
  display: block;
  text-decoration: none;
}
.blog a img {
  width: 100%;
  display: block;
}
.blog__data {
  margin-top: 20px;
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.blog__name {
  margin-top: 10px;
  display: block;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1339px) {
  .blog__name {
    font-size: 18px;
  }
}

.runner {
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  max-height: 0;
}
.runner--active {
  border: 1px solid #B6B6B6;
  border-top: none;
  padding: 20px;
  max-height: 70px;
}
.runner__input {
  font-size: 18px;
  width: 60px;
  border: none;
  border-bottom: 1px solid #B6B6B6;
}
.runner__header {
  background: #fff;
  border-radius: 5px 5px 0px 0px;
  border: 1px solid #B6B6B6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  z-index: 200;
  position: relative;
  cursor: pointer;
  z-index: 200;
  position: relative;
}
.runner__header::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: url(/img/expand.svg) no-repeat center;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 13px;
  height: 9px;
  content: "";
  display: block;
}
.runner__header--active::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.main-slider {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 1539px) {
  .main-slider {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1419px) {
  .main-slider {
    margin-top: 0;
  }
}
@media only screen and (max-width: 599px) {
  .main-slider {
    display: none;
  }
}
.main-slider img {
  width: 100%;
}
.main-slider .owl-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.main-slider .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #fff !important;
  margin: 0 6px 0 0;
}
.main-slider .owl-dot.active {
  background: #e8455f !important;
}

.themes {
  margin: 50px 0;
}
@media only screen and (max-width: 900px) {
  .themes {
    margin: 20px 0 0;
  }
}
.themes__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1539px) {
  .themes__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.themes .owl-group {
  position: relative;
}
.themes .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 100;
}
@media only screen and (max-width: 900px) {
  .themes .owl-nav {
    display: none;
  }
}
.themes .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  position: absolute;
  left: -24px;
  background: url(/img/product-prev.svg) no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 200;
  margin: -120px 0 0 0;
}
@media only screen and (max-width: 1499px) {
  .themes .owl-nav .owl-prev {
    left: 24px;
  }
}
.themes .owl-nav .owl-prev:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.themes .owl-nav .owl-prev > span {
  display: none;
}
.themes .owl-nav .owl-next {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  position: absolute;
  right: -24px;
  background: url(/img/product-next.svg) no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 200;
  margin: -120px 0 0 0;
}
@media only screen and (max-width: 1499px) {
  .themes .owl-nav .owl-next {
    right: 24px;
  }
}
.themes .owl-nav .owl-next:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.themes .owl-nav .owl-next > span {
  display: none;
}
.themes .item {
  padding: 20px;
  border-radius: 10px;
  background: #F9F9F9;
}
.themes .item img {
  max-width: 106px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.themes a {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-decoration: none;
}
.themes a span {
  color: #959697;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.themes a:hover span {
  color: #e8455f;
}

h1 {
  color: #444;
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 30px;
}
@media only screen and (max-width: 530px) {
  h1 {
    font-size: 20px;
    margin: 0 0 20px;
  }
}

h2, h3, h4 {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  margin: 20px 0 20px;
}
@media only screen and (max-width: 530px) {
  h2, h3, h4 {
    font-size: 18px;
  }
}

h3, h4 {
  font-size: 18px;
  margin: 20px 0 5px;
}
@media only screen and (max-width: 530px) {
  h3, h4 {
    font-size: 16px;
  }
}

p {
  margin: 14px 0 7px;
}

.breadcrumbs {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1539px) {
  .breadcrumbs {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 16px 10px;
    margin-bottom: 5px;
  }
}
.breadcrumbs > li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.breadcrumbs > li + li::before {
  content: "";
  background: url(/img/breadcrumbs.svg) no-repeat center;
  width: 8px;
  height: 8px;
  display: block;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a span {
  color: #959697;
  font-size: 16px;
}
.breadcrumbs a:hover span {
  color: #E8455F;
}

.collections {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1539px) {
  .collections {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .collections {
    margin-bottom: 20px;
  }
}
.collections .owl-group {
  position: relative;
}
.collections .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 100;
}
@media only screen and (max-width: 900px) {
  .collections .owl-nav {
    display: none;
  }
}
.collections .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  position: absolute;
  left: -24px;
  background: url(/img/product-prev.svg) no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 200;
  margin: -120px 0 0 0;
}
@media only screen and (max-width: 1499px) {
  .collections .owl-nav .owl-prev {
    left: 24px;
  }
}
.collections .owl-nav .owl-prev:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.collections .owl-nav .owl-prev > span {
  display: none;
}
.collections .owl-nav .owl-next {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  position: absolute;
  right: -24px;
  background: url(/img/product-next.svg) no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 200;
  margin: -120px 0 0 0;
}
@media only screen and (max-width: 1499px) {
  .collections .owl-nav .owl-next {
    right: 24px;
  }
}
.collections .owl-nav .owl-next:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.collections .owl-nav .owl-next > span {
  display: none;
}
.collections .item {
  padding: 20px;
  border-radius: 10px;
  background: #F9F9F9;
}
.collections .item img {
  max-width: 106px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.collections a {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-decoration: none;
}
.collections a span {
  color: #959697;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  height: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.collections a:hover span {
  color: #e8455f;
}

.sets {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 962px) {
  .sets {
    margin-top: 20px;
  }
}
.sets .owl-group {
  padding: 0 11px;
}
.sets .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 100;
}
.sets .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 22px;
  height: 22px;
  position: absolute;
  left: -11px;
  background: url(/img/product-prev.svg) no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 200;
  margin: -32px 0 0 0;
}
.sets .owl-nav .owl-prev:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.sets .owl-nav .owl-prev > span {
  display: none;
}
.sets .owl-nav .owl-next {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -11px;
  background: url(/img/product-next.svg) no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 200;
  margin: -32px 0 0 0;
}
.sets .owl-nav .owl-next:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.sets .owl-nav .owl-next > span {
  display: none;
}
.sets .item {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  border-radius: 5px;
  border: 1px solid #B6B6B6;
  background: #FFF;
  padding: 10px 15px;
  text-align: center;
}
.sets .item:hover {
  background: #e8455f;
}
.sets .item:hover a {
  color: #fff;
}
.sets a {
  color: #444;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}
@media only screen and (max-width: 962px) {
  .sets a {
    font-size: 14px;
  }
}

.brands {
  background: #F9F9F9;
  margin-top: 100px;
  /*   
  & .owl-group {
      padding: 0 11px;
  }
  & .owl-nav {
      position: absolute;
      left: 0;
      right: 0;
      margin: 0;
      z-index: 100;
      & .owl-prev {
          @include animate-all;
          border: none;
          width: 22px;
          height: 22px;
          position: absolute;
          left:-11px;
          background: url(/img/product-prev.svg) no-repeat center;
          background-size: 100%;
          display: block;
          z-index: 200;
          margin: -32px 0 0 0;
          &:hover {
              transform: scale(0.9);
          }
          & > span {
              display: none;
          }
      }
      & .owl-next {
          @include animate-all;
          border: none;
          width: 22px;
          height: 22px;
          position: absolute;
          right: -11px;
          background: url(/img/product-next.svg) no-repeat center;
          background-size: 100%;
          display: block;
          z-index: 200;
          margin: -32px 0 0 0;
          &:hover {
              transform: scale(0.9);
          }
          & > span {
              display: none;
          }
      }
  }    
  & .item {
      @include animate-bg;
      border-radius: 5px;
      border: 1px solid #B6B6B6;
      background: #FFF;
      padding: 10px 15px;
      text-align: center;
      &:hover {
          background: #e8455f;
          & a {
              color: #fff;
          }
      }
  }
  & a {
      color: #444;
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      display: block;
  }    
  */
}
@media only screen and (max-width: 930px) {
  .brands {
    margin-top: 30px;
  }
}
.brands__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1539px) {
  .brands__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 930px) {
  .brands__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.brands__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 930px) {
  .brands__heading {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.brands__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
  margin-top: 40px;
}
@media only screen and (max-width: 930px) {
  .brands__items {
    margin-top: 20px;
  }
}
.brands__item {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #B6B6B6;
  background: #FFF;
  display: block;
}
.brands__item:hover {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background: #E8455F;
}
.brands__item:hover a {
  color: #fff;
}
.brands__item a {
  color: #444;
  font-size: 18px;
  text-decoration: none;
  display: block;
}
@media only screen and (max-width: 767px) {
  .brands__item a {
    font-size: 16px;
  }
}

.tags {
  background: #F9F9F9;
}
.tags__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1539px) {
  .tags__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 930px) {
  .tags__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.tags__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
  margin-top: 40px;
}
@media only screen and (max-width: 930px) {
  .tags__items {
    margin-top: 20px;
  }
}
.tags__item {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #B6B6B6;
  background: #FFF;
  display: block;
}
.tags__item:hover {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background: #E8455F;
}
.tags__item:hover a {
  color: #fff;
}
.tags__item a {
  color: #444;
  font-size: 18px;
  text-decoration: none;
  display: block;
}
@media only screen and (max-width: 767px) {
  .tags__item a {
    font-size: 16px;
  }
}
.tags__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 930px) {
  .tags__heading {
    font-size: 18px;
  }
}

.view {
  padding-left: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 1339px) {
  .view {
    padding-left: 0px;
  }
}

.hotcat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 1339px) {
  .hotcat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.hotcat__variant {
  color: #959697;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hotcat__variant:hover {
  color: #E8455F;
}
.hotcat__variant--active {
  color: #000;
}
.hotcat__listing {
  display: none;
}
.hotcat__listing--active {
  display: block;
}

.sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 530px) {
  .sorting {
    gap: 10px;
  }
}
.sorting__variant {
  color: #959697;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 962px) {
  .sorting__variant {
    font-size: 16px;
  }
}
.sorting__variant:hover {
  color: #E8455F;
}
.sorting__variant--active {
  color: #000;
}
.sorting__variant--up::after {
  content: "";
  background: url(/img/v10_arrow.png) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.sorting__variant--down::after {
  content: "";
  background: url(/img/v10_arrow.png) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.listing {
  margin: 40px 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 962px) {
  .listing {
    margin: 20px 0 0 0;
    gap: 15px;
  }
}
@media only screen and (max-width: 962px) {
  .listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 732px) {
  .listing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 499px) {
  .listing {
    gap: 5px;
  }
}
@media only screen and (max-width: 359px) {
  .listing {
    grid-template-columns: repeat(1, 1fr);
  }
}
.listing--v4 {
  grid-template-columns: repeat(4, 1fr);
}
.listing__item {
  border-radius: 20px;
  background: #F9F9F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.listing__sizes {
  padding: 0;
  z-index: 300;
  display: none;
}
.listing__sizes--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.listing__carousel {
  display: grid;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.listing__carousel--v2 {
  grid-template-columns: repeat(2, 1fr);
}
.listing__carousel--v3 {
  grid-template-columns: repeat(3, 1fr);
}
.listing__carousel--v4 {
  grid-template-columns: repeat(4, 1fr);
}
.listing__carousel--v5 {
  grid-template-columns: repeat(5, 1fr);
}
.listing__dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.listing__dots div {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #FFF;
}
.listing__dots div.active {
  background: #E8455F;
}
.listing__img {
  border-radius: 20px 20px 0px 0px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.listing__img img {
  width: 100%;
  display: block;
}
.listing__favorite {
  width: 18px;
  height: 18px;
  background: url(/img/ifavorite.svg) no-repeat center;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 200;
  cursor: pointer;
}
.listing__favorite--active {
  background: url(/img/ifavorite-active.svg) no-repeat center;
}
.listing__frame {
  padding: 20px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 499px) {
  .listing__frame {
    padding: 10px;
  }
}
.listing__name {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #444;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  margin-bottom: 20px;
  height: 63px;
  overflow: hidden;
}
@media only screen and (max-width: 962px) {
  .listing__name {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 499px) {
  .listing__name {
    font-size: 12px;
    line-height: 110%;
    height: 41px;
  }
}
.listing__props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.listing__prop {
  display: grid;
  grid-template-columns: 1fr 2fr;
  color: #959697;
  font-size: 14px;
}
@media only screen and (max-width: 962px) {
  .listing__prop {
    font-size: 12px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 499px) {
  .listing__prop {
    font-size: 11px;
  }
}
.listing__prop div:nth-child(2) {
  text-align: right;
  color: #444;
}
@media only screen and (max-width: 962px) {
  .listing__prop div:nth-child(2) {
    text-align: left;
  }
}
.listing__wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.listing__skus {
  /*
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 1602px) {
  .listing__skus {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 499px) {
  .listing__skus {
    margin: 10px 0 0;
  }
}
.listing__sku {
  font-size: 14px;
  border: 1px solid #C3C3C3;
  border-radius: 5px;
  color: #959697;
  background: #fff;
  padding: 5px 9px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 499px) {
  .listing__sku {
    font-size: 12px;
    padding: 3px 7px;
  }
}
.listing__sku--active, .listing__sku:hover {
  border: 1px solid #E8455F;
  background: #E8455F;
  color: #fff;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.listing__pricesgroups {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0;
}
@media only screen and (max-width: 962px) {
  .listing__pricesgroups {
    margin: 10px 0;
  }
}
.listing__pricesgroups > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
.listing__prices {
  color: #444;
  font-size: 25px;
  font-weight: 600;
}
@media only screen and (max-width: 1529px) {
  .listing__prices {
    font-size: 16px;
  }
}
@media only screen and (max-width: 962px) {
  .listing__prices {
    font-size: 20px;
  }
}
@media only screen and (max-width: 499px) {
  .listing__prices {
    font-size: 16px;
  }
}
.listing__prices::after {
  content: "₽";
  font-family: "Arial";
  font-size: 25px;
  font-weight: 500;
  margin-left: 5px;
}
@media only screen and (max-width: 1529px) {
  .listing__prices::after {
    font-size: 16px;
  }
}
@media only screen and (max-width: 962px) {
  .listing__prices::after {
    font-size: 18px;
  }
}
@media only screen and (max-width: 499px) {
  .listing__prices::after {
    font-size: 16px;
  }
}
.listing__discount {
  opacity: 0;
  color: #959697;
  font-size: 18px;
  font-weight: 300;
  text-decoration: line-through;
}
@media only screen and (max-width: 1529px) {
  .listing__discount {
    font-size: 12px;
  }
}
@media only screen and (max-width: 499px) {
  .listing__discount {
    font-size: 10px;
  }
}
.listing__discount::after {
  content: "₽";
  font-family: "Arial";
  font-size: 16px;
  font-weight: 500;
  margin-left: 5px;
}
@media only screen and (max-width: 1529px) {
  .listing__discount::after {
    font-size: 12px;
  }
}
@media only screen and (max-width: 962px) {
  .listing__discount::after {
    font-size: 14px;
  }
}
@media only screen and (max-width: 499px) {
  .listing__discount::after {
    font-size: 10px;
  }
}
.listing__percent {
  justify-self: flex-end;
  background: #E8455F;
  padding: 3.5px 8px;
  color: #fff;
  border-radius: 50px;
  opacity: 0;
}
@media only screen and (max-width: 499px) {
  .listing__percent {
    font-size: 10px;
    padding: 3.5px;
  }
}
.listing__order {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 100%;
  border-radius: 50px;
  border: 1px solid #E8455F;
  color: #E8455F;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  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;
  text-decoration: none;
  gap: 10px;
}
@media only screen and (max-width: 499px) {
  .listing__order {
    font-size: 14px;
    height: 36px;
  }
}
.listing__order::before {
  background: url(/img/order.svg) no-repeat center;
  width: 26px;
  height: 24px;
  display: block;
  content: "";
}
@media only screen and (max-width: 499px) {
  .listing__order::before {
    background-size: 100%;
  }
}
.listing__order:hover {
  background: #D03049;
  color: #fff;
}
.listing__order:hover::before {
  background: url(/img/order-active.svg) no-repeat center;
}
.listing__order:active {
  background: #fff;
  border: 1px solid #5E000F;
}
.listing__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 6px;
  height: 24px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 499px) {
  .listing__colors {
    display: none;
  }
}
.listing__color {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #B9B9B9;
  background: #FFF;
  -webkit-box-shadow: -3px -3px 8px 1px rgba(34, 60, 80, 0.2) inset;
          box-shadow: -3px -3px 8px 1px rgba(34, 60, 80, 0.2) inset;
}

.listing__pricesgroups--active .listing__discount,
.listing__pricesgroups--active .listing__percent {
  opacity: 1;
}

.similair {
  margin: 80px 0 0;
}
@media only screen and (max-width: 930px) {
  .similair {
    margin: 30px 0 0;
  }
}
.similair__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 40px;
}
@media only screen and (max-width: 530px) {
  .similair__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 20px;
  }
}
.similair__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 530px) {
  .similair__heading {
    font-size: 20px;
  }
}
.similair__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.similair__nav {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  background: url(/img/product-prev.svg) no-repeat center;
  background-size: 100%;
  display: block;
}
.similair__nav--next {
  background-image: url(/img/product-next.svg);
}
.similair__nav:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.similair .listing__name {
  height: 44px;
  overflow: hidden;
}
@media only screen and (max-width: 1254px) {
  .similair .listing__name {
    height: 44px;
  }
}
.similair .listing__wrap {
  height: 123px;
  overflow: hidden;
}

.history {
  margin: 80px 0 60px;
}
@media only screen and (max-width: 930px) {
  .history {
    margin: 30px 0 20px;
  }
}
.history__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 40px;
}
@media only screen and (max-width: 530px) {
  .history__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 20px;
  }
}
.history__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 530px) {
  .history__heading {
    font-size: 20px;
  }
}
.history__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.history__nav {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  background: url(/img/product-prev.svg) no-repeat center;
  background-size: 100%;
  display: block;
}
.history__nav--next {
  background-image: url(/img/product-next.svg);
}
.history__nav:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.history .listing__name {
  height: 52px;
  overflow: hidden;
}
@media only screen and (max-width: 1254px) {
  .history .listing__name {
    height: 58px;
  }
}

.sublist {
  margin: 0;
  padding: 0;
  list-style: none;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.sublist__check {
  background: url(/img/v9_checkbox.png) no-repeat 0 0;
  width: 17px;
  height: 17px;
  margin: 5px 10px 0 0;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px -1px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 2px -1px rgba(0, 0, 0, 0.5);
}
.sublist__node {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  margin-bottom: 10px;
}
.sublist__node--active .sublist__check {
  background-position: 0 -17px;
}
.sublist__less {
  background: url(/img/icon-close.svg) no-repeat center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 15px;
  right: 20px;
}
.sublist__option {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: url(/img/ndot.png) 0 20px repeat-x;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sublist__option:hover {
  color: #e8455f;
}
.sublist__name {
  font-size: 20px;
}
.sublist__name span {
  background: #fff;
}
.sublist__price {
  font-size: 20px;
  font-weight: 600;
}
.sublist__price div {
  background: #fff;
}
.sublist__price span {
  font-size: 19px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.sublist__discount {
  color: #959697;
  font-size: 14px;
  font-weight: 600;
  text-decoration: line-through;
  text-align: right;
}
.sublist__discount span {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.pagination {
  margin-top: 40px;
  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;
  gap: 10px;
}
@media only screen and (max-width: 962px) {
  .pagination {
    margin-top: 20px;
  }
}
.pagination__dummy {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  color: #777;
}
.pagination__item {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  display: block;
  padding: 0 14px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  background: #F9F9F9;
  border: 1px solid #F9F9F9;
  color: #777;
  text-decoration: none;
}
@media only screen and (max-width: 962px) {
  .pagination__item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 430px) {
  .pagination__item {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    padding: 0 5px;
  }
}
.pagination__item:hover, .pagination__item--active {
  color: #fff;
  background: #E8455F;
  border: 1px solid #E8455F;
}
.pagination__item--all {
  background: #fff;
  border: 1px solid #C3C3C3;
}
@media only screen and (max-width: 560px) {
  .pagination__item--all {
    display: none;
  }
}

.showall,
.showmore,
.lazypagination {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  border: 1px solid #959697;
  width: 100%;
  margin-top: 40px;
  color: #444;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 962px) {
  .showall,
  .showmore,
  .lazypagination {
    width: 185px;
    margin: 20px auto;
    margin-top: 20px;
    font-size: 18px;
    height: 45px;
  }
}
.showall:hover,
.showmore:hover,
.lazypagination:hover {
  background: #D03049;
  color: #fff;
}
.showall:active,
.showmore:active,
.lazypagination:active {
  border: 1px solid #5E000F;
  color: #444;
}

.trigger-continue,
.trigger-close,
.trigger-checkout,
.trigger-submit,
.button {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  border: none;
  background: #E8455F;
  height: 40px;
  border-radius: 28px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
}
.trigger-continue:hover,
.trigger-close:hover,
.trigger-checkout:hover,
.trigger-submit:hover,
.button:hover {
  background: #D03049;
}
.trigger-continue:active,
.trigger-close:active,
.trigger-checkout:active,
.trigger-submit:active,
.button:active {
  background: #B41F36;
}
.trigger-continue--add,
.trigger-close--add,
.trigger-checkout--add,
.trigger-submit--add,
.button--add {
  height: 55px;
  width: 100%;
  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;
  gap: 10px;
}
.trigger-continue--add::before,
.trigger-close--add::before,
.trigger-checkout--add::before,
.trigger-submit--add::before,
.button--add::before {
  background: url(/img/addtocart.svg) no-repeat center;
  width: 18px;
  height: 18px;
  content: "";
  display: block;
}
.trigger-continue--1click,
.trigger-close--1click,
.trigger-checkout--1click,
.trigger-submit--1click,
.button--1click {
  margin-top: 10px;
  border: 2px solid #E8455F;
  color: #E8455F;
  background: #fff;
  height: 55px;
  width: 100%;
  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;
  gap: 10px;
}
.trigger-continue--1click:hover,
.trigger-close--1click:hover,
.trigger-checkout--1click:hover,
.trigger-submit--1click:hover,
.button--1click:hover {
  background: #D03049;
  color: #fff;
}

.info {
  font-size: 20px;
}

.countries {
  margin: 26px 0 0 -40px;
  padding: 34px 0 42px 40px;
  background: #F9F9F9;
  position: relative;
}
@media only screen and (max-width: 1339px) {
  .countries {
    padding: 34px 40px 42px 40px;
    margin: 26px 0 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .countries {
    padding: 24px 20px 22px 20px;
  }
}
.countries__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1339px) {
  .countries__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 530px) {
  .countries__heading {
    font-size: 20px;
  }
}
.countries__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 1339px) {
  .countries__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.countries__item {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.countries__item:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.portfolio {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}
@media only screen and (max-width: 1539px) {
  .portfolio {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1339px) {
  .portfolio {
    margin-top: 10px;
  }
}
.portfolio__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  margin: 40px 0 20px;
}
@media only screen and (max-width: 1339px) {
  .portfolio__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 530px) {
  .portfolio__heading {
    font-size: 20px;
    margin: 20px 0 10px;
  }
}
.portfolio__items {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 999px) {
  .portfolio__items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 499px) {
  .portfolio__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.portfolio__items img {
  width: 100%;
}

@media only screen and (min-width: 1000px) {
  .article-frame:nth-child(n+11) {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
  .article-frame:nth-child(n+9) {
    display: none;
  }
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .article-frame:nth-child(n+10) {
    display: none;
  }
}
@media only screen and (max-width: 499px) {
  .article-frame:nth-child(n+7) {
    display: none;
  }
}
.mainreviews {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}
@media only screen and (max-width: 1539px) {
  .mainreviews {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .mainreviews {
    display: none;
  }
}
.mainreviews__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  margin: 40px 0 20px;
}
@media only screen and (max-width: 1339px) {
  .mainreviews__heading {
    text-align: center;
  }
}
.mainreviews .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mainreviews__item {
  cursor: pointer;
  width: 127px;
}
.mainreviews__item .image {
  display: none !important;
}
.mainreviews__item:hover .thumb {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
}
.mainreviews__content {
  width: 550px;
  margin-left: 20px;
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mainreviews__author {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  margin-top: 10px;
}
.mainreviews__comment {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  width: 550px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mainreviews .owl-item img {
  width: 100%;
}
.mainreviews .owl-item:not(.cloned) .current {
  width: 405px;
  height: 527px;
  background: #000;
}
.mainreviews .owl-item:not(.cloned) .current .mainreviews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mainreviews .owl-item:not(.cloned) .current .thumb {
  display: none !important;
}
.mainreviews .owl-item:not(.cloned) .current .image {
  display: block !important;
}

.news {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
}
@media only screen and (max-width: 1539px) {
  .news {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1339px) {
  .news {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 530px) {
  .news {
    margin-top: 20px;
  }
}
.news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.news__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
.news__subtitle {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin: 20px 0 0;
}
.news__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.news__nav {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: none;
  width: 48px;
  height: 48px;
  background: url(/img/product-prev.svg) no-repeat center;
  background-size: 100%;
  display: block;
}
.news__nav--next {
  background-image: url(/img/product-next.svg);
}
.news__nav:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.news__items {
  margin-top: 40px;
}
.news__items a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  display: block;
  text-decoration: none;
}
@media only screen and (max-width: 1339px) {
  .news__items a {
    font-size: 18px;
  }
}
.news__items a:hover {
  color: #e8455f;
}
.news__items img {
  width: 100%;
}
.news__items span {
  margin: 20px 0 5px;
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}

.articles {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 30px;
}
@media only screen and (max-width: 1539px) {
  .articles {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1339px) {
  .articles {
    padding: 30px 10px 30px;
  }
}
.articles__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 1339px) {
  .articles__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 530px) {
  .articles__heading {
    font-size: 20px;
  }
}
.articles__subtitle {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin: 20px 0;
}
@media only screen and (max-width: 1339px) {
  .articles__subtitle {
    text-align: center;
  }
}
.articles__blocks {
  display: grid;
  grid-template-columns: auto 450px;
  grid-template-rows: repeat(3, 169px);
  gap: 10px;
}
@media only screen and (max-width: 959px) {
  .articles__blocks {
    grid-template-columns: auto;
    grid-template-rows: 169px 169px 169px 60px;
  }
}
.articles__top {
  grid-row: span 3;
  background-size: cover;
  position: relative;
  padding: 0 0 40px 40px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
}
@media only screen and (max-width: 959px) {
  .articles__top {
    grid-row: span 1;
    padding: 30px;
  }
}
.articles__top a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 300;
}
.articles__top:hover .articles__mask {
  background: rgba(34, 34, 34, 0.7);
}
.articles__top:hover .articles__readmore {
  background-color: #E8455F;
}
.articles__mask {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.5);
  z-index: 100;
}
.articles__name {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 130%; /* 39px */
  z-index: 200;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .articles__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 530px) {
  .articles__name {
    font-size: 16px;
  }
}
.articles__subname {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  z-index: 200;
  position: relative;
}
@media only screen and (max-width: 530px) {
  .articles__subname {
    font-size: 16px;
  }
}
.articles__readmore {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  border-radius: 5px;
  border: 1px solid #FFF;
  padding: 16px 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  z-index: 200;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .articles__readmore {
    display: none;
  }
}
.articles__readmore::after {
  content: "";
  background: url(/img/arrow.svg) no-repeat center;
  width: 15px;
  height: 10px;
  display: block;
}
.articles__next {
  background-size: cover;
  position: relative;
  padding: 0 0 20px 30px;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (max-width: 959px) {
  .articles__next {
    padding: 30px;
  }
}
.articles__next a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 300;
}
.articles__next:hover .articles__mask {
  background: rgba(34, 34, 34, 0.7);
}
.articles__more {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  font-size: 22px;
  font-weight: 700;
  color: #444;
  border: 1px solid #D9D9D9;
  background: #F9F9F9;
  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;
  gap: 40px;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (max-width: 959px) {
  .articles__more {
    font-size: 16px;
    gap: 20px;
  }
}
.articles__more::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: url(/img/showmore.svg) no-repeat;
  width: 62px;
  height: 62px;
  content: "";
  display: block;
}
@media only screen and (max-width: 959px) {
  .articles__more::after {
    width: 32px;
    height: 32px;
    background-size: 100%;
  }
}
.articles__more:hover {
  color: #e8455f;
}
.articles__more:hover::after {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.after {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1539px) {
  .after {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .after {
    padding: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .after {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.after li {
  margin: 0 0 10px;
}
.after p {
  margin: 0 0 20px;
}
.after__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 20px;
}

.groups {
  margin-top: 18px;
}
.groups__heading {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1339px) {
  .groups__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 530px) {
  .groups__heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.groups__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 1377px) {
  .groups__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1339px) {
  .groups__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 999px) {
  .groups__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 649px) {
  .groups__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.groups__list li {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 160px;
  border-radius: 20px;
  padding: 25px;
  background: #F9F9F9;
  position: relative;
  overflow: hidden;
}
.groups__list li:nth-child(n+7) {
  display: none;
}
.groups__list li img {
  border-radius: 20px;
  top: 0px;
  bottom: 0px;
  left: 235px;
  position: absolute;
}
@media only screen and (max-width: 930px) {
  .groups__list li img {
    left: 200px;
  }
}
@media only screen and (max-width: 649px) {
  .groups__list li img {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 479px) {
  .groups__list li img {
    left: 200px;
    right: auto;
  }
}
.groups__list li a {
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #444;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  max-width: 192px;
  display: block;
}
@media only screen and (max-width: 930px) {
  .groups__list li a {
    font-size: 20px;
    max-width: 170px;
  }
}
.groups__list li a:hover {
  color: #e8455f;
}
.groups__list li .price {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  position: absolute;
  bottom: 25px;
  left: 25px;
}
.groups__list li .price::after {
  content: "₽";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.groups__list--active li:nth-child(n+7) {
  display: block;
}

.features {
  background: #F9F9F9;
}
.features__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding-top: 44px;
  padding-bottom: 44px;
}
@media only screen and (max-width: 1539px) {
  .features__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.features__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 45px;
}
@media only screen and (max-width: 1139px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 619px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.features__list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.features__list > li > a {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
}

.footer {
  background: #363636;
  width: 100%;
  overflow: hidden;
}
.footer__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-top: 20px;
}
@media only screen and (max-width: 1539px) {
  .footer__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.footer__groups {
  /*margin-top: 38px;*/
  display: grid;
  grid-template-columns: auto 345px;
}
@media only screen and (max-width: 799px) {
  .footer__groups {
    grid-template-columns: auto;
  }
}
.footer__menu {
  padding-top: 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 799px) {
  .footer__menu {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 569px) {
  .footer__group ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
}
.footer__group ul + .footer__header {
  margin-top: 12px;
}
.footer__group li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 7px 0 7px 0;
  /*
  padding: 0 0 0 36px;
  background: url(/img/dot.png) no-repeat 21px center;
  @media only screen and (max-width: 569px) {
      background: none;
      padding: 0;
      margin: 0;
  }
  */
}
.footer__group a {
  color: #DCDCDC;
  text-decoration: none;
}
.footer__group a:hover {
  color: #E8455F;
}
.footer__group--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__group--last {
  background: #464646;
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  position: relative;
}
@media only screen and (max-width: 799px) {
  .footer__group--last {
    display: none;
  }
}
.footer__group--last::after {
  background: #464646;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -1000%;
  width: 1000%;
  display: block;
}
.footer__header {
  color: #DCDCDC;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__header a {
  color: #DCDCDC;
  text-decoration: none;
}
.footer__header a:hover {
  color: #E8455F;
}
.footer__logo {
  background: url(/img/v9_logof.png) no-repeat;
  background-size: contain;
  max-width: 241px;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer__logo span {
  padding-top: 180px;
  display: block;
  color: #8b8b8b;
}
.footer__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  &::before {
      width: 42px;
      height: 23px;
      background: url(/img/v9_phone_f.png) no-repeat 0 0;
      display: block;
      content: '';
  }
  */
}
.footer__phones div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__phones a {
  color: #DCDCDC;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  &::before {
      width: 42px;
      height: 23px;
      background: url(/img/v9_shop_f.png) no-repeat 0 0;
      display: block;
      content: '';
  }
  */
}
.footer__address a {
  font-size: 13px;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__address div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.footer__address span {
  color: #DCDCDC;
}
.footer__address--shop {
  font-size: 13px;
  color: #DCDCDC;
}
.footer__address--shop::before {
  background: none;
}
.footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  &::before {
      width: 42px;
      height: 23px;
      background: url(/img/v9_email_f.png) no-repeat 0 center;
      display: block;
      content: '';
  }
  */
}
.footer__email div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__payment {
  gap: 10px;
  height: 58px;
  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;
  color: #959697;
  position: relative;
  margin-top: 30px;
}
.footer__payment::before {
  content: "";
  border: 1px solid #464646;
  left: 0px;
  right: 40px;
  top: -10px;
  position: absolute;
}
@media only screen and (max-width: 799px) {
  .footer__payment::before {
    left: 0px;
    right: 0px;
  }
}
@media only screen and (max-width: 428px) {
  .footer__payment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 10px 0;
  }
}

.copyright {
  background: #3C3C3C;
  padding: 28px 0 28px;
}
.copyright__wrapper {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 17% 83%;
  font-size: 12px;
}
@media only screen and (max-width: 1539px) {
  .copyright__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 899px) {
  .copyright__wrapper {
    grid-template-columns: 146px auto;
  }
}
@media only screen and (max-width: 767px) {
  .copyright__wrapper {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.copyright__left {
  color: #959697;
  border-right: 1px solid #959697;
}
@media only screen and (max-width: 767px) {
  .copyright__left {
    border-right: none;
  }
}
.copyright__right {
  color: #616161;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .copyright__right {
    padding-left: 0px;
  }
}

ul.c-line {
  display: table;
  width: 100%;
  position: relative;
  margin: 10px 0 0 0;
  padding: 0;
  height: 33px;
}
ul.c-line > li {
  display: table-cell;
}
ul.c-line > li > a {
  padding: 5px;
  height: 30px;
  display: block;
  color: #959697;
  text-align: center;
  border: 1px solid #363636;
  z-index: 200;
  position: relative;
}
ul.c-line > li .c-line-wrapper {
  background: #565656;
  z-index: 100;
  padding: 10px 10px 5px 10px;
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  top: 32px;
  border: 1px solid #959697;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
}
ul.c-line > li .c-line-wrapper > ul {
  margin: 5px 0 10px;
  padding: 0;
  list-style: none;
}
ul.c-line > li .c-line-wrapper > ul > li {
  display: inline-block;
}
ul.c-line > li .c-line-wrapper > ul > li > a {
  color: #dcdcdc;
  padding: 5px;
}
ul.c-line > li .c-line-wrapper > ul > li > a:hover {
  color: #e8455f;
}
ul.c-line > li:hover > a {
  border: 1px solid #959697;
  border-bottom: 1px solid #565656;
  text-decoration: none;
  color: #e8455f;
  background: #565656;
  height: 33px;
}
ul.c-line > li:hover .c-line-wrapper {
  display: block;
  text-align: left;
}
ul.c-line > li:hover .c-line-wrapper > span {
  color: #DCDCDC;
  display: block;
  font-size: 14px;
  font-weight: bold;
}

.scroller {
  cursor: pointer;
  width: 32px;
  height: 32px;
  background: url(/img/gotop.png) no-repeat 0 0;
  z-index: 2600;
  position: fixed;
  right: 18px;
  bottom: 50px;
  display: none;
  opacity: 0.8;
}
.scroller:hover {
  opacity: 1;
}/*# sourceMappingURL=site.css.map */