@charset "UTF-8";
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}
.choices[data-type*='select-one'] {
  cursor: pointer;
}
.choices[data-type*='select-one'] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*='select-one'] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
  margin: 0;
}
.choices[data-type*='select-one'] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.5;
}
.choices[data-type*='select-one'] .choices__button:hover, .choices[data-type*='select-one'] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*='select-one'] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00bcd4;
}
.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
  display: none;
}
.choices[data-type*='select-one']:after {
  content: '';
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*='select-one'].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*='select-one'][dir='rtl']:after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*='select-one'][dir='rtl'] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}
.choices[data-type*='select-multiple'] .choices__inner,
.choices[data-type*='text'] .choices__inner {
  cursor: text;
}
.choices[data-type*='select-multiple'] .choices__button,
.choices[data-type*='text'] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus,
.choices[data-type*='text'] .choices__button:hover,
.choices[data-type*='text'] .choices__button:focus {
  opacity: 1;
}
.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #dddddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}
.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir='rtl'] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}
.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #ffffff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir='rtl'] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}
.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.choices__list--dropdown.is-active {
  visibility: visible;
}
.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir='rtl'] .choices__list--dropdown .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  [dir='rtl'] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}
.choices__item {
  cursor: default;
}
.choices__item--selectable {
  cursor: pointer;
}
.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}
.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}
.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}
.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
[dir='rtl'] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}
.choices__placeholder {
  opacity: 0.5;
}
/*=====  End of Choices  ======*/
/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/*! nouislider - 14.7.0 - 4/6/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}
.ui-front {
	z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}
/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}
.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*!
 * jQuery UI Accordion 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/accordion/#theming
 */
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
/*!
 * jQuery UI Autocomplete 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/autocomplete/#theming
 */
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
/*!
 * jQuery UI Button 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/button/#theming
 */
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}
/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}
/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}
.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}
input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}
/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/*!
 * jQuery UI Checkboxradio 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/checkboxradio/#theming
 */
.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
/*!
 * jQuery UI Controlgroup 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/controlgroup/#theming
 */
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}
/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}
/*!
 * jQuery UI Datepicker 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}
/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
/*!
 * jQuery UI Dialog 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/dialog/#theming
 */
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
/*!
 * jQuery UI Draggable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-draggable-handle {
	touch-action: none;
}
/*!
 * jQuery UI Menu 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/menu/#theming
 */
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}
/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}
/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}
/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
/*!
 * jQuery UI Progressbar 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/progressbar/#theming
 */
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
/*!
 * jQuery UI Resizable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
/*!
 * jQuery UI Selectable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-selectable {
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
/*!
 * jQuery UI Selectmenu 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/selectmenu/#theming
 */
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
/*!
 * jQuery UI Sortable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-sortable-handle {
	touch-action: none;
}
/*!
 * jQuery UI Slider 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slider/#theming
 */
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}
/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	-webkit-filter: inherit;
	        filter: inherit;
}
.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
/*!
 * jQuery UI Spinner 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/spinner/#theming
 */
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
/*!
 * jQuery UI Tabs 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tabs/#theming
 */
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
/*!
 * jQuery UI Tooltip 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tooltip/#theming
 */
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */
/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em/*{fsDefault}*/;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
}
.ui-widget-content {
	border: 1px solid #dddddd/*{borderColorContent}*/;
	background: #ffffff/*{bgColorContent}*/ /*{bgImgUrlContent}*/ /*{bgContentXPos}*/ /*{bgContentYPos}*/ /*{bgContentRepeat}*/;
	color: #333333/*{fcContent}*/;
}
.ui-widget-content a {
	color: #333333/*{fcContent}*/;
}
.ui-widget-header {
	border: 1px solid #dddddd/*{borderColorHeader}*/;
	background: #e9e9e9/*{bgColorHeader}*/ /*{bgImgUrlHeader}*/ /*{bgHeaderXPos}*/ /*{bgHeaderYPos}*/ /*{bgHeaderRepeat}*/;
	color: #333333/*{fcHeader}*/;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333/*{fcHeader}*/;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
	background: #f6f6f6/*{bgColorDefault}*/ /*{bgImgUrlDefault}*/ /*{bgDefaultXPos}*/ /*{bgDefaultYPos}*/ /*{bgDefaultRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #454545/*{fcDefault}*/;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545/*{fcDefault}*/;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc/*{borderColorHover}*/;
	background: #ededed/*{bgColorHover}*/ /*{bgImgUrlHover}*/ /*{bgHoverXPos}*/ /*{bgHoverYPos}*/ /*{bgHoverRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #2b2b2b/*{fcHover}*/;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b/*{fcHover}*/;
	text-decoration: none;
}
.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff/*{borderColorActive}*/;
	background: #007fff/*{bgColorActive}*/ /*{bgImgUrlActive}*/ /*{bgActiveXPos}*/ /*{bgActiveYPos}*/ /*{bgActiveRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #ffffff/*{fcActive}*/;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff/*{borderColorActive}*/;
	background-color: #ffffff/*{fcActive}*/;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff/*{fcActive}*/;
	text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/ /*{bgImgUrlHighlight}*/ /*{bgHighlightXPos}*/ /*{bgHighlightYPos}*/ /*{bgHighlightRepeat}*/;
	color: #777620/*{fcHighlight}*/;
}
.ui-state-checked {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620/*{fcHighlight}*/;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899/*{borderColorError}*/;
	background: #fddfdf/*{bgColorError}*/ /*{bgImgUrlError}*/ /*{bgErrorXPos}*/ /*{bgErrorYPos}*/ /*{bgErrorRepeat}*/;
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f/*{fcError}*/;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_444444_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_444444_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_555555_256x240.png");
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png");
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_777620_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png");
}
.ui-button .ui-icon {
	background-image: url("../../node_modules/jquery-ui/themes/base/images/ui-icons_777777_256x240.png");
}
/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px/*{cornerRadius}*/;
}
/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa/*{bgColorOverlay}*/ /*{bgImgUrlOverlay}*/ /*{bgOverlayXPos}*/ /*{bgOverlayYPos}*/ /*{bgOverlayRepeat}*/;
	opacity: .3/*{opacityOverlay}*/;
	filter: Alpha(Opacity=30)/*{opacityFilterOverlay}*/; /* support: IE8 */
}
.ui-widget-shadow {
	box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
}
/* Document
 * ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
 * ========================================================================== */
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}
/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * Add the correct display in IE.
 */
main {
  display: block;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}
/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}
/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}
/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}
/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
dialog:not([open]) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* User interaction
 * ========================================================================== */
.container {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1376px;
  margin: 0 auto;
}
@media screen and (max-width: 1395px) {
  .container {
    max-width: 976px;
  }
}
@media screen and (max-width: 995px) {
  .container {
    max-width: 736px;
  }
}
@media screen and (max-width: 755px) {
  .container {
    max-width: none;
  }
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy-RegularItalic"), url("../fonts/gilroy-regularitalic-webfont.woff2") format("woff2"), url("../fonts/gilroy-regularitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy-Regular"), url("../fonts/gilroy-regular-webfont.woff2") format("woff2"), url("../fonts/gilroy-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy-Bold"), url("../fonts/gilroy-bold-webfont.woff2") format("woff2"), url("../fonts/gilroy-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy-Light"), url("../fonts/gilroy-light-webfont.woff2") format("woff2"), url("../fonts/gilroy-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy-SemiBold"), url("../fonts/gilroy-semibold-webfont.woff2") format("woff2"), url("../fonts/gilroy-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy-Medium"), url("../fonts/gilroy-medium-webfont.woff2") format("woff2"), url("../fonts/gilroy-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "fontello";
  src: url("../fonts/fontello.eot");
  src: url("../fonts/fontello.eot#iefix") format("embedded-opentype"), url("../fonts/fontello.woff2") format("woff2"), url("../fonts/fontello.woff") format("woff"), url("../fonts/fontello.ttf") format("truetype"), url("../fonts/fontello.svg#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-basket:before {
  content: "\e800";
}
/* '' */
.icon-like:before {
  content: "\e801";
}
/* '' */
.icon-user:before {
  content: "\e802";
}
/* '' */
.icon-search:before {
  content: "\e803";
}
/* '' */
.icon-home:before {
  content: "\e804";
}
/* '' */
.icon-view_mode_large:before {
  content: "\e805";
}
/* '' */
.icon-call:before {
  content: "\e806";
}
/* '' */
.icon-close:before {
  content: "\e807";
}
/* '' */
.icon-caret_left:before {
  content: "\e808";
}
/* '' */
.icon-pin:before {
  content: "\e809";
}
/* '' */
.icon-check:before {
  content: "\e80a";
}
/* '' */
.icon-basket2:before {
  content: "\e80b";
}
/* '' */
.icon-calc:before {
  content: "\e80c";
}
/* '' */
.icon-view_mode_small:before {
  content: "\e80d";
}
/* '' */
.icon-file:before {
  content: "\e80e";
}
/* '' */
.icon-like_fill:before {
  content: "\e80f";
}
/* '' */
.icon-check2:before {
  content: "\e810";
}
/* '' */
.icon-puzzle:before {
  content: "\e811";
}
/* '' */
.icon-share:before {
  content: "\e812";
}
/* '' */
.icon-filter:before {
  content: "\e814";
}
/* '' */
.icon-star:before {
  content: "\e815";
}
/* '' */
.icon-history:before {
  content: "\e816";
}
/* '' */
.icon-plus:before {
  content: "\e81b";
}
/* '' */
.icon-twitter:before {
  content: "\f099";
}
/* '' */
.icon-facebook:before {
  content: "\f09a";
}
/* '' */
.icon-gplus:before {
  content: "\f0d5";
}
/* '' */
.icon-vkontakte:before {
  content: "\f189";
}
/* '' */
* {
  box-sizing: border-box;
  outline: none;
}
*:before, *:after {
  box-sizing: border-box;
}
iframe {
  border: none !important;
}
img,
video,
audio {
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
select::-ms-expand {
  display: none;
}
label,
button,
select {
  cursor: pointer;
}
html {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
  min-width: 320px;
  padding: 0;
  margin: 0;
  background: #f5f5f5;
  -webkit-overflow-scrolling: touch;
}
.page__layout {
  height: auto;
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 755px) {
  .page__layout {
    overflow-x: hidden;
  }
}
main.main {
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  overflow: hidden;
}
main.main.main--product {
  overflow: visible;
}
p,
ul,
ol,
address,
figure,
table {
  margin: 0;
  padding: 0;
}
b,
strong {
  font-weight: 800;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  line-height: 1.25;
  font-weight: bold;
  margin-bottom: 1.1em;
  display: block;
}
h1,
.h1 {
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 755px) {
  h1,
.h1 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
h2,
.h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
h3,
.h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
h4,
.h4 {
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 755px) {
  h4,
.h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
h5,
.h5 {
  font-size: 20px;
  margin-bottom: 16px;
}
h6,
.h6 {
  font-size: 18px;
  margin-bottom: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.html-content p,
.html-content ul,
.html-content ol,
.html-content address,
.html-content figure,
.html-content table {
  margin-top: 16px;
  margin-bottom: 27px;
}
.html-content p:last-child,
.html-content ul:last-child,
.html-content ol:last-child,
.html-content address:last-child,
.html-content figure:last-child,
.html-content table:last-child {
  margin-bottom: 0;
}
.html-content a {
  text-decoration: none;
  border-bottom: 3px solid rgba(248, 71, 83, 0.4);
  transition: border-color 0.3s;
}
.html-content a:hover {
  border-block-color: #f84753;
}
.html-content a[href^=tel] {
  border: 0;
  font-weight: bold;
  transition: color 0.3s;
}
.html-content a[href^=tel]:hover {
  color: #f84753;
}
.html-content ol {
  list-style: none;
  counter-reset: counter;
}
.html-content ol li {
  counter-increment: counter;
  margin-bottom: 9px;
  position: relative;
  padding-left: 19px;
}
.html-content ol li::before {
  content: counter(counter) ". ";
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.html-content ul li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 22px;
}
.html-content ul li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f84753;
  left: 0;
  top: 9px;
}
.html-content figure {
  font-size: 0;
  line-height: 1;
  margin: 40px 0;
}
.html-content figure img {
  width: 100%;
  height: 427px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.html-content figcaption {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  padding-top: 8px;
}
.html-content blockquote {
  background: #FFFFFF;
  border: 4px solid rgba(248, 71, 83, 0.4);
  box-shadow: 0px 0px 1px rgba(248, 71, 83, 0.04), 0px 2px 6px rgba(248, 71, 83, 0.04), 0px 10px 20px rgba(248, 71, 83, 0.04);
  border-radius: 4px;
  padding: 20px 36px;
  margin: 40px 0;
}
.html-content > *:first-child {
  margin-top: 0;
}
.html-content hr {
  border: 0;
  border-top: 1px solid #EEEEF0;
  margin: 40px 0;
}
.html-content--sm {
  font-size: 16px;
  line-height: 24px;
}
::selection {
  background-color: rgba(246, 22, 37, 0.3) !important;
}
@media screen and (max-width: 755px) {
  body {
    font-size: 16px;
  }
  .html-content figure {
    margin-left: -16px;
    margin-right: -16px;
  }
  .html-content figure img {
    width: 100%;
    height: auto;
  }
  .html-content figure figcaption {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
    line-height: 16px;
  }
  .html-content blockquote {
    padding: 20px 12px;
  }
}
.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  outline: none;
  padding: 13px 16px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background-color: #f84753;
  transition: color 0.3s, background-color 0.3s;
  border: 0;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
  min-width: 92px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.btn:hover:not(:disabled) {
  background-color: #FA717A;
}
@media screen and (max-width: 755px) {
  .btn {
    border-radius: 4px;
  }
  .btn:hover:not(:disabled) {
    background-color: #f84753;
  }
  .btn:active:not(:disabled) {
    background-color: #FA717A;
  }
}
.btn.btn-success-loading.is-success > span {
  opacity: 0;
}
.btn.btn-success-loading.is-success .lds-ring {
  display: block;
}
.btn.icon-basket2:before {
  width: 20px;
  height: 17px;
  font-size: 17px;
  margin: -2px 0;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}
.btn.icon-puzzle:before {
  width: 18px;
  height: 18px;
  font-size: 18px;
  margin-top: -4px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}
.btn:disabled {
  cursor: default;
  color: #a3a3a3;
  background-color: #eeeef0;
}
.btn.is-loading {
  transition: all 0s;
  color: transparent !important;
}
.btn.is-loading .lds-ring {
  opacity: 1;
  visibility: visible;
}
.btn .lds-ring {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50% -50%);
          transform: translate(-50% -50%);
  z-index: 1;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.btn--black {
  background-color: #000;
  color: #fff;
}
.btn--black:hover:not(:disabled) {
  background-color: #4D4D4D;
  color: #fff;
}
.btn--gray {
  background-color: #eeeef0;
  color: #000;
}
.btn--gray:hover:not(:disabled) {
  background-color: #D4D4D9;
  color: #000;
}
.btn--gray2 {
  background-color: #a3a3a3;
  color: #fff;
}
.btn--gray2:hover:not(:disabled) {
  background-color: #666666;
  color: #fff;
}
.btn--link {
  color: #a3a3a3;
  background: none;
  border: 0;
  font-weight: bold;
}
.btn--link:hover:not(:disabled) {
  color: #f84753;
  background: none;
}
.btn--link:disabled {
  opacity: 0.5;
  color: #f84753;
  background: none;
}
.btn--outline {
  border: 1px solid #000000;
  color: #000;
  background: none;
}
.btn--outline:hover:not(:disabled) {
  background-color: #f84753;
  color: #fff;
  border-color: #f84753;
}
.btn--outline.btn--white {
  color: #fff;
  border-color: #fff;
}
.btn--outline.btn--white:hover:not(:disabled) {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}
.btn--outline.btn--white:disabled {
  opacity: 0.5;
  color: #fff;
  background: none;
}
.btn--outline:disabled {
  opacity: 0.5;
  color: #000;
  background: none;
}
.btn--outline2 {
  border: 1px solid #ECECEC;
  color: #666666;
  background: none;
  transition: all 0.3s;
}
.btn--outline2:hover:not(:disabled) {
  background: none;
  border-color: #000;
  color: #000;
}
.btn--outline2.btn--sm {
  padding: 13px 19px;
}
.btn--outline2:disabled {
  color: #a3a3a3;
  background: none;
  opacity: 0.5;
}
.btn--outline3 {
  border: 1px solid #eeeef0;
  color: #000;
  background: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn--outline3:hover:not(:disabled) {
  border-color: #000;
  color: #000;
  background: none;
}
.btn--outline3.btn--sm {
  padding: 13px 19px;
}
.btn--outline3.btn--xs {
  padding: 4px 9px;
  font-size: 12px;
  line-height: 16px;
  min-width: 0;
}
.btn--outline3:disabled {
  color: #000;
  background: none;
  opacity: 0.5;
}
.btn--outline4 {
  border: 2px solid #000000;
  color: #000;
  padding: 11px 16px;
  background: rgba(0, 0, 0, 0.25);
}
.btn--outline4:hover:not(:disabled) {
  background-color: #000;
  color: #fff;
}
.btn--outline4.btn--white {
  color: #fff;
  border-color: #fff;
}
.btn--outline4.btn--white:hover:not(:disabled) {
  background-color: #fff;
  color: #000;
}
.btn--outline4.btn--white:disabled {
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0.5;
}
.btn--outline4:disabled {
  color: #000;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0.5;
}
.btn--outline5 {
  border: 1px solid #fff;
  color: #fff;
  background: none;
}
.btn--outline5:hover:not(:disabled) {
  background: rgb(255, 255, 255);
  color: #000;
}
.btn--outline5:disabled {
  color: #fff;
  background: none;
  opacity: 0.5;
}
.btn--outline6 {
  border: 1px solid #eeeef0;
  color: #a3a3a3;
  background: none;
  transition: all 0.3s;
}
.btn--outline6:hover:not(:disabled) {
  background: none;
  border-color: #000;
  color: #000;
}
.btn--outline6.btn--sm {
  padding: 13px 19px;
}
.btn--outline6:disabled {
  color: #D4D4D9;
  background: none;
  opacity: 0.5;
}
.btn--outline7 {
  border: 1px solid #a3a3a3;
  color: #666666;
  background: none;
}
.btn--outline7:hover:not(:disabled) {
  background-color: #f84753;
  color: #fff;
  border-color: #f84753;
}
.btn--outline7:disabled {
  opacity: 0.5;
  color: #666666;
  background: none;
}
.btn--bold {
  font-weight: bold;
}
.btn--lg {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 10px 16px;
  padding-bottom: 11px;
}
.btn--lg2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 18px 27px;
}
.btn--lg3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 19px;
  padding-bottom: 16px;
}
.btn--lg4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 15px 27px;
}
.btn--lg5 {
  padding: 13px 17px;
}
.btn--md {
  font-size: 16px;
  line-height: 28px;
  padding: 9px 16px;
}
.btn--sm {
  font-size: 12px;
  line-height: 15px;
  padding: 14px 20px;
}
.select--rounded .choices[data-type*=select-one]::after {
  margin-top: -6px;
  right: 17px;
}
.select--rounded .choices__inner {
  border: 1px solid #EEEEF0;
  border-radius: 24px;
  min-height: unset;
}
.select--rounded .choices.is-open .choices__inner {
  border-radius: 24px;
}
.select--rounded .choices__list--single .choices__item {
  padding: 9px 17px;
  padding-right: 42px;
  height: auto;
  font-size: 14px;
  line-height: 16px;
}
.choices__inner {
  padding: 0;
  background: none;
  border: 1px solid #a3a3a3;
  box-sizing: border-box;
  border-radius: 4px;
  min-height: 41px;
  transition: border-color 0.3s;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
}
.choices__inner:hover {
  border-color: #000;
}
.choices__list--dropdown {
  transition: visibility 0.3s, opacity 0.3s;
  opacity: 0;
  background: #ffffff;
  border: 0;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  margin-top: 4px;
}
.choices__list--dropdown.is-active {
  opacity: 1;
}
.choices.is-flipped .choices__list--dropdown {
  bottom: auto;
  top: 100%;
  margin-top: 4px;
  border-radius: 4px;
}
.choices.is-open .choices__inner {
  border-radius: 4px;
  border-color: #000;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0;
}
.choices__list--single {
  padding: 0;
  display: block;
}
.choices__list--single .choices__item {
  height: 41px;
  line-height: 39px;
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding: 12px 17px;
}
.choices__list--single .choices__item span {
  margin-left: 0;
  font-weight: 400;
}
.choices__list--dropdown .choices__item {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #000;
  padding: 8px 16px;
  white-space: nowrap;
}
.choices__list--dropdown .choices__item--selectable {
  padding-right: 50px;
}
.choices .choices__list--dropdown {
  width: auto;
  right: 0;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: none;
  transition: background-color 0.3s;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:hover {
  background: #eeeef0;
}
.choices__list--dropdown .choices__item--selectable.is-selected {
  background: #eeeef0;
}
.choices__list--dropdown .choices__item--selectable.is-selected:before {
  content: "\e80a";
  position: absolute;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  width: 17px;
  height: 13px;
  right: 16px;
  top: 50%;
  margin-top: -6px;
  color: #f84753;
}
.choices__list--dropdown .choices__item:hover {
  background: #eeeef0;
}
.choices[data-type*=select-one]:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  right: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  margin-top: -7px;
  transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, transform 0.3s;
  transition: border-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: 67% 67%;
          transform-origin: 67% 67%;
}
.choices[data-type*=select-one].is-open:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
.lds-ring {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: -12px;
  display: none;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.form-header {
  margin-bottom: 23px;
}
.form-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 7px;
}
.form-title:last-child {
  margin-bottom: 0;
}
.form-title--center {
  text-align: center;
}
.form-title--lg {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 28px;
}
@media screen and (max-width: 755px) {
  .form-title--lg {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 16px;
  }
}
.form-descr {
  font-size: 14px;
  line-height: 17px;
  color: #666666;
}
.form-item {
  margin-bottom: 24px;
}
.form-item--mb-sm {
  margin-bottom: 8px;
}
.form-item + .form-field-err,
.form-item + .form-field-success {
  padding-top: 0;
  margin-bottom: 14px;
}
.or-divider {
  padding-top: 22px;
  padding-bottom: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
}
.or-divider:before, .or-divider:after {
  content: "";
  width: 100%;
  position: relative;
  height: 1px;
  background: #eeeef0;
}
.or-divider span {
  padding: 0 18px;
}
.form-submit .btn {
  display: block;
  width: 100%;
}
.form-submit--sm .btn {
  display: inline-block;
  width: auto;
  padding: 13px 17px;
}
.form-field-wrap {
  background-color: #fff;
  border-radius: 4px;
  position: relative;
}
.form-field-wrap.input--focus .form-field-label p {
  -webkit-transform: scale(0.7) translateY(-8px) translateX(0px);
          transform: scale(0.7) translateY(-8px) translateX(0px);
  position: relative;
  z-index: 2;
}
.form-field-wrap.input--filled .form-field-clear {
  display: block;
}
.form-field-wrap.input--filled .form-field-clear-lg {
  display: block;
}
.form-field-wrap--phone.form-field-wrap .form-field {
  padding-top: 0;
}
.form-field-wrap--phone.input--focus .form-field-label {
  -webkit-transform: scale(1) translateY(0) translateX(0);
          transform: scale(1) translateY(0) translateX(0);
  display: none;
}
.form-field-wrap--default-placeholder .form-field {
  padding-top: 1px;
}
.form-field-item.has-error .form-field,
.cart-delivery__field.has-error .form-field {
  border-color: #f84753;
}
.form-field-item.has-error .form-field-err,
.form-field-item.has-error .form-field-success,
.cart-delivery__field.has-error .form-field-err,
.cart-delivery__field.has-error .form-field-success {
  display: block;
}
.form-field-item.has-error ~ .form-field-err, .form-field-item.has-error ~ .form-field-success,
.cart-delivery__field.has-error ~ .form-field-err,
.cart-delivery__field.has-error ~ .form-field-success {
  display: block;
}
.form-field-item.has-success .form-field-wrap,
.cart-delivery__field.has-success .form-field-wrap {
  position: relative;
}
.form-field-item.has-success .form-field-wrap:before,
.cart-delivery__field.has-success .form-field-wrap:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 11px;
  background: url("../img/form_check.svg") no-repeat 0 0;
  top: 50%;
  margin-top: -5px;
  right: 14px;
}
.form-field-wrap--lg .form-field {
  height: 58px;
  padding: 0 22px;
  padding-top: 13px;
  font-size: 18px;
}
.form-field-wrap--lg textarea.form-field {
  padding-top: 21px;
}
.form-field-wrap--lg .form-field-label {
  height: 58px;
  line-height: 58px;
  font-size: 18px;
  padding-left: 22px;
  padding-right: 22px;
}
.form-field-wrap--lg.input--focus .form-field-label p {
  -webkit-transform: scale(0.7) translateY(-12px) translateX(0px);
          transform: scale(0.7) translateY(-12px) translateX(0px);
}
@media screen and (max-width: 755px) {
  .form-field-wrap--lg .form-field {
    height: 51px;
    padding: 0 15px;
    padding-top: 17px;
    font-size: 16px;
  }
  .form-field-wrap--lg textarea.form-field {
    padding-top: 21px;
  }
  .form-field-wrap--lg .form-field-label {
    height: 51px;
    line-height: 51px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .form-field-wrap--lg.input--focus .form-field-label p {
    -webkit-transform: scale(0.7) translateY(-12px) translateX(0px);
            transform: scale(0.7) translateY(-12px) translateX(0px);
  }
}
.form-field-wrap--md .form-field {
  height: 51px;
  padding: 0 22px;
  padding-top: 17px;
  font-size: 18px;
}
.form-field-wrap--md textarea.form-field {
  padding-top: 21px;
}
.form-field-wrap--md .form-field-label {
  height: 52px;
  padding: 0px 23px;
  font-size: 18px;
}
.form-field-wrap--md.input--focus .form-field-label p {
  -webkit-transform: scale(0.7) translateY(-10px) translateX(0px);
          transform: scale(0.7) translateY(-10px) translateX(0px);
}
@media screen and (max-width: 755px) {
  .form-field-wrap--md .form-field {
    font-size: 16px;
  }
  .form-field-wrap--md .form-field-label {
    font-size: 16px;
    padding-bottom: 2px;
  }
}
.form-field-wrap--sm .form-field {
  height: 46px;
  padding: 0 16px;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 400;
  border: 2px solid #EEEEF0;
}
.form-field-wrap--sm textarea.form-field {
  padding-top: 21px;
}
.form-field-wrap--sm .form-field-label {
  height: 46px;
  padding: 0px 18px;
  font-size: 16px;
}
.form-field-wrap--sm.input--focus .form-field-label p {
  -webkit-transform: scale(0.7) translateY(-10px) translateX(0px);
          transform: scale(0.7) translateY(-10px) translateX(0px);
}
.form-field-label {
  height: 42px;
  padding: 0px 15px;
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.1875;
  color: #c8c8c8;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: all 0.3s;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-field-label span {
  font-weight: bold;
  color: #000;
}
.form-field-label p {
  margin: 0;
  display: inline-block;
  line-height: 1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: all 0.3s;
}
.form-field-label p:last-child:not(:first-child) {
  display: none;
}
.form-field-label sup {
  color: #f84753;
  position: relative;
  top: 5px;
  left: 2px;
  margin: 0;
  display: inline-block;
  line-height: 0;
}
@media screen and (max-width: 755px) {
  .form-field-label p:first-child:not(:last-child) {
    display: none;
  }
  .form-field-label p:last-child:not(:first-child) {
    display: block;
  }
}
.form-field {
  position: relative;
  z-index: 1;
  border: 1px solid #eeeef0;
  box-sizing: border-box;
  border-radius: 4px;
  display: block;
  height: 42px;
  padding: 0 15px;
  padding-top: 13px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1875;
  outline: none;
  width: 100%;
  background: none;
  transition: border-color 0.3s;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
}
.form-field::-webkit-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}
.form-field:-ms-input-placeholder {
  color: #c8c8c8;
  opacity: 1;
}
.form-field::placeholder {
  color: #c8c8c8;
  opacity: 1;
}
.form-field:focus {
  border-color: #000;
}
.form-field:focus::-webkit-input-placeholder {
  color: rgba(200, 200, 200, 0);
}
.form-field:focus:-ms-input-placeholder {
  color: rgba(200, 200, 200, 0);
}
.form-field:focus::placeholder {
  color: rgba(200, 200, 200, 0);
}
.form-field--lg {
  font-size: 18px;
  line-height: 30px;
}
.form-field--lg::-webkit-input-placeholder {
  color: #eeeef0;
}
.form-field--lg:-ms-input-placeholder {
  color: #eeeef0;
}
.form-field--lg::placeholder {
  color: #eeeef0;
}
textarea.form-field {
  min-height: 118px;
  max-width: 100%;
  min-width: 100%;
  padding-top: 21px;
}
.form-field-err,
.form-field-success {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #f84753;
  padding-top: 4px;
  display: none;
  text-align: left;
  white-space: normal;
  margin-bottom: -10px;
}
.form-field-err p,
.form-field-success p {
  margin: 0;
}
.form-field-err--sm,
.form-field-success--sm {
  font-size: 14px;
  line-height: 17px;
}
.form-field-err.is-visible,
.form-field-success.is-visible {
  display: block;
}
.form-field-success {
  color: green;
}
.form-button {
  display: inline-block;
}
.form-field-item--button {
  display: inline-block;
  font-size: 0;
  line-height: 1;
  white-space: nowrap;
}
.form-field-item--button .form-field-wrap {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-width: 400px;
  width: 400px;
  display: inline-block;
  vertical-align: top;
}
.form-field-item--button .form-field {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form-field-item--button .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  white-space: nowrap;
}
.form-field-item--button .form-field-err,
.form-field-item--button .form-field-success {
  width: 100%;
}
.form-field-item--button--sm .form-field {
  min-width: 282px;
}
@media screen and (max-width: 1395px) {
  .form-field-item--button .form-field-wrap {
    min-width: 296px;
    width: 296px;
  }
}
@media screen and (max-width: 995px) {
  .form-field-item--button {
    text-align: left;
  }
}
@media screen and (max-width: 755px) {
  .form-field-item--button {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .form-field-item--button .form-field-wrap {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-bottom: 16px;
    min-width: 0px;
    width: 100%;
    -webkit-order: 1;
            order: 1;
  }
  .form-field-item--button .form-field-wrap.input--focus .form-field {
    border-color: #000;
  }
  .form-field-item--button .form-field-err,
.form-field-item--button .form-field-success {
    margin-top: -16px;
    margin-bottom: 16px;
    -webkit-order: 2;
            order: 2;
  }
  .form-field-item--button .form-field {
    border-right: 1px solid #eeeef0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .form-field-item--button .form-field-wrap.has-error .form-field {
    border-right-color: #f84753;
  }
  .form-field-item--button .btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    display: block;
    width: 100%;
    -webkit-order: 3;
            order: 3;
  }
}
.form-soc {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 32px;
}
.form-soc li {
  -webkit-flex: 1;
          flex: 1;
}
.form-soc__link {
  display: block;
  height: 43px;
  text-align: center;
  line-height: 43px;
  transition: background-color 0.3s;
}
.form-soc__link:before {
  color: #fff;
  display: inline-block;
  line-height: 43px;
}
.form-soc__link.icon-vkontakte {
  background: #4D76A1;
  border-radius: 4px 0px 0px 4px;
}
.form-soc__link.icon-vkontakte:before {
  width: 27px;
  height: 16px;
  font-size: 16px;
}
.form-soc__link.icon-vkontakte:hover {
  background: #456990;
}
.form-soc__link.icon-facebook {
  background: #3B5998;
}
.form-soc__link.icon-facebook:before {
  width: 13px;
  height: 27px;
  font-size: 27px;
}
.form-soc__link.icon-facebook:hover {
  background: #344e86;
}
.form-soc__link.icon-gplus {
  background: #DC4E41;
}
.form-soc__link.icon-gplus:before {
  width: 27px;
  height: 17px;
  font-size: 17px;
}
.form-soc__link.icon-gplus:hover {
  background: #d83a2b;
}
.form-soc__link.icon-twitter {
  background: #55ACEE;
  border-radius: 0px 4px 4px 0px;
}
.form-soc__link.icon-twitter:before {
  width: 24px;
  height: 20px;
  font-size: 20px;
}
.form-soc__link.icon-twitter:hover {
  background: #3ea1ec;
}
.form-links {
  text-align: center;
  margin-top: 32px;
}
.form-links li {
  font-size: 0;
  line-height: 1;
  margin-bottom: 16px;
}
.form-links li:last-child {
  margin-bottom: 0;
}
.form-links li a {
  font-size: 0;
  line-height: 1;
  font-weight: 500;
  color: #666666;
  transition: all 0.3s;
  display: inline-block;
}
.form-links li a span {
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  border-bottom: 2px dotted #666666;
  display: inline-block;
  vertical-align: top;
}
.form-links li a.icon-caret_left {
  position: relative;
}
.form-links li a.icon-caret_left:before {
  font-size: 8px;
  width: 5px;
  height: 19px;
  line-height: 19px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.form-links li a:hover {
  color: #000;
  border-bottom-color: #000;
}
.form-accept {
  margin-top: 25px;
  margin-bottom: 30px;
}
.form-accept p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.02em;
  color: #a3a3a3;
}
.form-accept p a {
  color: #666666;
  transition: color 0.3s;
}
.form-accept p a:hover {
  color: #000;
}
.form-accept--mbt-sm {
  margin-top: 8px;
}
.form-field-clear {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 8px;
  top: 14px;
  background: #FFFFFF;
  border-radius: 50%;
  color: rgba(26, 26, 26, 0.7);
  border: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  z-index: 3;
  display: none;
}
.form-field-clear:before {
  font-size: 10px;
  width: 10px;
  height: 6px;
  line-height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form-field-clear-lg {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  outline: none;
  position: absolute;
  cursor: pointer;
  transition: opacity 0.3s;
  right: 9px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  z-index: 3;
  display: none;
}
.form-field-clear-lg:before, .form-field-clear-lg:after {
  content: "";
  width: 17px;
  height: 2px;
  background-color: #BFBFBF;
  position: absolute;
  border-radius: 5px;
  transition: all 0.3s;
}
.form-field-clear-lg:before {
  left: 4px;
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.form-field-clear-lg:after {
  right: 5px;
  top: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.form-field-clear-lg:hover:before, .form-field-clear-lg:hover:after {
  background-color: #a3a3a3;
}
.form-cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.form-col {
  width: calc(50% - 8px);
}
.form-item--label {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 32px;
}
.form-item--label .form-field-item {
  width: 100%;
  max-width: 665px;
}
.form-item__label {
  width: 174px;
  min-width: 174px;
  padding-top: 19px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}
.form-item--rating {
  margin-bottom: 48px;
}
.form-item--rating .form-item__label {
  padding-top: 6px;
}
.quantity {
  width: 107px;
  display: -webkit-flex;
  display: flex;
}
.quantity__value {
  width: 35px;
  text-align: center;
  border: 0;
  background-color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  /* identical to box height, or 133% */
  text-transform: uppercase;
}
.quantity__button {
  width: 36px;
  border: 0;
  height: 36px;
  background-color: #eeeef0;
  outline: none;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.3s;
}
.quantity__button:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #666666;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -6px;
}
.quantity__button:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 2px;
  background-color: #666666;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -1px;
}
.quantity__button--decrease:after {
  display: none;
}
.quantity__button:hover {
  background-color: #D4D4D9;
}
@media screen and (min-width: 756px) {
  .quantity--lg {
    width: 143px;
  }
  .quantity--lg .quantity__value {
    width: 45px;
    height: 45px;
  }
  .quantity--lg .quantity__button {
    width: 45px;
    height: 45px;
  }
}
.ps__rail-y {
  opacity: 1;
  width: 2px;
}
.ps__thumb-y {
  width: 2px;
  background-color: #eeeef0;
  border-radius: 0;
  right: 0;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 1;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  width: 2px;
  background-color: #c8c8c8;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  opacity: 1;
  background: none;
}
.checkbox {
  display: block;
  margin-bottom: 16px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  text-align: left;
}
.checkbox input {
  display: none;
}
.checkbox input:checked ~ span:after {
  background-color: #f84753;
}
.checkbox input:checked ~ span:before {
  opacity: 1;
}
.checkbox input:disabled ~ span {
  color: #a3a3a3;
  cursor: default;
}
.checkbox input:disabled ~ span:after {
  border-color: #a3a3a3;
}
.checkbox input:disabled:checked ~ span:after {
  background-color: #a3a3a3;
}
.checkbox span {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  position: relative;
  display: block;
  padding-left: 31px;
  min-height: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.checkbox span:before {
  width: 16px;
  height: 12px;
  font-size: 12px;
  position: absolute;
  color: #fff;
  transition: all 0.3s;
  left: 4px;
  top: 6px;
  opacity: 0;
  z-index: 1;
}
.checkbox span:after {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #f84753;
  box-sizing: border-box;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
}
.checkbox:hover input:disabled ~ span {
  cursor: default;
}
.checkbox:hover input:not(:disabled) ~ span:after {
  box-shadow: 0px 0px 10px rgba(250, 71, 71, 0.7);
  border-color: #f84753;
}
.checkbox:hover input:not(:disabled):checked ~ span {
  box-shadow: none;
}
.checkbox:hover input:not(:disabled):checked ~ span:after {
  background-color: #FA707A;
  border-color: #FA707A;
  box-shadow: none;
}
.checkbox--block span {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #a3a3a3;
  font-weight: normal;
}
.checkbox--block span a {
  color: #a3a3a3;
  transition: all 0.3s;
  border-bottom: 1px solid #a3a3a3;
}
.checkbox--block span a:hover {
  color: #000;
  border-bottom: 1px solid rgba(163, 163, 163, 0);
}
.noUi-horizontal {
  height: 2px;
  margin-left: 0;
  margin-right: 0;
  margin-top: -1px;
  width: 100%;
}
.noUi-target {
  border: 0;
  border-radius: 0px;
  background: #a3a3a3;
  box-shadow: none;
}
.noUi-connect {
  background: #f84753;
}
.noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #a3a3a3;
  box-sizing: border-box;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  top: -8px;
  transition: border-color 0.3s;
}
.noUi-horizontal .noUi-handle:before, .noUi-horizontal .noUi-handle:after {
  display: none;
}
.noUi-horizontal .noUi-handle:hover {
  border-color: #f84753;
}
.noUi-touch-area {
  width: 30px;
  height: 30px;
  top: -7px;
  right: -7px;
  position: absolute;
}
html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -9px;
}
@media screen and (max-width: 1395px) {
  .form-item--label .form-field-item {
    max-width: 570px;
  }
}
@media screen and (max-width: 995px) {
  .form-button {
    display: block;
    text-align: center;
  }
  .form-item__label {
    width: 150px;
    min-width: 150px;
  }
}
@media screen and (max-width: 755px) {
  .form-field-err,
.form-field-success {
    font-size: 14px;
    line-height: 19px;
  }
  .form-submit--sm .btn {
    display: block;
    width: 100%;
  }
  .form-accept--mbt-sm {
    max-width: 294px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 12px;
  }
  .form-cols {
    display: block;
  }
  .form-col {
    width: 100%;
  }
  .form-item--label {
    display: block;
    margin-bottom: 16px;
  }
  .form-item__label {
    width: 100%;
    min-width: 0;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
  }
  .form-item--label .form-field-item {
    max-width: none;
  }
  .form-item--rating {
    text-align: center;
    font-weight: normal;
  }
  .form-item--rating .form-item__label {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    padding-top: 0;
  }
}
.dropdown {
  display: inline-block;
  position: relative;
}
.dropdown.is-open .dropdown__menu {
  opacity: 1;
  visibility: visible;
}
.dropdown.is-open .dropdown__item {
  border-color: #000;
}
.dropdown.is-open .dropdown__item:before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.dropdown__item {
  border: 1px solid #a3a3a3;
  box-sizing: border-box;
  border-radius: 4px;
  height: 43px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: left;
  color: #000000;
  padding: 12px 16px;
  padding-right: 40px;
  position: relative;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: border-color 0.3s;
  white-space: nowrap;
}
.dropdown__item:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 65% 65%;
          transform-origin: 65% 65%;
  right: 17px;
  top: 50%;
  margin-top: -8px;
  transition: all 0.3s;
}
.dropdown__item:hover {
  border-color: #000;
}
.dropdown__menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  margin-top: 4px;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  width: 270px;
  padding: 15px 6px;
  padding-right: 17px;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.dropdown__menu .filter-colors {
  margin-right: 0;
  margin-bottom: 0;
}
.dropdown__menu .filter-color--block:last-child {
  margin-bottom: 0;
}
.dropdown__menu .checkbox:last-child {
  margin-bottom: 0;
}
.dropdown__scroll:not(.dropdown__scroll--disable-mobile) {
  padding: 11px;
  padding-right: 8px;
  max-height: 362px;
  position: relative;
}
.dropdown__scroll:not(.dropdown__scroll--disable-mobile) .ps__rail-y {
  margin-top: 11px;
  margin-bottom: 11px;
}
@media screen and (min-width: 756px) {
  .dropdown__scroll--disable-mobile {
    padding: 11px;
    padding-right: 8px;
    max-height: 362px;
    position: relative;
  }
  .dropdown__scroll--disable-mobile .ps__rail-y {
    margin-top: 11px;
    margin-bottom: 11px;
  }
}
.suggestions-promo {
  display: none !important;
}
.wrap_6730 {
  z-index: 999 !important;
}
.soc-links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.soc-links li {
  margin-right: 32px;
}
.soc-links li a {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}
.soc-links li a img {
  width: 32px;
  height: 32px;
}
.soc-links li a:hover {
  opacity: 0.8;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: all 0.3s;
  position: relative;
  opacity: 0.4;
  background: none;
}
.swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 0;
  top: 0;
}
.swiper-pagination-bullet:hover {
  opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  margin-right: 17px;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-bullet-active:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  font-size: 0;
  line-height: 1;
  bottom: 32px;
}
.swiper-pagination-fraction {
  font-weight: bold;
  font-size: 18px;
  line-height: 19px;
  color: #000000;
  display: inline-block;
  width: auto;
  position: absolute;
  top: -66px;
  right: 0;
  bottom: auto;
  left: auto;
}
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(88, 88, 88, 0.3);
  border-radius: 50%;
  transition: background-color 0.3s;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev:before,
.swiper-button-next:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: none;
  border-bottom: 2px solid #000;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  background: none;
  transition: all 0.3s;
  transition-delay: 0;
}
.swiper-button-prev--sm,
.swiper-button-next--sm {
  width: 24px;
  height: 24px;
  background-color: #eeeef0;
  box-shadow: none;
  margin-top: -12px;
}
.swiper-button-prev--sm:before,
.swiper-button-next--sm:before {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-color: #a3a3a3;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #f84753;
}
.swiper-button-prev:hover:before,
.swiper-button-next:hover:before {
  border-color: #fff;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev:before {
  border-left: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -3px;
}
.swiper-button-prev--sm:before {
  -webkit-transform: rotate(45deg) scale(0.7);
          transform: rotate(45deg) scale(0.7);
  border-left-color: #a3a3a3;
  margin-left: -4px;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-next:before {
  border-right: 2px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: -8px;
}
.swiper-button-next--sm:before {
  -webkit-transform: rotate(-45deg) scale(0.7);
          transform: rotate(-45deg) scale(0.7);
  border-right-color: #a3a3a3;
  margin-left: -6px;
}
.swiper-button-disabled {
  display: none;
}
.swiper-container-horizontal > .swiper-scrollbar {
  height: 6px;
  bottom: -18px;
  background: none;
  left: 0;
  width: 100%;
}
.swiper-scrollbar-drag {
  background-color: #a3a3a3;
  opacity: 0.5;
  transition: all 0.3s;
  border-radius: 4px;
}
.swiper-scrollbar-drag:hover {
  opacity: 1;
}
.swiper-slide--lazy {
  position: relative;
}
.swiper-slide--lazy .swiper-lazy + .swiper-slide__loading {
  opacity: 1;
  visibility: visible;
}
.swiper-slide--lazy .swiper-lazy-loaded + .swiper-slide__loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-slide__loading {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.swiper-slide__loading .lds-ring {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.swiper-slide__loading--white {
  background-color: #fff;
}
.swiper-slide__loading--white .lds-ring div {
  border-color: #f84753;
  border-color: #f84753 transparent transparent transparent;
}
@media screen and (max-width: 1395px) {
  .swiper-pagination-fraction {
    top: -52px;
  }
}
@media screen and (max-width: 995px) {
  .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    display: none;
  }
}
@media screen and (max-width: 755px) {
  .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 12px;
  }
}
.section-title {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.section-title h2 {
  margin: 0;
}
.section-title h3,
.section-title .h3 {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 14px;
}
.section-title h3:last-child,
.section-title .h3:last-child {
  margin-bottom: 0;
}
.section-title h4,
.section-title .h4 {
  font-weight: bold;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 24px;
}
.section-title h4:last-child,
.section-title .h4:last-child {
  margin-bottom: 0;
}
.section-title p {
  font-size: 18px;
  line-height: 27px;
  max-width: 476px;
}
.section-title p:last-child {
  margin-bottom: 0;
}
.section-title--sm {
  padding-bottom: 24px;
}
.section-title--center {
  text-align: center;
}
.section-title--center p {
  margin-left: auto;
  margin-right: auto;
}
.section-title__with-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.section-title__with-link h3,
.section-title__with-link .h3 {
  display: inline-block;
  margin: 0;
  margin-right: 40px;
}
.section-title__with-link a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 19px;
  color: #a3a3a3;
  transition: color 0.3s;
  margin-bottom: 8px;
}
.section-title__with-link a:hover {
  color: #000;
}
@media screen and (max-width: 1395px) {
  .section-title {
    padding-top: 64px;
    padding-bottom: 24px;
  }
  .section-title--sm {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 755px) {
  .section-title {
    padding-top: 48px;
    padding-bottom: 16px;
  }
  .section-title h3,
.section-title .h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 8px;
  }
  .section-title h3:last-child,
.section-title .h3:last-child {
    margin-bottom: 0;
  }
  .section-title p {
    font-size: 16px;
    line-height: 24px;
    max-width: 476px;
  }
  .section-title p:last-child {
    margin-bottom: 0;
  }
  .section-title--sm {
    padding-bottom: 24px;
  }
  .section-title .section-title__with-link h3,
.section-title .section-title__with-link .h3 {
    margin: 0;
    margin-right: 5px;
  }
  .section-title__with-link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
            align-items: flex-end;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .section-title__with-link h3,
.section-title__with-link .h3 {
    display: inline-block;
    margin: 0;
    margin-right: 5px;
  }
  .section-title__with-link a {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 4px;
  }
}
.item-preview {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.item-preview:not(.item-preview--show-hidden):hover .item-preview__fast-view .btn {
  opacity: 1;
  visibility: visible;
}
.item-preview:not(.item-preview--show-hidden):hover .item-preview__add-to-favorites {
  opacity: 1;
  visibility: visible;
}
.item-preview.added-to-cart .item-preview__labels {
  display: none;
}
.item-preview.added-to-cart .item-preview__cart {
  display: inline-block;
}
.item-preview.added-to-cart .item-preview__top-controls {
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.item-preview.added-to-cart .item-preview__add-to-cart .btn {
  display: none;
}
.item-preview.added-to-cart .item-preview__quantity {
  display: -webkit-flex;
  display: flex;
}
.catalog-item .item-preview:not(.item-preview--lg) .item-preview__price-from {
  display: none;
}
.item-preview__fast-view {
  position: absolute;
  height: 236px;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.item-preview__fast-view .btn {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
}
.item-preview__image {
  height: 236px;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  margin-bottom: 13px;
}
.item-preview__image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  font-family: "object-fit: cover; object-position: center bottom;";
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.item-preview__image .img-fill-preview {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.item-preview__image--cover {
  padding: 0;
}
.item-preview__image--cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.search-page .item-preview__image {
  height: 100%;
}
.item-preview__image.large {
  height: 376px;
}
.item-preview__body {
  padding: 16px 16px;
  padding-top: 0;
  position: relative;
  -webkit-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  z-index: 2;
}
.item-preview__price-link {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #000000;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.item-preview__price-link > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: 10px;
}
.item-preview__price-from {
  font-weight: 500;
  font-size: 14.9489px;
  line-height: 25px;
  text-align: right;
  color: #a3a3a3;
}
.item-preview__price-new {
  color: #f84753;
  display: inline-block;
  margin-right: 9px;
}
.item-preview__price-old {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #333333;
  position: relative;
}
.item-preview__price-old:before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #f84753;
  left: 0px;
  right: 0px;
  top: 50%;
  margin-top: -1px;
}
.item-preview__descr {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
}
.item-preview__sizes {
  font-size: 14px;
  line-height: 24px;
  color: #A3A3A3;
  margin-top: 4px;
}
.item-preview__sizes dl {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.item-preview__sizes dt,
.item-preview__sizes dd {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
  padding: 0;
}
.item-preview__sizes dt {
  color: #a3a3a3;
  margin-right: 4px;
}
.item-preview__sizes dd {
  color: #000;
}
.item-preview__controls {
  position: relative;
  padding-top: 8px;
  font-size: 0;
  line-height: 1;
}
.item-preview__controls.item-preview__controls--mobile {
  display: none;
}
@media screen and (max-width: 755px) {
  .item-preview__controls.item-preview__controls--mobile {
    display: block;
  }
}
.item-preview__controls .item-preview__add-to-cart.item-preview__add-to-cart--module {
  width: 100%;
}
.item-preview__controls .item-preview__add-to-cart.item-preview__add-to-cart--module .btn:not(.btn--outline3) {
  color: #ffffff !important;
  width: 100%;
}
.filter-group.is-empty .filter-group-header__title::before {
  display: none;
}
.item-preview__add-to-cart {
  display: inline-block;
}
.item-preview__add-to-cart .item-preview__quantity {
  display: none;
}
.item-preview__module-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 19px;
}
.item-preview__module-btn .btn:before {
  display: none;
  position: absolute;
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -8px;
  color: #000;
  transition: all 0.3s;
}
.item-preview__module-btn .btn:hover:before {
  color: #fff;
}
.item-preview__module-btn span:nth-child(2) {
  display: none;
}
@media screen and (max-width: 755px) {
  .item-preview__module-btn span:nth-child(1) {
    display: none;
  }
  .item-preview__module-btn span:nth-child(2) {
    display: block;
  }
}
.item-preview__calc-btn {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  color: #656565;
  position: relative;
  transition: color 0.3s;
}
.item-preview__calc-btn:before {
  position: absolute;
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  left: 0;
  top: 0;
}
.item-preview__calc-btn:hover {
  color: #000;
}
.item-preview__add-to-favorites {
  position: relative;
  padding: 0;
  border: 0;
  outline: 0;
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 10px 20px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  text-align: center;
  color: #a3a3a3;
  width: 44px;
  height: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: inline-block;
}
.item-preview__add-to-favorites:before {
  font-size: 19px;
  width: 20px;
  height: 19px;
  line-height: 1;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  margin-top: -8px;
}
.item-preview__add-to-favorites:hover {
  color: #f84753;
}
.is_selected {
  color: #f84753;
  visibility: visible;
  opacity: 1;
}
.item-preview__top-controls {
  position: absolute;
  right: 8px;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 0;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.btn.icon-basket:before {
  width: 21px;
  height: 16px;
  font-size: 16px;
  margin-right: 9px;
}
.item-preview__cart {
  display: inline-block;
  vertical-align: top;
  margin-left: 8px;
  display: none;
}
.item-preview__calc-btn--text {
  width: auto;
  height: auto;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #656565;
  padding: 17px;
  padding-left: 51px;
}
.item-preview__calc-btn--text:before {
  left: 17px;
  top: 13px;
}
.item-preview--lg {
  width: 100%;
  position: relative;
}
.item-preview--lg .swiper-pagination {
  display: none;
}
.item-preview--lg .item-preview__price-new {
  margin-right: 17px;
}
.item-preview--lg .item-preview__price-old {
  color: #a3a3a3;
}
.item-preview--lg .item-preview__descr {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 2px;
}
.item-preview--lg .item-preview__sizes {
  margin-bottom: 8px;
}
.item-preview--lg .item-preview__sizes dt {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
}
.item-preview--lg .item-preview__images-slider + .item-preview__image {
  display: none;
}
.item-preview--lg .item-preview__module-btn {
  margin-right: 8px;
}
.item-preview--lg .item-preview__fast-view {
  height: 372px;
}
.item-preview--lg .item-preview__add-to-favorites {
  z-index: 3;
}
.item-preview__images-slider {
  height: 372px;
  position: relative;
  border-radius: 3.32198px 3.32198px 0px 0px;
  overflow: hidden;
  margin-bottom: 7px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.item-preview__images-slider .swiper-container {
  height: 100%;
}
.item-preview__images-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.item-preview__hover-divs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  z-index: 2;
}
.item-preview__hover-divs div {
  -webkit-flex: 1;
          flex: 1;
}
.item-preview__images-slider .swiper-pagination {
  bottom: 19px;
}
.item-preview__image-slide {
  height: 372px;
  position: relative;
}
.item-preview__image-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.item-preview__image-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: #fff;
  transition: all 0.3s;
}
.item-preview__image-placeholder img {
  width: 145px;
  height: 131px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lazyloaded + .item-preview__image-placeholder {
  opacity: 0;
  visibility: hidden;
}
.item-preview__labels {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  z-index: 2;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
@media screen and (max-width: 755px) {
  .item-preview__labels {
    top: unset;
    bottom: 8px;
  }
}
@media screen and (max-width: 755px) {
  .product-gallery .item-preview__labels {
    bottom: unset;
    top: 0;
  }
}
.item-preview__label {
  font-weight: bold;
  font-size: 11.6269px;
  line-height: 25px;
  padding: 0 13px;
  margin-bottom: 8px;
  border-radius: 0px 4px 4px 0px;
  color: #fff;
}
.item-preview__label__green {
  background: #9cd71f;
}
.item-preview__label__red {
  background: #d71f1f;
}
.item-preview__label__blue {
  background: #2d9cdb;
}
@media screen and (max-width: 755px) {
  .item-preview__label {
    font-size: 8.5px;
  }
}
.item-preview__hidden {
  padding: 8px 16px;
  padding-bottom: 21px;
  border-top: 1px solid #eeeef0;
  transition: all 0.3s;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  box-shadow: 0px 15px 70px rgba(88, 88, 88, 0.35);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.item-preview__cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.item-preview__col {
  margin-bottom: 8px;
  width: 161px;
  padding-right: 20px;
}
.item-preview__col--color {
  width: 100%;
  padding-right: 0;
}
.item-preview__col--color .dropdown__item {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.item-preview__info p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  margin: 0;
  margin-top: -4px;
}
.item-preview__info .dropdown__item {
  border: 1px solid #EEEEF0;
  border-radius: 8px;
}
.item-preview__info .dropdown__item:hover {
  border-color: #a3a3a3;
}
.item-preview__info .dropdown__item::before {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  margin-top: -6px;
}
.item-preview__info .dropdown__item .item-preview__color {
  width: 16px;
  height: 16px;
}
.item-preview__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #a3a3a3;
  margin-bottom: 4px;
}
.item-preview__color {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.item-preview__small-colors {
  font-size: 0;
  line-height: 1;
  padding-bottom: 31px;
  display: none;
}
.item-preview__small-colors span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1395px) {
  .item-preview__image {
    height: 205px;
    margin-bottom: 8px;
  }
  .item-preview__fast-view {
    height: 205px;
  }
  .item-preview__add-to-favorites {
    opacity: 1;
    visibility: visible;
  }
  .item-preview__module-btn {
    margin-right: 10px;
  }
  .item-preview__module-btn .btn {
    font-size: 12px;
  }
  .item-preview .item-preview__sizes dt.single {
    display: block;
  }
  .item-preview .item-preview__sizes dd {
    color: #a3a3a3;
  }
  .item-preview .item-preview__sizes dd.hidden {
    display: none;
  }
  .item-preview--lg .item-preview__fast-view {
    height: 255px;
  }
  .item-preview--lg .item-preview__price-link {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .item-preview--lg .item-preview__module-btn {
    margin-right: 18px;
  }
  .item-preview__images-slider {
    height: 255px;
  }
  .item-preview__image-slide {
    height: 255px;
  }
  .item-preview__calc-btn--text {
    font-size: 0;
    padding: 0;
    width: 26px;
    height: 26px;
  }
  .item-preview__calc-btn--text:before {
    left: 0;
    top: 0;
  }
  .item-preview--lg .swiper-pagination {
    display: block;
  }
  .item-preview__hover-divs {
    display: none;
  }
  .item-preview__small-colors {
    display: block;
  }
}
@media screen and (max-width: 995px) {
  .catalog-items--modules .catalog-item .item-preview__add-to-cart .js-item-add-to-cart {
    display: none;
  }
  .catalog-items--modules .catalog-item .item-preview__add-to-cart .js-popup-open {
    display: block;
  }
}
@media screen and (min-width: 756px) {
  .item-preview--show-hidden {
    transition: box-shadow 0.3s;
    position: relative;
    overflow: visible;
  }
  .item-preview--show-hidden:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: #fff;
    transition: all 0.3s;
    opacity: 0;
  }
  .item-preview--show-hidden:hover {
    z-index: 4;
  }
  .item-preview--show-hidden.is-hover {
    box-shadow: 0px 15px 70px rgba(88, 88, 88, 0.35);
    z-index: 4;
  }
  .item-preview--show-hidden.is-hover .item-preview__add-to-cart .btn {
    border-color: #f84753;
    color: #f84753;
    transition: border-color 0.3s, color 0.3s;
  }
  .item-preview--show-hidden.is-hover .item-preview__add-to-cart .btn:hover {
    color: #000;
    border-color: #000;
  }
  .item-preview--show-hidden.is-hover .swiper-pagination {
    display: block;
  }
  .item-preview--show-hidden.is-hover .item-preview__fast-view .btn {
    opacity: 1;
    visibility: visible;
  }
  .item-preview--show-hidden.is-hover .item-preview__add-to-favorites {
    opacity: 1;
    visibility: visible;
  }
  .item-preview--show-hidden.is-hover:before {
    opacity: 1;
  }
  .item-preview--show-hidden.is-hover .item-preview__hidden {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 755px) {
  .item-preview__image {
    height: 129px;
  }
  .item-preview__fast-view {
    display: none;
  }
  .item-preview__body {
    padding: 8px;
    padding-top: 0;
  }
  .item-preview__body > div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: stretch;
            align-items: stretch;
    height: 100%;
  }
  .item-preview__body .item-preview__controls--mobile {
    margin-top: auto;
  }
  .item-preview__price-link {
    font-size: 14px;
    line-height: 17px;
  }
  .item-preview__price-old {
    font-size: 14px;
    line-height: 17px;
  }
  .item-preview__price-from {
    font-size: 12px;
    line-height: 16px;
  }
  .item-preview__descr {
    font-size: 12px;
    line-height: 16px;
  }
  .item-preview__controls {
    text-align: center;
  }
  .item-preview__controls .btn {
    width: 100%;
    display: block;
    font-size: 11px;
  }
  .item-preview__controls .quantity {
    margin: 2px auto;
    margin-bottom: 1px;
  }
  .item-preview__module-btn {
    margin-right: 0;
    text-align: left;
  }
  .item-preview__module-btn .btn {
    padding: 7px 5px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 14px;
  }
  .item-preview__top-controls {
    top: 2px;
    right: 2px;
    left: 2px;
  }
  .item-preview__images-slider {
    height: 209px;
  }
  .item-preview__image-slide {
    height: 209px;
  }
  .item-preview--lg .item-preview__module-btn .btn {
    margin-bottom: 0;
    padding: 13px 17px;
    font-size: 12px;
    line-height: 15px;
  }
  .item-preview--lg .item-preview__controls {
    text-align: left;
  }
  .item-preview--lg .item-preview__body {
    padding: 16px;
    padding-top: 0;
  }
  .item-preview--lg .item-preview__descr {
    font-weight: normal;
    font-size: 18px;
    line-height: 20px;
  }
  .item-preview--lg .item-preview__price {
    font-size: 20px;
    line-height: 25px;
  }
  .item-preview--lg .item-preview__labels {
    display: -webkit-flex;
    display: flex;
  }
  .item-preview__add-to-cart {
    display: block;
  }
  .item-preview__add-to-cart .btn {
    width: 100%;
    font-size: 12px;
    line-height: 15px;
    color: #a3a3a3;
    padding: 11px 16px;
  }
  .item-preview__add-to-cart .btn:hover {
    color: #000;
  }
  .item-preview__cart {
    font-size: 0;
    min-width: 0;
    width: 44px;
    height: 44px;
    padding: 5px 0;
    border-radius: 50%;
    line-height: 44px;
  }
  .item-preview__cart.btn.icon-basket:before {
    margin: 0;
  }
  .item-preview__calc-btn {
    display: none;
  }
  .item-preview__hover-divs {
    display: none;
  }
  .item-preview__small-colors {
    padding-bottom: 4px;
  }
}
.mobile-search {
  background-color: #fff;
  display: none;
  padding-top: 8px;
  padding-bottom: 8px;
}
.mobile-search--gray {
  background: #f5f5f5;
}
.mobile-search-form {
  position: relative;
  margin-right: 25px;
  width: 100%;
}
.mobile-search-form .form-field-wrap {
  background: #eeeef0;
  border: 0;
}
.mobile-search-form .form-field-wrap:before {
  position: absolute;
  font-size: 16px;
  color: #a3a3a3;
  line-height: 16px;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 16px;
  top: 14px;
  text-align: center;
  transition: color 0.3s;
}
.mobile-search-form .form-field-wrap.input--focus .form-field-label p {
  -webkit-transform: scale(0.7) translateY(-9px) translateX(0);
          transform: scale(0.7) translateY(-9px) translateX(0);
}
.mobile-search-form .form-field {
  height: 44px;
  padding-left: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.mobile-search-form .form-field-label {
  padding-left: 40px;
  line-height: 44px;
  height: 44px;
}
.mobile-search-form.is-active .mobile-search-form-results {
  opacity: 1;
  visibility: visible;
}
.mobile-search-form .ps__rail-y {
  right: 10px;
}
@media screen and (max-width: 755px) {
  .mobile-search {
    display: block;
  }
  .mobile-search-form {
    display: block;
  }
}
.breadcrumbs {
  padding-top: 24px;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}
.breadcrumbs:last-child {
  margin-bottom: 20px;
}
.breadcrumbs li {
  margin-left: 12px;
  margin-right: 8px;
  position: relative;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  white-space: nowrap;
  margin-bottom: 4px;
}
.breadcrumbs li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  left: -12px;
  top: 50%;
  margin-top: -3px;
}
.breadcrumbs li:first-child {
  margin-left: 0;
}
.breadcrumbs li:first-child:before {
  display: none;
}
.breadcrumbs li > span {
  display: block;
}
.breadcrumbs li a {
  transition: color 0.3s;
}
.breadcrumbs li a:hover {
  color: #f84753;
}
.breadcrumbs__home {
  width: 14px;
  height: 16px;
  display: block;
}
.breadcrumbs__home:before {
  width: 14px;
  height: 16px;
}
.breadcrumbs__home span {
  font-size: 0;
}
.breadcrumbs--black li {
  color: #000;
}
.breadcrumbs--black li:before {
  background-color: #a3a3a3;
}
.breadcrumbs--black li a {
  color: #000;
  transition: color 0.3s;
}
.breadcrumbs--black li a:hover {
  color: #f84753;
}
.breadcrumbs--black li > span {
  color: #a3a3a3;
  cursor: default;
}
.pagination-container {
  text-align: center;
  position: relative;
}
.pagination-container.is-loading .lds-ring {
  display: block;
}
.pagination-container.is-loading .pagination {
  opacity: 0;
  pointer-events: none;
}
.pagination-container .lds-ring div {
  border-color: #F84753 transparent transparent transparent;
}
.pagination {
  padding-top: 16px;
  padding-bottom: 32px;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.pagination li {
  margin: 0 4px;
}
.pagination li:first-child {
  margin-right: 24px;
  margin-left: 0;
}
.pagination li:last-child {
  margin-left: 24px;
  margin-right: 0;
}
.pagination__next,
.pagination__prev {
  font-weight: 500;
  font-size: 18px;
  line-height: 19px;
  text-decoration: none;
  transition: color 0.3s;
}
.pagination__next:hover,
.pagination__prev:hover {
  color: #f84753;
}
.pagination__num {
  display: block;
  width: 38px;
  height: 38px;
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  border-radius: 50%;
  color: #000000;
  white-space: nowrap;
  transition: all 0.3s;
  text-decoration: none;
}
.pagination__num:hover {
  background: #eeeef0;
}
.pagination__num.is-active {
  background-color: #f84753;
  color: #fff;
}
.page-header__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  margin: 0;
  margin-bottom: 24px;
}
.js-open-coupon {
  display: none;
}
@media screen and (max-width: 755px) {
  .page-header--hide-mobile {
    display: none;
  }
  .pagination-container {
    padding-top: 24px;
  }
  .breadcrumbs {
    padding-top: 16px;
  }
  .breadcrumbs:last-child {
    margin-bottom: 12px;
  }
  .pagination {
    display: none;
  }
  .page-header__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 16px;
  }
  .breadcrumbs__hide-mobile {
    display: none;
  }
}
.size-value {
  color: black !important;
}
.catalog-items--mobile-modules .js-popup-open {
  display: none;
}
@media screen and (max-width: 995px) {
  .catalog-items--mobile-modules .js-popup-open {
    display: block;
  }
  .catalog-items--mobile-modules .js-item-add-to-cart {
    display: none;
  }
}
.popup-calc__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 48px;
}
.popup-calc__img-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  padding: 32px 24px;
  position: relative;
  color: #fff;
  min-height: 357px;
  background: white;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  z-index: 0;
}
.popup-calc__img-title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(180deg, #000000 -5.32%, rgba(255, 255, 255, 0) 60.36%);
}
@media screen and (max-width: 755px) {
  .popup-calc__img-title {
    min-height: 353px;
    font-size: 26px;
    line-height: 32px;
    padding: 24px 16px;
    display: -webkit-flex;
    display: flex;
    margin: 0 -16px;
    margin-top: -24px;
    margin-bottom: 40px;
    -webkit-align-items: flex-end;
            align-items: flex-end;
    border-radius: 0;
  }
}
.is-angle_shaped:not(.is-angle_reverse) .calc__scheme .calc__scheme-control--right,
.is-angle_shaped:not(.is-angle_reverse) .calc__scheme .calc__scheme-item--right_01,
.is-angle_shaped:not(.is-angle_reverse) .calc__scheme .calc__scheme-item--right_02,
.is-angle_shaped:not(.is-angle_reverse) .calc__scheme .calc__scheme-item--right_03,
.is-angle_shaped:not(.is-angle_reverse) .calc__scheme .calc__scheme-item--right_04,
.is-angle_shaped:not(.is-angle_reverse) .calc__scheme:before,
.is-straight_shaped .calc__scheme .calc__scheme-control--left,
.is-straight_shaped .calc__scheme .calc__scheme-control--right,
.is-straight_shaped .calc__scheme .calc__scheme-item--left_01,
.is-straight_shaped .calc__scheme .calc__scheme-item--left_02,
.is-straight_shaped .calc__scheme .calc__scheme-item--left_03,
.is-straight_shaped .calc__scheme .calc__scheme-item--left_04,
.is-straight_shaped .calc__scheme .calc__scheme-item--right_01,
.is-straight_shaped .calc__scheme .calc__scheme-item--right_02,
.is-straight_shaped .calc__scheme .calc__scheme-item--right_03,
.is-straight_shaped .calc__scheme .calc__scheme-item--right_04,
.is-straight_shaped .calc__scheme:after,
.is-straight_shaped .calc__scheme:before {
  display: none;
}
.is-angle_shaped:not(.is-angle_reverse) .calc__check--angle {
  opacity: 1;
  visibility: visible;
}
.is-angle_reverse .calc__scheme .calc__scheme-control--right,
.is-angle_reverse .calc__scheme .calc__scheme-item--right_01,
.is-angle_reverse .calc__scheme .calc__scheme-item--right_02,
.is-angle_reverse .calc__scheme .calc__scheme-item--right_03,
.is-angle_reverse .calc__scheme .calc__scheme-item--right_04,
.is-angle_reverse .calc__scheme:after {
  display: none;
}
.is-angle_reverse .calc__scheme .calc__scheme-control--left {
  right: auto;
  left: 100%;
  padding: 0 0 0 20px;
}
@media (max-width: 756px) {
  .is-angle_reverse .calc__scheme .calc__scheme-control--left .calc__scheme-field {
    left: auto;
    right: 100%;
  }
}
.is-angle_reverse .calc__scheme .calc__scheme-control--left .calc__scheme-range {
  right: auto;
  left: 0;
}
.is-angle_reverse .calc__scheme .calc__scheme-item--left_01,
.is-angle_reverse .calc__scheme .calc__scheme-item--left_02,
.is-angle_reverse .calc__scheme .calc__scheme-item--left_03,
.is-angle_reverse .calc__scheme .calc__scheme-item--left_04 {
  left: auto;
  right: 20px;
}
.is-angle_reverse .calc__check--angle {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 756px) {
  .is-angle_reverse .calc__scheme-item--left_01 .calc__scheme-dropdown,
.is-angle_reverse .calc__scheme-item--left_02 .calc__scheme-dropdown,
.is-angle_reverse .calc__scheme-item--left_03 .calc__scheme-dropdown,
.is-angle_reverse .calc__scheme-item--left_04 .calc__scheme-dropdown {
    left: auto;
    right: 0;
  }
  .is-angle_reverse .calc__scheme-item--left_01 .calc__scheme-dropdown > li,
.is-angle_reverse .calc__scheme-item--left_02 .calc__scheme-dropdown > li,
.is-angle_reverse .calc__scheme-item--left_03 .calc__scheme-dropdown > li,
.is-angle_reverse .calc__scheme-item--left_04 .calc__scheme-dropdown > li {
    float: right;
    margin: 0 0 5px 5px;
  }
}
.calc__scheme-item.ui-droppable-hover {
  opacity: 0.5;
}
.calc__scheme-btn.is-active .icon-calc-add:after {
  opacity: 1;
}
.calc__scheme-btn.is-active.is-open {
  background-color: rgba(234, 57, 56, 0.2);
}
.calc__scheme-dropdown.is-open:not(.is-active) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.calc__scheme-dropdown > li.is-hide {
  display: none;
}
.calc__scheme-delete.is-open.is-active {
  opacity: 1;
  visibility: visible;
}
.calc,
.calc * {
  box-sizing: border-box;
}
.calc--success {
  max-width: 470px;
  padding: 35px 80px 35px 30px;
}
.calc__container {
  max-width: 852px;
  padding: 0 36px;
  margin: 0 auto;
}
.calc__body {
  padding-top: 48px;
  padding-bottom: 40px;
}
.calc__foot {
  background: #F2F2F5;
  padding: 48px 0;
}
.calc__heading {
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #f84753;
  margin: 0 0 16px;
}
.calc__inform {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #6f6f6f;
  margin: 0;
}
.calc__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 16px;
}
.calc__text span {
  display: block;
  color: #a3a3a3;
  font-weight: 400;
}
.calc__control {
  position: relative;
  display: -webkit-flex;
  display: flex;
  margin: 0 0 32px;
}
.calc__caption {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  max-width: 592px;
  margin-bottom: 101px;
}
.calc__check {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.calc__check {
  margin: 0 12px 0 0;
  position: relative;
  color: #f84753;
  display: block;
}
.calc__check a {
  color: #f84753;
  text-decoration: underline;
}
.calc__check a:hover {
  color: #f84753;
  text-decoration: none;
}
.calc__check--angle {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.calc__check--angle.is-active {
  opacity: 1;
  visibility: visible;
}
.calc__check--angle .calc__check-input:checked ~ .calc__check-btn {
  border-color: #f84753;
  background: rgba(234, 57, 56, 0.2);
  color: #f84753;
}
.calc__check--angle .calc__check-input:checked ~ .calc__check-btn:hover {
  background: #f84753;
  color: #fff;
  border-color: #f84753;
}
.calc__form-field {
  margin-bottom: 24px;
}
@media (max-width: 756px) {
  .calc__check--desktop {
    display: none;
  }
}
@media (min-width: 757px) {
  .calc__check--mobile {
    display: none;
  }
}
.calc__check-input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.calc__check-input:checked ~ .calc__check-btn {
  background: #f84753;
  border-color: #f84753;
  color: #fff;
}
.calc__check-input:checked ~ .calc__check-checkbox {
  background: #f84753;
}
.calc__check-input:checked ~ .calc__check-checkbox svg {
  opacity: 1;
}
.calc__check-checkbox {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #f84753;
  background: #fff;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 8px 0 0;
}
.calc__check-checkbox svg {
  width: 14px;
  height: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -7px;
  opacity: 0;
  transition: 0.25s;
}
.calc__check-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid #f84753;
  border-radius: 2px;
  transition: 0.25s;
  padding: 10px 12px;
  color: #f84753;
  white-space: nowrap;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
}
.calc__check-btn:hover {
  background: #f84753;
  color: #fff;
  border-color: #f84753;
}
.calc__check-icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.calc__check-icon svg {
  display: block;
}
@media (max-width: 756px) {
  .calc__check-icon {
    margin: 0;
  }
}
@media (max-width: 756px) {
  .calc__check-text {
    display: none;
  }
}
.calc__wrapper {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
  margin: 0 0 20px;
  padding: 0 145px;
}
@media (max-width: 756px) {
  .calc__wrapper {
    margin: 0 0 60px;
    padding: 0;
  }
}
.calc__scheme {
  position: relative;
  z-index: 100;
  width: 39em;
  height: 8.4em;
  background: #eee;
  margin: 0 auto 24em;
  font-size: 10px;
}
.calc__scheme:after,
.calc__scheme:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  width: 8.4em;
  height: 24em;
  background: #eee;
  z-index: -1;
}
.calc__scheme:after {
  left: 0;
}
.calc__scheme:before {
  right: 0;
}
@media (max-width: 480px) {
  .calc__scheme {
    font-size: 7px;
  }
}
.calc__scheme-control {
  position: absolute;
}
.calc__scheme-control--top {
  left: 0;
  right: 0;
  bottom: 100%;
  padding: 0 0 20px;
}
.calc__scheme-control--top .calc__scheme-range {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  width: auto;
}
.calc__scheme-control--left {
  right: 100%;
  top: 0;
  height: 32.4em;
  padding: 0 2em 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.calc__scheme-control--left .calc__scheme-range {
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
}
.calc__scheme-control--right {
  left: 100%;
  top: 0;
  height: 32.4em;
  padding: 0 0 0 2em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.calc__scheme-control--right .calc__scheme-range {
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 2px;
}
@media (max-width: 756px) {
  .calc__scheme-control--left .calc__scheme-field {
    position: absolute;
    top: 100%;
    left: 100%;
    margin: 10px 0 0;
    width: 8.4em;
    min-width: 65px;
  }
  .calc__scheme-control--right .calc__scheme-field {
    position: absolute;
    top: 100%;
    right: 100%;
    margin: 10px 0 0;
    width: 8.4em;
    min-width: 65px;
  }
}
.calc__scheme-range {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: #f9c4c3;
}
.calc__scheme-range:after {
  left: -2px;
}
.calc__scheme-range:after,
.calc__scheme-range:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 6px;
  height: 10px;
  background: url(../img/icon-calc-range-back.svg) 0 0 no-repeat;
  background-size: contain;
  margin: -5px 0 0;
}
.calc__scheme-range:before {
  right: -2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.calc__scheme-range .ui-slider-handle {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f84753;
  margin: -12px 0 0 -12px;
  z-index: 1000;
  cursor: pointer;
}
.calc__scheme-range .ui-slider-range {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #f84753;
  z-index: 10;
}
.calc__scheme-range .ui-slider-range:after {
  left: -2px;
}
.calc__scheme-range .ui-slider-range:after,
.calc__scheme-range .ui-slider-range:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 6px;
  height: 10px;
  background: url(../img/icon-calc-range.svg) 0 0 no-repeat;
  background-size: contain;
  margin: -5px 0 0;
}
.calc__scheme-range .ui-slider-range:before {
  right: -2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.calc__scheme-range--vertical {
  width: 2px;
  height: auto;
  background: #f84753;
}
.calc__scheme-range--vertical:after {
  top: -2px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.calc__scheme-range--vertical:after,
.calc__scheme-range--vertical:before {
  left: 50%;
  right: auto;
  margin: 0 0 0 -3px;
  background-image: url(../img/icon-calc-range.svg);
}
.calc__scheme-range--vertical:before {
  top: auto;
  bottom: -2px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.calc__scheme-range--vertical .ui-slider-handle {
  top: auto;
  margin: 0 0 -12px -11px;
}
.calc__scheme-range--vertical .ui-slider-range {
  top: auto;
  background: #f9c4c3;
}
.calc__scheme-range--vertical .ui-slider-range:after {
  top: -2px;
  left: 50%;
  right: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin: 0 0 0 -3px;
  background-image: url(../img/icon-calc-range-back.svg);
}
.calc__scheme-range--vertical .ui-slider-range:before {
  top: auto;
  bottom: -2px;
  left: 50%;
  right: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin: 0 0 0 -3px;
  background-image: url(../img/icon-calc-range-back.svg);
}
.calc__scheme-field {
  display: block;
  width: 72px;
  margin: 0 auto;
  position: relative;
}
.calc__scheme-field-input {
  font: 400 16px/20px PT Sans, sans-serif;
  border: 2px solid #ccc;
  width: 100%;
  padding: 4px 27px 4px 5px;
  text-align: center;
  border-radius: 2px;
  display: block;
  margin: 0;
}
.calc__scheme-field-input:focus {
  border-color: #f84753;
}
.calc__scheme-field-label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin: 0;
  color: rgba(0, 0, 0, 0.2);
  padding: 0 7px;
  pointer-events: none;
}
.calc__scheme-grid {
  position: relative;
  width: 100%;
  height: 20em;
  display: inline-block;
  vertical-align: top;
}
.calc__scheme-item {
  position: absolute;
  width: 4.4em;
  height: 4.4em;
}
.calc__scheme-item--01 {
  top: 2em;
  left: 2em;
}
.calc__scheme-item--02 {
  top: 2em;
  left: 8.2em;
}
.calc__scheme-item--03 {
  top: 2em;
  left: 14.2em;
}
.calc__scheme-item--04 {
  top: 2em;
  right: 14.2em;
}
.calc__scheme-item--05 {
  top: 2em;
  right: 8.2em;
}
.calc__scheme-item--06 {
  top: 2em;
  right: 2em;
}
@media (max-width: 756px) {
  .calc__scheme-item--06 .calc__scheme-dropdown {
    left: auto;
    right: 0;
  }
  .calc__scheme-item--06 .calc__scheme-dropdown > li {
    float: right;
    margin: 0 0 5px 5px;
  }
}
.calc__scheme-item--left_01 {
  top: 8.2em;
  left: 2em;
}
.calc__scheme-item--left_02 {
  top: 14.2em;
  left: 2em;
}
.calc__scheme-item--left_03 {
  top: 20.2em;
  left: 2em;
}
.calc__scheme-item--left_04 {
  top: 26.2em;
  left: 2em;
}
.calc__scheme-item--right_01 {
  top: 8.2em;
  right: 2em;
}
@media (max-width: 756px) {
  .calc__scheme-item--right_01 .calc__scheme-dropdown {
    left: auto;
    right: 0;
  }
  .calc__scheme-item--right_01 .calc__scheme-dropdown > li {
    float: right;
    margin: 0 0 5px 5px;
  }
}
.calc__scheme-item--right_02 {
  top: 14.2em;
  right: 2em;
}
@media (max-width: 756px) {
  .calc__scheme-item--right_02 .calc__scheme-dropdown {
    left: auto;
    right: 0;
  }
  .calc__scheme-item--right_02 .calc__scheme-dropdown > li {
    float: right;
    margin: 0 0 5px 5px;
  }
}
.calc__scheme-item--right_03 {
  top: 20.2em;
  right: 2em;
}
@media (max-width: 756px) {
  .calc__scheme-item--right_03 .calc__scheme-dropdown {
    left: auto;
    right: 0;
  }
  .calc__scheme-item--right_03 .calc__scheme-dropdown > li {
    float: right;
    margin: 0 0 5px 5px;
  }
}
.calc__scheme-item--right_04 {
  top: 26.2em;
  right: 2em;
}
@media (max-width: 756px) {
  .calc__scheme-item--right_04 .calc__scheme-dropdown {
    left: auto;
    right: 0;
  }
  .calc__scheme-item--right_04 .calc__scheme-dropdown > li {
    float: right;
    margin: 0 0 5px 5px;
  }
}
.is-droppable .calc__scheme-item:not(.ui-state-highlight):not(.ui-draggable-dragging) {
  opacity: 0.3;
}
.is-droppable .calc__scheme-item:not(.ui-state-highlight):not(.ui-draggable-dragging) .icon-calc-add:after {
  opacity: 1;
}
.calc__scheme-item.ui-state-highlight {
  border: 0;
  background: none;
}
.ui-draggable-dragging .calc__scheme-btn.is-active:after {
  visibility: visible;
}
.is-grabbing .calc__scheme-btn.is-active.is-open {
  z-index: 1100;
}
.is-grabbing .calc__scheme-btn.is-active {
  cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
  z-index: 1000;
}
.is-grabbing .calc__scheme-btn.is-active:after {
  visibility: visible;
}
.calc__scheme-btn {
  background: #000;
  position: relative;
  padding: 0;
  background: none;
  border: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: color 0.25s;
  color: #ccc;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: all;
  -ms-user-select: all;
  user-select: all;
}
.calc__scheme-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
  cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.calc__scheme-btn.is-active {
  cursor: url("https://www.google.com/intl/en_ALL/mapfiles/openhand.cur"), all-scroll;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.calc__scheme-btn.is-active:active {
  cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.calc__scheme-btn [class^=icon-] {
  pointer-events: none;
}
.calc__scheme-btn [class^=icon-],
.calc__scheme-btn [class^=icon-]:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.25s;
  opacity: 0;
}
.calc__scheme-btn [class^=icon-]:after {
  content: "";
}
.calc__scheme-btn:hover .icon-calc-add:after {
  opacity: 1;
}
.calc__scheme-btn .icon-calc-add {
  opacity: 1;
  background-image: url(../img/icon-calc-add.svg);
}
.calc__scheme-btn .icon-calc-add:after {
  background-image: url(../img/icon-calc-add-hover.svg);
}
.calc__scheme-btn .icon-calc-washing {
  background-image: url(../img/icon-calc-washing.svg);
}
.calc__scheme-btn .icon-calc-plate {
  background-image: url(../img/icon-calc-plate.svg);
}
.calc__scheme-btn .icon-calc-dishwasher {
  background-image: url(../img/icon-calc-dishwasher.svg);
}
.calc__scheme-btn .icon-calc-fridge {
  background-image: url(../img/icon-calc-fridge.svg);
}
.calc__scheme-btn.is-washing .icon-calc-add {
  opacity: 0;
}
.calc__scheme-btn.is-washing .icon-calc-washing {
  opacity: 1;
}
.calc__scheme-btn.is-plate .icon-calc-add {
  opacity: 0;
}
.calc__scheme-btn.is-plate .icon-calc-plate {
  opacity: 1;
}
.calc__scheme-btn.is-dishwasher .icon-calc-add {
  opacity: 0;
}
.calc__scheme-btn.is-dishwasher .icon-calc-dishwasher {
  opacity: 1;
}
.calc__scheme-btn.is-fridge .icon-calc-add {
  opacity: 0;
}
.calc__scheme-btn.is-fridge .icon-calc-fridge {
  opacity: 1;
}
.calc__scheme-dropdown {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 10px 0 0;
  width: 20em;
  overflow: hidden;
  z-index: 2000;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.calc__scheme-dropdown > li {
  float: left;
  margin: 0 5px 5px 0;
}
.calc__scheme-add,
.calc__scheme-delete {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  padding: 4px 8px;
  transition: 0.25s;
  background: #f84753;
  color: #fff;
  cursor: pointer;
  border: none;
  text-align: left;
  border-radius: 2px;
  white-space: nowrap;
}
.calc__scheme-add:hover,
.calc__scheme-delete:hover {
  background: #f84753;
}
.calc__scheme-delete {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 10px 0 0;
  white-space: nowrap;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}
.calc__scheme-delete:after {
  content: "+";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
}
.calc__group {
  padding: 12px 0 0;
}
.calc__group .row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -12px 20px;
}
.calc__group .row > .col {
  padding: 0 12px 20px;
  -webkit-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
  max-width: 33.3333%;
}
@media (max-width: 756px) {
  .calc__group .row > .col {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.calc__label {
  display: block;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 8px;
}
.calc__input {
  font: 400 16px/26px PT Sans, sans-serif;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 12px;
  display: block;
  width: 100%;
  color: #000;
}
.calc__input::-webkit-input-placeholder {
  color: #ccc;
}
.calc__input:-ms-input-placeholder {
  color: #ccc;
}
.calc__input::placeholder {
  color: #ccc;
}
.is-error .calc__input {
  border-color: red;
}
.calc__validate {
  display: block;
  padding: 5px 0 0;
  font-size: 12px;
  line-height: 20px;
  color: red;
  margin: 0 0 -10px;
}
.calc__descr {
  max-width: 530px;
  padding-bottom: 8px;
}
.calc__contact-inputs {
  max-width: 323px;
  padding-bottom: 8px;
}
.calc__action .btn {
  margin-bottom: 16px;
  min-width: 224px;
}
.calc__action p {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #a3a3a3;
  margin: 0;
}
.calc__action p a {
  color: #2F80ED;
  transition: all 0.3s;
}
.calc__action p a:hover {
  color: #f84753;
}
@media (max-width: 756px) {
  .calc__action {
    display: block;
  }
  .calc__action .calc__btn {
    width: 100%;
  }
}
.calc__btn {
  display: inline-block;
  vertical-align: top;
  border: none;
  border-radius: 2px;
  font: 400 16px/28px PT Sans, sans-serif;
  padding: 10px 22px;
  cursor: pointer;
  transition: 0.25s;
  background: #f84753;
  color: #fff;
  position: relative;
}
.calc__btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: 2px solid transparent;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: animLoading 0.4s linear infinite;
  animation: animLoading 0.4s linear infinite;
  opacity: 0;
}
.calc__btn:hover {
  background: #f84753;
  color: #fff;
}
.calc__btn.is-loading {
  color: transparent;
}
.calc__btn.is-loading:after {
  opacity: 1;
}
@-webkit-keyframes animLoading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes animLoading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.calc__upload {
  padding-bottom: 32px;
}
.calc__upload-label {
  display: block;
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
  letter-spacing: 0.08px;
  margin: 0 0 20px;
}
.calc__upload-group {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 8px;
  position: relative;
}
.calc__upload-group:last-child {
  margin: 0;
}
.calc__upload-size {
  position: absolute;
  left: 100%;
  margin-left: 24px;
  top: 50%;
  margin-top: -14px;
  font-size: 14px;
  line-height: 27px;
  color: #a3a3a3;
  font-weight: 400;
  white-space: nowrap;
}
.calc__file {
  display: inline-block;
  vertical-align: top;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 11px 16px;
  padding-top: 13px;
  padding-left: 45px;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #a3a3a3;
  transition: all 0.3s;
}
.calc__file:hover {
  color: #000;
}
.calc__file.is-file-added {
  border-color: #f84753;
  color: #f84753;
  padding-right: 40px;
}
.calc__file.is-file-added .calc__upload-size {
  display: none;
}
.calc__file.is-file-added .calc__file-delete {
  display: block;
}
.calc__file.is-file-added .calc__file-text {
  max-width: 91px;
}
.calc__file.is-file-added:before {
  color: #f84753;
}
.calc__file:before {
  position: absolute;
  top: 13px;
  left: 18px;
  width: 17px;
  height: 14px;
  font-size: 14px;
}
.calc__file-input {
  position: absolute;
  top: 0;
  left: -9999px;
  opacity: 0;
}
.calc__file-text {
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
}
.calc__file-text span:first-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.calc__file-text span:last-child {
  text-transform: uppercase;
}
.calc__file-delete {
  background: #eeeef0;
  border-radius: 40px;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 12px;
  display: none;
  transition: color 0.3s;
  color: #979797;
}
.calc__file-delete:before {
  font-size: 11px;
  width: 6px;
  height: 6px;
  line-height: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -2px;
  text-align: center;
}
.calc__file-delete:hover {
  color: #000;
}
.calc__file-name {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #919191;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  margin: 0 10px 0 0;
  text-overflow: ellipsis;
}
@media screen and (max-width: 995px) {
  .calc__body {
    padding-top: 58px;
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 755px) {
  .calc__container {
    padding: 0 16px;
  }
  .calc__body {
    padding-top: 24px;
    padding-bottom: 25px;
  }
  .calc__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  .calc__control {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .calc__caption {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 84px;
    text-align: center;
  }
  .popup-calc__title {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 56px;
    text-align: center;
  }
  .calc__block-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 8px;
    text-align: left;
  }
  .calc__block-title span {
    font-weight: 400;
  }
  .calc__action {
    padding-top: 16px;
  }
  .calc__action .btn {
    width: 100%;
    display: block;
  }
  .calc__action p {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
  }
}
.header {
  position: relative;
  background-color: #fff;
  height: 195px;
  z-index: 100;
}
.header.fixed .mobile-menu {
  display: -webkit-flex;
  display: flex;
}
.header.fixed .header-middle__logo {
  margin-right: 40px;
}
.header.fixed .header-menu-toggle--lg {
  display: inline-block;
}
.header.fixed .header-middle {
  top: 0;
  position: fixed;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.header.fixed .header-bottom {
  opacity: 0;
  visibility: hidden;
}
.jivoSite {
  bottom: 50px !important;
}
.header-middle__logo img {
  max-width: 200px;
}
body.mobile-header-opened .header {
  z-index: 101;
}
.header-top {
  border-bottom: 1px solid #eeeef0;
  padding: 5px 0;
}
.header-top__container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.header-top__links {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.header-top__links li {
  margin-right: 32px;
}
.header-top__links li:last-child {
  margin-right: 0;
}
.header-top__link.active {
  font-weight: bold;
  color: black;
}
.header-top__link {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #666666;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}
.header-top__link:hover {
  color: #000;
  border-color: #000;
}
.header-top__callback-link {
  color: #f84753;
  font-weight: bold;
  border-bottom: 2px dotted #f84753;
  line-height: 1;
}
.header-top__callback-link:hover {
  color: #fa7a83;
  border-bottom-color: #fa7a83;
}
.header-top__email-link {
  color: #000;
  font-weight: bold;
}
.header-top__email-link:hover {
  color: #f84753;
}
.city-select {
  position: relative;
}
.city-select.is-show .city-select__selected:before {
  -webkit-transform: rotate(-135deg) translateY(-2px) translateX(-1px);
          transform: rotate(-135deg) translateY(-2px) translateX(-1px);
}
.city-select.is-show .city-select__selected:after {
  opacity: 1;
  visibility: visible;
}
.city-select__check,
.city-select__cities {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 5px;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 0px 4px 4px 4px;
  z-index: 10;
  cursor: default;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.city-select__check > p,
.city-select__cities > p {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 16px;
}
.city-select__check.is-show,
.city-select__cities.is-show {
  opacity: 1;
  visibility: visible;
}
.city-select__cities {
  width: 353px;
}
.city-select__cities > p {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
}
.city-select__field {
  margin-bottom: 13px;
}
.city-select__lead-cities {
  font-size: 0;
  line-height: 1;
  padding-bottom: 11px;
  margin-right: -17px;
}
.city-select__lead-cities li {
  display: inline-block;
  margin-right: 17px;
  margin-bottom: 10px;
}
.city-select__lead-cities li a,
.city-select__lead-cities li span {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  display: inline-block;
  color: #666666;
  transition: color 0.3s;
  cursor: pointer;
}
.city-select__lead-cities li a:hover,
.city-select__lead-cities li span:hover {
  color: #f84753;
}
.city-select__cities-scroll {
  position: relative;
}
.city-select__cities-scroll p {
  display: none;
  font-size: 14px;
  line-height: 18px;
  color: #a3a3a3;
}
.city-select__cities-list {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  max-height: 209px;
}
.city-select__cities-list li {
  margin-bottom: 12px;
}
.city-select__cities-list a,
.city-select__cities-list span {
  color: #666666;
  transition: color 0.3s;
  cursor: pointer;
}
.city-select__cities-list a mark,
.city-select__cities-list span mark {
  font-weight: bold;
  color: #000;
  background: none;
}
.city-select__cities-list a:hover,
.city-select__cities-list span:hover {
  color: #f84753;
}
.city-select__buttons {
  display: -webkit-flex;
  display: flex;
}
.city-select__buttons .btn {
  padding-left: 40px;
  padding-right: 40px;
}
.city-select__buttons .btn--link {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.city-select__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  top: 7px;
  right: 6px;
  color: #a3a3a3;
  transition: color 0.3s;
  position: absolute;
}
.city-select__close:before {
  font-size: 16px;
  width: 14px;
  line-height: 11px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.city-select__close:hover {
  color: #f84753;
}
.city-select__selected {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  padding-right: 12px;
  position: relative;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /*  &:before {
      content: "";
      position: absolute;
      width: 6px;
      height: 6px;
      border-right: 2px solid #000;
      border-bottom: 2px solid #000;
      right: 0;
      transform: rotate(45deg);
      top: 50%;
      margin-top: -5px;
      transition: all 0.3s;
    }*/
}
.city-select__selected:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 4px;
  background-color: #f84753;
  right: -1px;
  bottom: -4px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.city-select__selected:hover:before {
  border-color: #f84753;
}
.js-city-select {
  cursor: pointer;
  display: block;
}
.city-select__cities--popup {
  position: relative;
  opacity: 1;
  visibility: visible;
  left: 0;
  top: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  background: none;
  z-index: auto;
  width: 100%;
}
.header-middle {
  padding-top: 11px;
  padding-bottom: 20px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 38px;
  width: 100%;
  z-index: 2;
  background-color: #fff;
}
.header-middle__container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.header-middle__logo {
  margin-right: 68px;
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
}
.logo {
  display: inline-block;
  line-height: 0;
  font-size: 0;
}
.logo__descr {
  font-weight: 600;
  font-size: 9px;
  line-height: 5px;
  text-transform: uppercase;
  color: #666666;
  padding-top: 6px;
}
.header-search {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  margin-right: 25px;
  width: 100%;
}
.header-search.is-active .header-search-results {
  opacity: 1;
  visibility: visible;
}
.header-search .ps__rail-y {
  right: 10px;
}
.header-search__button {
  position: absolute;
  width: 29px;
  height: 29px;
  right: 10px;
  top: 6px;
  background: none;
  border: 0;
  outline: none;
  padding: 0;
  z-index: 1;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
}
.header-search__button:before {
  font-size: 19px;
  color: #000;
  line-height: 29px;
  position: absolute;
  width: 29px;
  height: 29px;
  left: 0;
  top: 0;
  text-align: center;
  transition: color 0.3s;
}
.header-search__button:hover:before {
  color: #f84753;
}
.header-middle__right {
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.header-phones {
  position: relative;
  margin-right: 26px;
  font-size: 0;
  line-height: 1;
}
.header-phones.is-show .header-phones__arrow:before {
  -webkit-transform: rotate(-135deg) translateY(-2px) translateX(-1px);
          transform: rotate(-135deg) translateY(-2px) translateX(-1px);
}
.header-phones.is-show .header-phones__arrow:after {
  opacity: 1;
  visibility: visible;
}
.header-phones__selected {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  position: relative;
  padding-right: 18px;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: color 0.3s;
}
.header-phones__selected:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #f84753;
  left: 0;
  right: -4px;
  bottom: -2px;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
}
.header-phones__selected a {
  transition: color 0.3s;
}
.header-phones__selected a:hover {
  color: #f84753;
}
.header-phones__selected a:hover:before {
  border-color: #f84753;
}
.header-phones__selected:hover:after {
  opacity: 1;
}
.header-phones__arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 0;
  top: 0;
  top: 50%;
  margin-top: -9px;
}
.header-phones__arrow:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  margin-top: -8px;
  transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, transform 0.3s;
  transition: border-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.header-phones__dropdown {
  transition: opacity 0.3s, visibility 0.3s;
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px 0px 4px 4px;
  width: 176px;
  opacity: 0;
  visibility: hidden;
  padding: 24px 27px;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 3px;
  z-index: 10;
}
.header-phones__dropdown.is-show {
  opacity: 1;
  visibility: visible;
}
.header-phones__dropdown p {
  margin-bottom: 10px;
}
.header-phones__dropdown p:last-child {
  margin-bottom: 0;
}
.header-phones__dropdown a {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  display: inline-block;
  color: #000000;
  transition: color 0.3s;
}
.header-phones__dropdown a:hover {
  color: #f84753;
}
.header-middle__link-icons {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.header-middle__link-icon {
  display: inline-block;
  vertical-align: middle;
  width: 41px;
  height: 41px;
  margin-left: 17px;
  padding: 6px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header-middle__link-icon:after {
  content: "";
  position: absolute;
  width: 36px;
  left: 50%;
  margin-left: -18px;
  height: 6px;
  background-color: #f84753;
  transition: opacity 0.3s;
  bottom: -1px;
  opacity: 0;
}
.header-middle__link-icon:first-child {
  margin-left: 21px;
}
.header-middle__link-icon:before {
  position: absolute;
  bottom: 6px;
  left: 50%;
  color: #000;
  transition: color 0.3s;
}
.header-middle__link-icon > span {
  position: absolute;
  top: 5px;
  right: 2px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: #f84753;
  font-weight: bold;
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  padding-top: 0;
  padding-left: 1px;
}
.header-middle__link-icon:hover:after, .header-middle__link-icon.is-active:after {
  opacity: 1;
}
.header-middle__link-icon.icon-call {
  display: none;
}
.header-middle__link-icon.icon-call:before {
  width: 21px;
  height: 21px;
  font-size: 21px;
  margin-left: -10px;
}
.header-middle__link-icon.icon-user:before {
  width: 18px;
  height: 18px;
  font-size: 18px;
  margin-left: -9px;
}
.header-middle__link-icon.icon-like:before {
  top: 17px;
  width: 20px;
  height: 20px;
  font-size: 19px;
  margin-left: -10px;
}
.header-middle__link-icon.icon-basket:before {
  width: 21px;
  height: 16px;
  font-size: 16px;
  margin-left: 0;
  left: 7px;
  bottom: 7px;
}
.header-middle__link-icon.icon-basket:after {
  width: 100%;
  left: 0;
  margin-left: 0;
}
.header-middle__link-icon-button {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-cart-empty-message {
  width: 338px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px 0px 4px 4px;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #666666;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 100%;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: default;
}
.header-cart-empty-message a {
  color: #f84753;
  transition: color 0.3s;
  font-weight: 500;
  text-decoration: none;
}
.header-cart-empty-message a:hover {
  color: #DA3E49;
}
.header-cart-empty-message.is-active {
  opacity: 1;
  visibility: visible;
}
.header-favorites-empty-message {
  width: 480px;
  background: #ffffff;
  padding: 32px;
  padding-bottom: 46px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px 0px 4px 4px;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #a3a3a3;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 100%;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: default;
}
.header-favorites-empty-message a {
  color: #f84753;
  transition: color 0.3s;
  font-weight: 500;
  text-decoration: none;
}
.header-favorites-empty-message a:hover {
  color: #DA3E49;
}
.header-favorites-empty-message.is-active {
  opacity: 1;
  visibility: visible;
}
.header-favorites-empty-message p {
  max-width: 253px;
  margin-left: auto;
  margin-right: auto;
}
.header-favorites-empty-message p i {
  color: #000;
}
.header-favorites-empty-message__title,
.header-cart-empty-message__title {
  margin-bottom: 8px;
  color: #000;
  font-weight: bold;
}
.header-phones__working-time {
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  opacity: 0.5;
}
.header-menu-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid #eeeef0;
  border-radius: 4px;
  display: inline-block;
  padding: 0;
  background-color: #fff;
  margin-right: 40px;
  display: none;
  transition: border-color 0.3s;
  position: relative;
}
.header-menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 5px;
  background-color: #000;
  margin: 0 auto;
  margin-bottom: 4px;
  display: block;
  transition: all 0.3s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.header-menu-toggle span:last-child {
  margin-bottom: 0;
}
.header-menu-toggle:hover {
  border-color: #D4D4D9;
}
.header-bottom {
  padding-top: 23px;
  padding-bottom: 19px;
  position: absolute;
  top: 118px;
  left: 0;
  width: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}
.header-menu {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 21px 0;
  padding-top: 1px;
  font-size: 0;
  line-height: 1;
}
@media (max-width: 1568px) {
  .header-menu:last-child ul {
    left: -175px;
  }
}
.header-menu__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: inline-block;
  color: #000000;
  position: relative;
  padding-bottom: 6px;
}
.header-menu__link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #f84753;
  bottom: 0;
  transition: opacity 0.3s;
  opacity: 0;
}
.header-menu__link img {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}
.header-menu__link:hover:before {
  opacity: 1;
}
.header-menu__item---menu-full {
  position: relative;
}
.header-menu__item---menu-full:hover .header-menu__link:before {
  opacity: 1;
}
.header-menu__item---menu-full:hover .header-menu-full {
  opacity: 1;
  visibility: visible;
}
.header-menu__item--dropdown {
  position: relative;
}
.header-menu__item--dropdown:hover .header-menu__link:before {
  opacity: 1;
}
.header-menu__item--dropdown:hover .header-menu__dropdown {
  opacity: 1;
  visibility: visible;
}
.header-menu__dropdown {
  background: #ffffff;
  position: absolute;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 0px 4px 4px 4px;
  left: 0;
  top: 100%;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 300px;
  padding: 40px;
}
.header-menu__dropdown li {
  margin-bottom: 23px;
}
.header-menu__dropdown li:last-child {
  margin-bottom: 0;
}
.header-menu__dropdown li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: block;
  transition: color 0.3s;
  color: #000;
}
.header-menu__dropdown li a:hover {
  color: #f84753;
}
.header-menu-full {
  background: #ffffff;
  position: absolute;
  width: 1180px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 0px 4px 4px 4px;
  display: -webkit-flex;
  display: flex;
  left: 0;
  top: 100%;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header-menu-full__left {
  width: calc(100% - 400px);
  padding: 40px;
  padding-bottom: 64px;
}
.header-menu-full__right {
  width: 400px;
  position: relative;
  z-index: 0;
  padding: 40px;
  padding-top: 97px;
  padding-bottom: 64px;
}
.header-menu-full__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.header-menu-full__lead-link {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}
.header-menu-full__lead-link a {
  color: #000000;
  transition: color 0.3s;
  display: inline-block;
}
.header-menu-full__lead-link a:hover {
  color: #f84753;
}
.header-menu-full__lead-link-item {
  margin-bottom: 32px;
}
.header-menu-full__lead-link-item:last-child {
  margin-bottom: 0;
}
.header-menu-full__lead-link--title {
  margin-bottom: 29px;
}
.header-menu-full__cols {
  display: -webkit-flex;
  display: flex;
  margin-right: -45px;
}
.header-menu-full__col {
  width: 25%;
  padding-right: 45px;
}
.header-menu-full__col p {
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 6px;
}
.header-menu-full__links {
  font-size: 14px;
  line-height: 30px;
  color: #a3a3a3;
  font-weight: bold;
}
.header-menu-full__links li a {
  transition: color 0.3s;
  display: block;
}
.header-menu-full__links li a:hover {
  color: #000;
}
.header-cart-favorites {
  position: absolute;
  width: 646px;
  right: 16px;
  top: 100%;
  margin-top: -2px;
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px 0px 4px 4px;
  padding: 32px;
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: default;
}
.header-cart-favorites.is-active {
  opacity: 1;
  visibility: visible;
}
.header-favorites {
  right: 77px;
}
.header-cart-favorites__scroll {
  max-height: 283px;
  position: relative;
}
.header-cart-favorites__title {
  text-align: center;
  display: none;
  font-weight: bold;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  padding: 19px 0;
  padding-bottom: 17px;
}
.cart-table {
  width: 100%;
  font-size: 0;
  line-height: 1;
  border-collapse: collapse;
}
.cart-table tr td {
  padding-top: 12px;
  padding-bottom: 12px;
}
.cart-table tr:first-child td {
  padding-top: 0;
}
.cart-table tr:last-child td {
  padding-bottom: 0;
}
.cart-table__td-price {
  text-align: right;
}
@media screen and (max-width: 755px) {
  .cart-table__td-price {
    text-align: left;
  }
}
.cart-table__td-image {
  padding-right: 8px;
}
.cart-table__image {
  width: 82px;
  min-width: 82px;
  display: block;
}
.cart-table__image img {
  max-width: 85px;
  max-height: 69px;
}
.cart-table__name {
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  display: inline-block;
  max-width: 198px;
  transition: color 0.3s;
}
.cart-table__name:hover {
  color: #f84753;
}
.cart-table__name.wish-list {
  max-width: none;
}
.cart-table__price {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  margin-right: 0;
  color: #000000;
  display: inline-block;
  vertical-align: bottom;
}
.cart-table__price--old {
  margin-right: 0;
  font-size: 14px;
  line-height: 17px;
  color: #a3a3a3;
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  margin-bottom: 2px;
}
.cart-table__price--old:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f84753;
  margin-bottom: 2px;
}
.cart-table__td-delete {
  width: 42px;
}
.cart-table__delete {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: #a3a3a3;
  transition: color 0.3s;
  position: relative;
}
.cart-table__delete:before {
  font-size: 16px;
  width: 14px;
  line-height: 11px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cart-table__delete:hover {
  color: #f84753;
}
.cart-table__size {
  display: none;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
}
.cart-table .item-preview__sizes dl {
  margin-bottom: 8px;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.cart-table .item-preview__sizes dl dt {
  line-height: 16px;
}
.cart-table .item-preview__sizes dl dd {
  line-height: 16px;
  padding: 0;
  font-weight: 400;
}
.header-cart-favorites__total p {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #a3a3a3;
}
.header-cart-favorites__total p span {
  color: #000;
}
p.header-cart-favorites__total-count {
  font-size: 12px;
  line-height: 13.92px;
  color: #979797;
  margin-top: 2px;
  font-weight: 400;
  text-align: left;
}
.header-cart-favorites__button {
  display: block;
  width: 291px;
}
.header-cart-favorites__button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 755px) {
  .header-cart-favorites__button {
    width: 100%;
  }
}
.mobile-menu {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 100%;
  background: #fefefe;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  z-index: 101;
  margin-top: -3px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  display: none;
}
.mobile-menu .header-menu-full {
  background: none;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  position: relative;
  top: 0;
}
.mobile-menu .header-menu-full__left {
  width: calc(100% - 327px);
  padding: 40px 65px;
  padding-bottom: 64px;
}
.mobile-menu .header-menu-full__right {
  width: 327px;
  padding: 51px;
  padding-top: 106px;
}
.mobile-menu .header-menu-full__cols {
  margin-right: -24px;
}
.mobile-menu .header-menu-full__col {
  padding-right: 24px;
}
.mobile-menu .header-menu-full__col p {
  font-size: 18px;
  line-height: 22px;
}
.mobile-menu .header-menu-full__lead-link-item {
  margin-bottom: 24px;
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.is-active .header-menu-full {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__close {
  color: #a3a3a3;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 15px;
  top: 13px;
  border: 0;
  outline: 0;
  padding: 0;
  display: none;
  background: none;
}
.mobile-menu__close:before, .mobile-menu__close:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 1.5px;
  background-color: #a3a3a3;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  border-radius: 4px;
}
.mobile-menu__close:before {
  left: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-menu__close:after {
  left: -1px;
  bottom: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobile-menu-desktop {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.mobile-menu-tablet {
  display: none;
  border-top: 1px solid #eeeef0;
  width: 100%;
}
.mobile-menu-mobile {
  display: none;
  width: 100%;
}
.mobile-menu-mobile .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.mobile-menu-tablet__left {
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 26px;
}
.menu-categories {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
}
.menu-category {
  width: calc(25% - 16px);
  margin-right: 16px;
  margin-bottom: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 4px 20px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 17px 9px;
  position: relative;
  height: 95px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  transition: box-shadow 0.3s;
}
.menu-category p {
  font-size: 16px;
  line-height: 17px;
  margin: 0;
  z-index: 1;
  position: relative;
}
.menu-category span {
  font-size: 12px;
  line-height: 16px;
  color: #a3a3a3;
  position: relative;
  display: block;
  z-index: 1;
  transition: color 0.3s;
}
.menu-category:hover {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 2px 6px rgba(0, 0, 0, 0.1), 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.menu-categories__all {
  display: block;
  width: 100%;
  padding: 13px 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 8px;
  width: calc(100% - 16px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}
.menu-categories__all:hover {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 2px 6px rgba(0, 0, 0, 0.1), 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.menu-category__img {
  height: 100%;
  width: 70px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.menu-category__img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
  font-family: "object-fit: cover; object-position: center right;";
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: block;
}
.menu-category--kuhni .menu-category__img {
  height: 60px;
}
.menu-category--gostinie .menu-category__img {
  height: 80px;
}
.menu-category--destkie .menu-category__img {
  height: 60px;
}
.menu-category--stoly_stuliya .menu-category__img {
  height: 54px;
}
.menu-category--vintazh .menu-category__img {
  height: 67px;
}
.menu-category--rabochee_mesto .menu-category__img {
  height: 65px;
}
.menu-category--prihozhie .menu-category__img {
  height: 74px;
}
.menu-category--spalny .menu-category__img {
  height: 81px;
}
.menu-category--shkafy .menu-category__img {
  height: 77px;
}
.menu-category--modulnie .menu-category__img {
  height: 50px;
}
.menu-category--gotovie .menu-category__img {
  height: 61px;
}
.menu-category--moiki .menu-category__img {
  height: 43px;
}
.menu-category--bitovaya .menu-category__img {
  height: 66px;
}
.menu-category--stoleshnici .menu-category__img {
  height: 102px;
}
.mobile-menu-tablet__right {
  background-color: rgba(238, 238, 240, 0.5);
  width: 279px;
  min-width: 279px;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 24px 22px;
  padding-bottom: 40px;
  position: relative;
  z-index: 0;
}
.mobile-menu-tablet__right:before {
  content: "";
  position: absolute;
  background-color: rgba(238, 238, 240, 0.5);
  height: 100%;
  left: 279px;
  top: 0;
  z-index: -1;
  width: 100vw;
}
.mobile-menu-tablet__links {
  font-size: 0;
  line-height: 1;
  margin-bottom: 51px;
}
.mobile-menu-tablet__links li {
  margin-bottom: 16px;
}
.mobile-menu-tablet__links li:last-child {
  margin-bottom: 0;
}
.mobile-menu-tablet__links li a {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  color: #666666;
  transition: color 0.3s;
}
.mobile-menu-tablet__links li a:hover {
  color: #000;
}
.mobile-menu-tablet__email {
  font-size: 0;
  line-height: 1;
  margin-bottom: 51px;
  margin-bottom: 11px;
}
.mobile-menu-tablet__email a {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  transition: color 0.3s;
  color: #666666;
}
.mobile-menu-tablet__email a:hover {
  color: #000;
}
.mobile-menu-tablet__phone {
  font-size: 0;
  line-height: 1;
}
.mobile-menu-tablet__phone a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  transition: color 0.3s;
  color: #666666;
  margin-bottom: -3px;
}
.mobile-menu-tablet__phone a:hover {
  color: #000;
}
.mobile-menu-tablet__phone p {
  margin: 0;
  font-size: 14px;
  line-height: 19px;
  color: #666666;
}
.mobile-menu-desktop__left {
  width: 255px;
  background-color: rgba(238, 238, 240, 0.5);
  padding: 43px 40px;
}
.mobile-menu-desktop__left-links li {
  margin-bottom: 16px;
}
.mobile-menu-desktop__left-links li:last-child {
  margin-bottom: 0;
}
.mobile-menu-desktop__left-links li a {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #a3a3a3;
  transition: color 0.3s;
  display: inline-block;
}
.mobile-menu-desktop__left-links li a:hover, .mobile-menu-desktop__left-links li a.is-active {
  color: #000;
}
.mobile-menu-desktop__right {
  width: calc(100% - 255px);
}
.mobile-menu-desktop__block {
  display: none;
}
.mobile-menu-desktop__block.is-active {
  display: block;
}
.mobile-menu-desktop__links {
  width: 243px;
  padding: 40px;
}
.mobile-menu-desktop__links li {
  margin-bottom: 23px;
}
.mobile-menu-desktop__links li:last-child {
  margin-bottom: 0;
}
.mobile-menu-desktop__links li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: block;
  transition: color 0.3s;
  color: #000;
}
.mobile-menu-desktop__links li a:hover {
  color: #f84753;
}
.mobile-menu-mobile__city {
  padding: 16px 16px;
  border-top: 1px solid #eeeef0;
  border-bottom: 1px solid #eeeef0;
  margin-left: -16px;
  margin-right: -16px;
}
.mobile-menu-mobile__city-selected {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.mobile-menu-mobile__city-selected:before {
  font-size: 13px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
.mobile-menu-mobile__links {
  padding-top: 24px;
  font-size: 0;
  line-height: 1;
}
.mobile-menu-mobile__links li {
  margin-bottom: 16px;
}
.mobile-menu-mobile__links li a {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  display: inline-block;
  transition: all 0.3s;
}
.mobile-menu-mobile__links li a:hover {
  color: #f84753;
}
.mobile-menu-mobile__bottom {
  margin-left: -16px;
  margin-right: -16px;
  background: #f5f5f5;
  padding: 40px 16px;
  padding-bottom: 36px;
  position: relative;
}
.mobile-menu-mobile__email {
  margin-bottom: 32px;
}
.mobile-menu-mobile__email p {
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin: 0;
}
.mobile-menu-mobile__email a {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  transition: all 0.3s;
  color: #000000;
}
.mobile-menu-mobile__email a:hover {
  color: #f84753;
}
.mobile-menu-mobile__phone p {
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin: 0;
}
.mobile-menu-mobile__phone a {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  transition: all 0.3s;
  color: #000000;
}
.mobile-menu-mobile__phone a:hover {
  color: #f84753;
}
.mobile-menu-mobile__callback {
  position: absolute;
  right: 22px;
  bottom: 10px;
  background: #f84753;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  color: #fff;
  text-align: center;
}
.mobile-menu-mobile__callback:before {
  font-size: 24px;
  line-height: 48px;
  display: inline-block;
}
.header-search-results__inner {
  padding: 40px;
}
.header-search-results {
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  width: 787px;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  overflow: auto;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  opacity: 0;
}
.header-search-results__block {
  border-bottom: 1px solid #eeeef0;
  margin-bottom: 24px;
  overflow: hidden;
}
.header-search-results__block:first-child {
  padding-top: 0;
}
.header-search-results__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 16px;
}
.header-search-results__categories {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: -80px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 6px;
  padding-bottom: 18px;
}
.header-search-results__categories li {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  width: 255px;
  margin-right: 80px;
  margin-bottom: 12px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.header-search-results__categories li a {
  transition: color 0.3s;
}
.header-search-results__categories li a span {
  font-weight: bold;
  color: #f84753;
}
.header-search-results__categories li a:hover {
  color: #f84753;
}
.header-search-results__categories li > span {
  color: #666666;
  font-weight: bold;
}
.header-search-results__items {
  margin-right: -16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.header-search-results-item {
  width: calc(25% - 16px);
  margin-right: 16px;
  margin-bottom: 28px;
}
.header-search-results-item__image {
  display: block;
  margin-bottom: 4px;
  border-radius: 4px 4px 0px 0px;
  position: relative;
  overflow: hidden;
  height: 105px;
}
.header-search-results-item__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.header-search-results-item__name {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  display: inline-block;
  transition: color 0.3s;
}
.header-search-results-item__name span {
  font-weight: bold;
  color: #f84753;
}
.header-search-results-item__name:hover {
  color: #f84753;
}
.header-search-results-item__prices {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -17px;
}
.header-search-results-item__price {
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  color: #000000;
  margin-right: 17px;
}
.header-search-results-item__price--old {
  position: relative;
  color: #666666;
  font-weight: 400;
}
.header-search-results-item__price--old:before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 1px;
  background-color: #f84753;
}
.fixed-bottom {
  position: fixed;
  background: #ffffff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px -2px 6px rgba(0, 0, 0, 0.04), 0px -10px 20px rgba(0, 0, 0, 0.04);
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 13px;
  padding-bottom: 11px;
  display: none;
  transition: all 0.3s;
}
.fixed-bottom.is-hide {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.fixed-bottom__links {
  display: -webkit-flex;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
.fixed-bottom__links li {
  width: 25%;
}
.fixed-bottom__link {
  font-size: 10px;
  line-height: 12px;
  display: block;
  text-align: center;
  color: #666666;
  position: relative;
  transition: color 0.3s;
  padding-top: 26px;
}
.fixed-bottom__link:hover, .fixed-bottom__link.is-active {
  color: #f84753;
}
.fixed-bottom__link:hover .fixed-bottom__icon:before, .fixed-bottom__link.is-active .fixed-bottom__icon:before {
  color: #f84753;
}
.fixed-bottom__icon {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 50%;
  margin-left: -12px;
}
.fixed-bottom__icon:before {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  color: #9d9d9d;
  line-height: 24px;
  transition: color 0.3s;
}
.fixed-bottom__icon span {
  position: absolute;
  top: -6px;
  right: -8px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: #f84753;
  font-weight: bold;
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  padding-top: 0;
  padding-left: 1px;
}
.fixed-bottom__icon.icon-home:before {
  font-size: 17px;
}
.fixed-bottom__icon.icon-search:before {
  font-size: 19px;
}
.fixed-bottom__icon.icon-like:before {
  font-size: 19px;
}
.fixed-bottom__icon.icon-basket:before {
  font-size: 15px;
}
.mobile-city-search {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 102;
  display: -webkit-flex;
  display: flex;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.mobile-city-search .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.mobile-city-search.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-city-search__cities-scroll {
  position: relative;
  margin-left: -16px;
  margin-right: -16px;
}
.mobile-city-search__close {
  color: #a3a3a3;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 15px;
  top: 13px;
  border: 0;
  outline: 0;
  padding: 0;
  background: none;
}
.mobile-city-search__close:before, .mobile-city-search__close:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 1.5px;
  background-color: #a3a3a3;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  border-radius: 4px;
}
.mobile-city-search__close:before {
  left: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-city-search__close:after {
  left: -1px;
  bottom: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobile-city-search__title {
  border-bottom: 1px solid #eeeef0;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  padding: 14px 16px;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 24px;
}
.mobile-city-search__form {
  margin-bottom: 24px;
}
.mobile-city-search__form .form-field-wrap {
  background: #eeeef0;
  border: 0;
}
.mobile-city-search__form .form-field-wrap:before {
  position: absolute;
  font-size: 16px;
  color: #a3a3a3;
  line-height: 16px;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 16px;
  top: 14px;
  text-align: center;
  transition: color 0.3s;
}
.mobile-city-search__form .form-field-wrap.input--focus .form-field-label p {
  -webkit-transform: scale(0.7) translateY(-94px) translateX(0);
          transform: scale(0.7) translateY(-94px) translateX(0);
}
.mobile-city-search__form .form-field {
  height: 44px;
  padding-left: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.mobile-city-search__form .form-field-label {
  padding-left: 40px;
  line-height: 44px;
  height: 44px;
}
.mobile-city-search__form .form-field {
  padding-left: 40px;
}
.mobile-city-search__no-results {
  display: none;
}
.mobile-city-search__cities-list {
  margin: 0;
}
.mobile-city-search__cities-list li span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding: 10px 34px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.mobile-city-search__cities-list li span mark {
  font-weight: bold;
  color: #000;
  background: none;
}
.mobile-city-search__cities-list li span:hover {
  color: #f84753;
}
.mobile-city-search__cities-list li span.is-active {
  color: #fff;
  background-color: #f84753;
}
.mobile-city-search__cities-list li span.is-active mark {
  color: #fff;
}
.mobile-city-search__cities-list li span.is-active:before {
  display: block;
}
.mobile-city-search__cities-list li span:before {
  position: absolute;
  width: 16px;
  height: 12px;
  font-size: 12px;
  line-height: 12px;
  right: 16px;
  top: 50%;
  margin-top: -6px;
  color: #fff;
  display: none;
}
.mobile-city-search__group-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  padding: 0 16px;
  margin-bottom: 16px;
}
.mobile-city-search__group {
  margin-bottom: 30px;
}
.mobile-city-search__group:last-child {
  margin-bottom: 0;
}
.mobile-city-search__no-results {
  padding: 0 16px;
  font-size: 16px;
  color: #a3a3a3;
}
.mobile-catalog {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 62px;
  background: #f5f5f5;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.04), inset 0px -2px 6px rgba(0, 0, 0, 0.04), inset 0px -10px 20px rgba(0, 0, 0, 0.04);
}
.mobile-catalog.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.mobile-catalog__top {
  padding: 8px 16px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}
.mobile-catalog__bottom {
  padding: 0 16px;
  -webkit-flex: 1;
          flex: 1;
  padding-bottom: 15px;
}
.menu-categories-level {
  display: none;
}
.menu-categories-level.is-active {
  display: block;
}
.menu-categories-level__header {
  position: relative;
}
.menu-categories-level__back {
  font-size: 16px;
  line-height: 24px;
  color: #a3a3a3;
  position: absolute;
  left: 0;
  top: 26px;
  padding-left: 15px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: color 0.3s;
}
.menu-categories-level__back:before {
  position: absolute;
  width: 6px;
  height: 10px;
  font-size: 10px;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
.menu-categories-level__back:hover {
  color: #000;
}
.menu-categories-level__title {
  text-align: center;
  padding: 20px 60px;
  font-weight: bold;
  font-size: 26px;
  line-height: 32px;
  color: #000000;
}
.menu-categories-level__group {
  display: none;
}
.menu-categories-level__group.is-active {
  display: block;
}
@media screen and (max-width: 1395px) {
  .header {
    height: 73px;
  }
  .header.fixed .header-menu-toggle--lg {
    display: none;
  }
  .header.fixed .header-middle__logo {
    margin-right: 68px;
  }
  .header-top {
    display: none;
  }
  .header-bottom {
    display: none;
  }
  .header-middle {
    position: fixed;
    top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    height: auto;
  }
  .header-middle__link-icon.icon-call {
    display: inline-block;
  }
  .header-middle__link-icon.icon-user {
    display: none;
  }
  .header-middle__link-icon:first-child {
    margin-left: 0;
  }
  .header-middle__calc-btn {
    display: none;
  }
  .header-phones-wrap {
    display: none;
  }
  .header-search {
    margin-right: 64px;
  }
  .header-menu-toggle:not(.header-menu-toggle--lg) {
    display: block;
    margin-left: 16px;
    margin-right: 0;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    top: 74px;
    border-radius: 0;
  }
  .mobile-menu-desktop {
    display: none;
  }
  .mobile-menu-tablet {
    display: block;
  }
  .mobile-menu-tablet .container {
    display: -webkit-flex;
    display: flex;
  }
  .header-search-results {
    left: -150px;
  }
  .header-cart {
    right: 75px;
  }
  .header-favorites {
    right: 135px;
  }
}
@media screen and (max-width: 995px) {
  .header-search {
    margin-right: 24px;
  }
  .header-middle__logo {
    margin-right: 24px;
  }
  .header.fixed .header-middle__logo {
    margin-right: 24px;
  }
  .menu-category {
    width: calc(33.33% - 16px);
  }
  .mobile-menu-tablet__right {
    width: 214px;
    min-width: 214px;
  }
  .mobile-menu-tablet__right:before {
    left: 214px;
  }
  .header-search-results {
    left: -198px;
    width: 736px;
  }
  .header-favorites {
    right: 75px;
  }
}
@media screen and (min-width: 756px) {
  .header-menu-toggle.is-active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateX(2px) translateY(-3px);
            transform: rotate(45deg) translateX(2px) translateY(-3px);
  }
  .header-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header-menu-toggle.is-active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateX(0px) translateY(3px);
            transform: rotate(-45deg) translateX(0px) translateY(3px);
  }
  .mobile-catalog {
    display: none;
  }
}
@media screen and (min-width: 756px) {
  .cart-table .item-preview__sizes {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    padding-right: 30px;
  }
  .cart-table .item-preview__sizes dl {
    margin-bottom: 0;
  }
  .cart-table .item-preview__sizes dl dt {
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
  }
  .cart-table .item-preview__sizes dl dd {
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
  }
}
.header-cart-favorites__bottom {
  border-top: 1px solid #eeeef0;
  padding-top: 16px;
}
.header-cart-favorites__line {
  width: 100%;
  height: 2px;
  background: rgba(163, 163, 163, 0.5);
  position: relative;
  margin-bottom: 16px;
}
.header-cart-favorites__minimum {
  font-family: Gilroy;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #A3A3A3;
}
.header-cart-favorites__minimum span {
  font-weight: 700;
  color: #000;
}
.header-cart-favorites__line-inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #F84753;
}
.header-cart-favorites__wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 16px;
}
@media screen and (max-width: 755px) {
  .fixed-bottom {
    display: block;
  }
  .header {
    height: 58px;
  }
  .header-middle {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-search {
    display: none;
  }
  .header-middle__logo {
    margin-right: 0;
    z-index: 102;
  }
  .header.fixed .header-middle__logo {
    margin-right: 0;
  }
  .header-middle__link-icon.icon-call {
    display: inline-block;
  }
  .header-middle__link-icon.icon-like {
    display: none;
  }
  .header-middle__link-icon.icon-basket {
    display: none;
  }
  .header-menu-toggle {
    border: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  .header-middle__logo {
    -webkit-flex: auto;
            flex: auto;
    max-width: 107px;
  }
  .logo__descr {
    display: none;
  }
  .header-middle__link-icon {
    width: 20px;
    height: 20px;
    padding: 0;
  }
  .header-middle__link-icon:before {
    bottom: 0;
  }
  .header-middle__link-icon:after {
    display: none;
  }
  .mobile-menu {
    top: 0;
    bottom: 0;
    height: 100%;
    padding-top: 44px;
    display: -webkit-flex;
    display: flex;
    margin: 0;
  }
  .mobile-menu__close {
    display: block;
  }
  .mobile-menu-tablet {
    display: none;
  }
  .mobile-menu-mobile {
    display: -webkit-flex;
    display: flex;
    overflow: auto;
  }
  .menu-categories {
    margin-right: -8px;
  }
  .menu-category {
    width: calc(50% - 8px);
    margin-right: 8px;
    margin-bottom: 8px;
    box-shadow: none;
  }
  .menu-categories__all {
    box-shadow: none;
  }
  .menu-categories__all {
    margin-bottom: 8px;
    width: calc(100% - 8px);
  }
  .mobile-city-search__cities-scroll {
    overflow: auto;
    -webkit-flex: 1;
            flex: 1;
  }
  .header-cart-favorites {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 102;
    bottom: 62px;
    box-shadow: none;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .header-cart-favorites__total {
    display: none;
  }
  .header-cart-favorites__title {
    display: block;
  }
  .header-cart-favorites__scroll {
    -webkit-flex: 1;
            flex: 1;
    max-height: none;
    padding: 8px 16px;
  }
  .header-cart-favorites__bottom {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px -2px 6px rgba(0, 0, 0, 0.04), 0px -16px 24px rgba(0, 0, 0, 0.06);
    border-radius: 4px 4px 0px 0px;
    padding: 8px 16px;
  }
  .cart-table {
    display: block;
  }
  .cart-table tbody,
.cart-table thead {
    display: block;
  }
  .cart-table tbody tr,
.cart-table thead tr {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding-left: 116px;
    border-bottom: 1px solid #EEEEF0;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .cart-table tbody tr:last-child,
.cart-table thead tr:last-child {
    border-bottom: 0;
  }
  .cart-table tbody tr:first-child,
.cart-table thead tr:first-child {
    padding-top: 0;
  }
  .cart-table tbody tr:first-child .cart-table__td-delete,
.cart-table thead tr:first-child .cart-table__td-delete {
    top: 0;
  }
  .cart-table tbody tr:first-child .cart-table__td-image,
.cart-table thead tr:first-child .cart-table__td-image {
    top: 0;
  }
  .cart-table tbody tr td,
.cart-table thead tr td {
    padding: 0;
  }
  .cart-table tbody tr td:not(.cart-table__td-delete):not(.cart-table__td-image),
.cart-table thead tr td:not(.cart-table__td-delete):not(.cart-table__td-image) {
    display: block;
    padding: 0;
    padding-bottom: 2px;
    width: 100%;
  }
  .cart-table .item-preview__sizes {
    display: block;
  }
  .cart-table__td-delete {
    position: absolute;
    right: 0;
    top: 21px;
    width: auto;
    padding: 0;
  }
  .cart-table__td-image {
    position: absolute;
    left: 0;
    top: 25px;
    width: 100px;
    padding: 0;
    -webkit-order: 1;
            order: 1;
  }
  .cart-table__image {
    width: 100px;
    max-width: 100%;
  }
  .cart-table__image img {
    width: 100%;
    height: auto;
  }
  .cart-table__size {
    display: block;
  }
  .cart-table__td-price {
    -webkit-order: 2;
            order: 2;
    margin-bottom: 8px;
    padding: 0;
    padding-top: 0;
  }
  .cart-table__price--old {
    display: inline-block;
  }
  .cart-table__td-name {
    -webkit-order: 3;
            order: 3;
    padding: 0;
  }
  .cart-table__name {
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
  }
  .cart-table__td-quantity {
    -webkit-order: 4;
            order: 4;
    padding-bottom: 0;
  }
}
.current-menu {
  font-weight: 1000;
}
.empty-delay-product {
  display: none;
}
.is-active-item-menu {
  font-weight: bold !important;
  color: #000000 !important;
}
.none {
  display: none;
}
.empty-wish-popup {
  text-align: center;
  display: none;
}
.empty-wish-popup.is-active {
  display: block;
}
.js-header-cart-empty-message {
  text-align: center;
  display: none;
}
.js-header-cart-empty-message.is-active {
  display: block;
}
.js-header-cart-empty-message a {
  color: #f54753;
}
.footer {
  background-color: #fff;
}
.footer-history {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #fff;
}
@media screen and (max-width: 1395px) {
  .footer-history {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 755px) {
  .footer-history {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}
.footer-history__title {
  margin-bottom: 23px;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}
@media screen and (max-width: 755px) {
  .footer-history__title {
    margin-bottom: 16px;
  }
}
.history-items-slider {
  position: relative;
}
.history-items-slider .swiper-slide {
  width: 154px;
}
.history-items-slider .swiper-slide--empty {
  background: #666666;
  opacity: 0.04;
  border-radius: 4px;
  height: auto;
}
@media screen and (max-width: 1395px) {
  .history-items-slider .swiper-slide {
    width: 176px;
  }
  .history-items-slider .swiper-slide--empty:nth-child(6), .history-items-slider .swiper-slide--empty:nth-child(7), .history-items-slider .swiper-slide--empty:nth-child(8) {
    display: none;
  }
}
@media screen and (max-width: 995px) {
  .history-items-slider .swiper-slide {
    width: 164px;
  }
  .history-items-slider .swiper-slide--empty:nth-child(5), .history-items-slider .swiper-slide--empty:nth-child(6), .history-items-slider .swiper-slide--empty:nth-child(7), .history-items-slider .swiper-slide--empty:nth-child(8) {
    display: none;
  }
}
@media screen and (max-width: 755px) {
  .history-items-slider {
    overflow: visible;
  }
  .history-items-slider .swiper-slide {
    width: 136px;
  }
}
.history-items-slider__empty-blocks {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
}
.history-items-slider__empty-block {
  min-width: 154px;
  width: 154px;
  margin-right: 16px;
  background: #666666;
  opacity: 0.04;
  border-radius: 4px;
}
.history-item {
  display: block;
  min-height: 219px;
  border: 1px solid #eeeef0;
  border-radius: 2.69108px;
  overflow: hidden;
  padding-bottom: 16px;
  transition: border-color 0.3s;
  background-color: #fff;
}
.history-item:hover {
  border-color: #000;
}
.history-item__img {
  border-radius: 2.69108px 2.69108px 0px 0px;
  height: 124px;
  font-size: 0;
  line-height: 1;
  overflow: hidden;
  margin-bottom: 3px;
}
.history-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
@media screen and (max-width: 755px) {
  .history-item__img {
    height: 106px;
  }
}
.history-item__body {
  padding: 0 6px;
}
.history-item__price {
  font-weight: bold;
  font-size: 16.1465px;
  line-height: 20px;
  color: #000000;
}
.history-item__name {
  font-weight: 500;
  font-size: 14.0465px;
  line-height: 18px;
  color: #000000;
}
.footer-subscribe {
  border: 1px solid #eeeef0;
  border-radius: 4px;
  padding: 32px 0;
  margin-bottom: 51px;
  background-color: #fff;
  position: relative;
}
.footer-subscribe.is-success .footer-subscribe__success {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 995px) {
  .footer-subscribe {
    padding-bottom: 48px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 755px) {
  .footer-subscribe {
    border: 0;
    padding: 0;
    margin-bottom: 80px;
  }
}
.footer-subscribe__success {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.footer-subscribe__success .container {
  padding-top: 32px;
  padding-bottom: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.footer-subscribe__success p {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
  margin-right: 80px;
  max-width: 325px;
}
.footer-subscribe__success .btn {
  min-width: 0;
  padding: 17px 26px;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (max-width: 995px) {
  .footer-subscribe__success {
    text-align: center;
  }
  .footer-subscribe__success .container {
    display: block;
  }
  .footer-subscribe__success p {
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.footer-subscribe-form-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
@media screen and (max-width: 995px) {
  .footer-subscribe-form-container {
    display: block;
  }
}
@media screen and (max-width: 755px) {
  .footer-subscribe-form-container {
    background: #FFFFFF;
    border: 1px solid #eeeef0;
    box-sizing: border-box;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    padding: 32px 16px;
    padding-bottom: 48px;
  }
}
.footer-subscribe__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
  max-width: 530px;
  padding-right: 30px;
}
@media screen and (max-width: 1395px) {
  .footer-subscribe__title {
    max-width: 447px;
  }
}
@media screen and (max-width: 995px) {
  .footer-subscribe__title {
    margin-bottom: 16px;
    text-align: center;
    max-width: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 755px) {
  .footer-subscribe__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 16px;
  }
}
.footer-main:first-child {
  padding-top: 51px;
}
@media screen and (max-width: 1395px) {
  .footer-main:first-child {
    padding-top: 61px;
  }
}
@media screen and (max-width: 995px) {
  .footer-main:first-child {
    padding-top: 40px;
  }
}
@media screen and (max-width: 755px) {
  .footer-main:first-child {
    padding-top: 11px;
  }
  .footer-main:first-child .footer-main__payment-logos {
    display: none;
  }
  .footer-main:first-child .footer-main-top {
    display: none;
  }
}
.footer-main-top {
  padding-bottom: 46px;
}
@media screen and (max-width: 755px) {
  .footer-main-top {
    padding-bottom: 32px;
  }
}
.footer-main-cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 755px) {
  .footer-main-cols {
    display: block;
  }
}
.footer-main-col {
  width: 25%;
  padding-right: 20px;
}
.footer-main-col:last-child {
  padding-right: 0;
}
@media screen and (max-width: 995px) {
  .footer-main-col {
    width: 33.33%;
  }
  .footer-main-col:nth-child(1) {
    -webkit-order: 2;
            order: 2;
  }
  .footer-main-col:nth-child(2) {
    -webkit-order: 3;
            order: 3;
  }
  .footer-main-col:nth-child(3) {
    -webkit-order: 4;
            order: 4;
  }
  .footer-main-col:nth-child(4) {
    width: 100%;
    -webkit-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-col {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-col--slide {
    background: #FFFFFF;
    border: 1px solid #eeeef0;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 8px;
    padding: 0;
  }
  .footer-main-col--slide .footer-main-col__collapse {
    transition: height 0.3s;
    overflow: hidden;
    height: 0;
  }
  .footer-main-col--slide .footer-main-col__body {
    padding: 0 15px;
    padding-top: 0px;
    padding-bottom: 48px;
  }
  .footer-main-col--slide .footer-main-col__title {
    position: relative;
    padding: 12px 15px;
    padding-bottom: 11px;
    cursor: pointer;
  }
  .footer-main-col--slide .footer-main-col__title:before {
    content: "";
    width: 13px;
    height: 13px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    right: 15px;
    top: 14px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  .footer-main-col--slide .footer-main-col__title.is-active:before {
    -webkit-transform: rotate(-135deg) translateX(-2px) translateY(-2px);
            transform: rotate(-135deg) translateX(-2px) translateY(-2px);
  }
  .footer-main-col--slide.is-active {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  }
}
@media screen and (max-width: 995px) {
  .footer-main-col--last {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-col--last {
    display: block;
    padding-top: 24px;
    padding-bottom: 0;
  }
}
.footer-main-col__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 16px;
  cursor: default;
}
.footer-main-col__title a {
  transition: color 0.3s;
}
.footer-main-col__title a:hover {
  color: #f84753;
}
@media screen and (max-width: 755px) {
  .footer-main-col__title {
    font-size: 20px;
    line-height: 25px;
    text-transform: none;
    margin-bottom: 0;
  }
}
.footer-links {
  font-weight: 500;
  font-size: 14px;
  line-height: 193%;
  color: #000000;
}
.footer-links li {
  margin-bottom: 2px;
}
.footer-links li a {
  transition: border-color 0.3s;
  border-bottom: 1px solid rgba(248, 71, 83, 0);
}
.footer-links li a:hover {
  border-bottom-color: #f84753;
}
.footer-main__address {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 136%;
  color: #000000;
  margin-bottom: 17px;
  max-width: 210px;
}
.footer-main__phones {
  margin-bottom: 5px;
}
.footer-main__phones p {
  margin: 0;
}
.footer-main__phones a {
  font-weight: bold;
  font-size: 20.9079px;
  line-height: 136%;
  display: inline-block;
  color: #000000;
  transition: color 0.3s;
}
.footer-main__phones a:hover {
  color: #f84753;
}
.footer-main__working-hours {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 24px;
  max-width: 203px;
}
.footer-main__email {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  color: #f84753;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 2px dotted #f84753;
  padding: 2px 0;
}
.footer-main__email:hover {
  color: #DA3E49;
  border-bottom-color: #DA3E49;
}
.footer-main-col__account {
  margin-bottom: 64px;
}
@media screen and (max-width: 995px) {
  .footer-main-col__account {
    margin-bottom: 0;
    width: 33.33%;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-col__account {
    width: 100%;
    margin-bottom: 32px;
  }
  .footer-main-col__account .footer-main-col__title {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 995px) {
  .footer-main-col__socials {
    width: 33.33%;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-col__socials {
    width: 100%;
  }
  .footer-main-col__socials .footer-main-col__title {
    display: none;
  }
}
.footer-main-bottom {
  padding-bottom: 34px;
}
@media screen and (max-width: 1395px) {
  .footer-main-bottom {
    padding-bottom: 24px;
  }
}
.footer-main-bottom__cols {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 1395px) {
  .footer-main-bottom__cols {
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-bottom__cols {
    display: block;
  }
}
.footer-main-bottom__col--small {
  width: 25%;
}
@media screen and (max-width: 995px) {
  .footer-main-bottom__col--small {
    width: 50%;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-bottom__col--small {
    width: 100%;
  }
}
.footer-main-bottom__col--large {
  width: 75%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
@media screen and (max-width: 1395px) {
  .footer-main-bottom__col--large {
    -webkit-align-items: center;
            align-items: center;
  }
}
@media screen and (max-width: 995px) {
  .footer-main-bottom__col--large {
    padding-left: 25px;
    width: 50%;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
@media screen and (max-width: 755px) {
  .footer-main-bottom__col--large {
    padding-left: 0;
    width: 100%;
  }
}
.copyright {
  font-size: 14px;
  line-height: 15px;
  color: #666666;
  display: block;
}
@media screen and (max-width: 1395px) {
  .copyright--lg {
    display: none;
  }
}
.copyright--md {
  display: none;
  padding-top: 25px;
}
@media screen and (max-width: 1395px) {
  .copyright--md {
    display: block;
  }
}
.footer-main__payment-logos {
  display: inline-block;
  font-size: 0;
  line-height: 1;
  margin-right: auto;
}
.footer-main__payment-logos img {
  margin-right: 16px;
  display: inline-block;
  vertical-align: middle;
}
.footer-main__payment-logos img:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1395px) {
  .footer-main__payment-logos {
    width: 33.33%;
  }
}
.footer-main__payment-logos--sm {
  display: none;
  margin-bottom: 9px;
}
@media screen and (max-width: 995px) {
  .footer-main__payment-logos--sm {
    display: block;
  }
}
@media screen and (max-width: 995px) {
  .footer-main__payment-logos--md-lg {
    display: none;
  }
}
.footer-main__site-name {
  font-size: 14px;
  line-height: 27px;
  color: #666666;
  margin-right: 64px;
}
@media screen and (max-width: 755px) {
  .footer-main__site-name {
    font-size: 12px;
    line-height: 16px;
  }
}
.footer-main__site-name--md {
  display: none;
  margin-right: 0;
  max-width: 200px;
}
@media screen and (max-width: 1395px) {
  .footer-main__site-name--md {
    display: block;
  }
}
@media screen and (max-width: 995px) {
  .footer-main__site-name--md {
    max-width: none;
  }
}
@media screen and (max-width: 1395px) {
  .footer-main__site-name--lg {
    display: none;
  }
}
.footer-main__service-links {
  font-size: 0;
  line-height: 1;
  padding-bottom: 4px;
}
.footer-main__service-links li {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  margin-left: 58px;
}
.footer-main__service-links li:first-child {
  margin-left: 0;
}
.footer-main__service-links li a {
  color: #666666;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 1px solid #666666;
  padding-bottom: 4px;
}
.footer-main__service-links li a:hover {
  color: #000;
  border-block-color: #000;
}
@media screen and (max-width: 1395px) {
  .footer-main__service-links {
    width: 66.66%;
  }
  .footer-main__service-links li {
    width: 50%;
    margin: 0;
  }
}
@media screen and (max-width: 995px) {
  .footer-main__service-links {
    width: calc(100% + 15px);
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin-right: -15px;
  }
  .footer-main__service-links li {
    width: auto;
    padding-right: 15px;
  }
}
@media screen and (max-width: 755px) {
  .footer-main__service-links {
    padding-top: 10px;
  }
  .footer-main__service-links li {
    font-size: 12px;
    line-height: 16px;
  }
}
.popup-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  -webkit-perspective: 500px;
          perspective: 500px;
  box-sizing: border-box;
  transition-timing-function: cubic-bezier(0, 0.3, 0.5, 1);
  transition-duration: 0.5s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 0;
  -webkit-perspective: 2000;
          perspective: 2000;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-container--active {
  display: block;
  opacity: 1;
}
.popup-container__scroll {
  overflow: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
}
.popup-container__scroll:after {
  content: "";
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.popup {
  position: relative;
  background: #FFFFFF;
  border-radius: 4px;
  z-index: 2;
  max-width: 639px;
  margin: 0 auto;
  padding: 16px;
  overflow: hidden;
}
.popup.popup--color,
.popup.popup--module-pc {
  padding: 24px 32px;
  max-width: 523px;
  min-height: 595px;
}
.popup.popup--color .color-title,
.popup.popup--module-pc .color-title {
  margin-bottom: 24px;
}
.popup.popup--color .popup__close,
.popup.popup--module-pc .popup__close {
  top: 24px;
  right: 24px;
}
.popup.popup--module-pc .popup__block {
  margin-bottom: 24px;
}
.popup.popup--module-pc .popup__block .filter-colors {
  overflow: hidden;
  max-height: 152px;
  transition: 0.3s;
}
.popup.popup--module-pc .popup__wrapper {
  max-height: 700px;
  overflow: auto;
  padding-right: 16px;
}
.popup.popup--module-pc .aside-filter__mobile-bottom {
  padding: 16px 28px;
  display: block;
}
.popup.popup--module-pc .aside-filter__mobile-bottom .btn {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
}
.popup.popup--module-pc .aside-filter__mobile-bottom .btn.btn--disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.popup.popup--module-pc .aside-filter__mobile-bottom .btn.btn--disabled:hover {
  background-color: #f84753;
}
.popup.popup--module-pc .aside-filter__mobile-bottom .btn span {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
}
.show-more-btn {
  font-family: Gilroy;
  background: none;
  border: none;
  padding: 0;
  margin: 20px auto 0 auto;
  display: -webkit-flex;
  display: flex;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  transition: 0.3s;
}
.show-more-btn:hover {
  color: #F84753;
}
.popup.popup--module {
  padding: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  background-color: transparent;
  max-width: unset;
  z-index: 9999;
}
.popup.popup--module .in-cart .product-buttons__add--with-price {
  display: none;
}
.popup.popup--module .product-buttons__add--with-price {
  width: 100%;
  margin-top: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.popup.popup--module .popup__wrapper {
  padding: 16px 0;
  padding-bottom: 133px;
  background-color: #ffffff;
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.popup.popup--module .aside-filter:not(.aside-filter--product) .filter-group-body__footer {
  display: none;
}
.popup.popup--module .module-btn-wrapper {
  padding-bottom: 60px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}
.popup.popup--module .filter-colors {
  margin-right: 0;
}
.popup.popup--module .filter-color--big .filter-color__wrapper {
  padding: 15px 24px;
}
.popup.popup--module .filter-group-header__value {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.popup.popup--module .filter-group-header__value .item-preview__color {
  width: 16px;
  height: 16px;
}
.popup-container__wrapper {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.popup__close {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s;
  right: 12px;
  top: 15px;
  width: 25px;
  height: 25px;
  z-index: 100;
}
.popup__close:not(.popup__close--sm):before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #a3a3a3;
  position: absolute;
  left: 5px;
  top: 4px;
  border-radius: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: all 0.3s;
}
.popup__close:not(.popup__close--sm):after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #a3a3a3;
  position: absolute;
  right: 7px;
  top: 4px;
  border-radius: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  transition: all 0.3s;
}
.popup__close:hover:not(.popup__close--sm):before, .popup__close:hover:not(.popup__close--sm):after {
  background-color: #000;
}
.popup__close--sm {
  right: 10px;
  top: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #a3a3a3;
}
.popup__close--sm:before {
  font-size: 15px;
  line-height: 8px;
  width: 14px;
  height: 9px;
  text-align: center;
  display: inline-block;
  left: 0;
  top: 5px;
}
.popup__close--sm:hover {
  color: #000;
}
.popup-city-check p {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  margin-bottom: 16px;
}
.popup-city-check {
  font-size: 0;
  line-height: 1;
  margin: 0 -4px;
  text-align: center;
}
.popup-city-check .btn {
  margin: 0 4px;
}
.popup-city-check__btn-fill {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.popup-city-check__btn-fill:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #D52E39;
  -webkit-animation: 4s width linear forwards;
          animation: 4s width linear forwards;
  z-index: -1;
}
.popup--calc {
  max-width: 980px;
  padding: 0;
}
.popup--form {
  padding: 40px 48px;
  max-width: 410px;
}
.popup--success {
  padding: 0px 63px;
  padding-bottom: 72px;
  max-width: 410px;
  text-align: center;
}
.popup--error {
  padding: 0px 33px;
  padding-bottom: 62px;
  max-width: 503px;
  text-align: center;
}
.submit-status {
  position: relative;
  padding-top: 182px;
}
.submit-status--success:before {
  content: "";
  width: 78px;
  height: 78px;
  background: rgba(111, 207, 151, 0.2) url("../img/success.svg") no-repeat center;
  background-size: 34px 26px;
  position: absolute;
  top: 64px;
  left: 50%;
  margin-left: -39px;
  border-radius: 50%;
}
.submit-status--error:before {
  content: "";
  width: 78px;
  height: 78px;
  background: rgba(248, 71, 83, 0.2) url("../img/meh.svg") no-repeat center;
  background-size: 48px 48px;
  position: absolute;
  top: 64px;
  left: 50%;
  margin-left: -39px;
  border-radius: 50%;
}
.submit-status__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  margin-bottom: 7px;
}
.submit-status__title:last-child {
  margin-bottom: 0;
}
.submit-status__descr {
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #000000;
}
.popup--callback {
  padding: 0;
  max-width: 840px;
}
.popup-callback-form {
  padding-left: 358px;
  position: relative;
  min-height: 490px;
}
.popup-callback-form:before {
  content: "";
  position: absolute;
  width: 358px;
  left: 0;
  top: 0;
  height: 100%;
  background: url("../img/callback.jpg") no-repeat 0 0;
  background-size: cover;
}
.popup-callback-form__body {
  padding: 64px 72px;
  padding-right: 60px;
  padding-bottom: 40px;
}
.popup-callback-form__body .form-item {
  max-width: 294px;
}
[data-popup=gallery] .popup-container__scroll {
  padding: 0;
}
[data-popup=gallery] .popup-container__wrapper {
  height: 100%;
}
.popup--gallery {
  min-height: 100%;
  max-width: none;
  border-radius: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}
.popup-gallery__container {
  position: relative;
}
.popup-gallery__container .popup__close {
  right: 0;
}
.popup-gallery {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding-bottom: 128px;
}
.popup-gallery .product-gallery-full {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  margin-bottom: 0;
  bottom: 128px;
  display: -webkit-flex;
  display: flex;
  padding-left: 144px;
  padding-right: 144px;
}
.popup-gallery .product-gallery-full .swiper-container {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.popup-gallery .product-gallery-full .swiper-slide {
  height: auto;
  display: -webkit-flex;
  display: flex;
}
.popup-gallery .product-gallery-full .swiper-button-prev {
  left: 48px;
  opacity: 1;
  visibility: visible;
}
.popup-gallery .product-gallery-full .swiper-button-next {
  right: 48px;
  opacity: 1;
  visibility: visible;
}
.popup-gallery .product-gallery-thumbs {
  position: absolute;
  height: 128px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f5f5f5;
  z-index: 1;
  padding: 30px 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.popup-gallery .product-gallery-thumbs .swiper-container {
  overflow: visible;
  margin: 0;
  padding: 0;
}
.popup-gallery .product-gallery-thumbs .swiper-slide {
  width: 103px;
  min-width: 103px;
}
.popup-gallery .product-gallery-thumb {
  height: 68px;
}
.popup--coupon {
  padding: 60px;
  padding-bottom: 64px;
  max-width: 840px;
  text-align: center;
  position: relative;
  background-color: #fff;
}
.popup--coupon:before {
  content: "";
  position: absolute;
  background-image: url("../img/pillow1.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 194px;
  left: 0px;
  top: 0px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .popup--coupon:before {
    background-image: url("../img/pillow1@2x.png");
    background-repeat: no-repeat;
  }
}
.popup--coupon:after {
  content: "";
  position: absolute;
  background-image: url("../img/pillow2.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 92px;
  height: 158px;
  right: 0px;
  top: 70px;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .popup--coupon:after {
    background-image: url("../img/pillow2@2x.png");
    background-repeat: no-repeat;
  }
}
.coupon-form {
  text-align: center;
  max-width: 597px;
  margin: 0 auto;
}
.coupon-form .form-accept {
  max-width: 460px;
  margin: 0 auto;
  margin-top: 16px;
}
.coupon-form__title {
  font-weight: normal;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #000000;
  margin-bottom: 32px;
}
.coupon-form__title span {
  font-weight: bold;
}
.popup--cities {
  padding: 0;
  max-width: 353px;
}
.popup--oneclick {
  max-width: 523px;
  padding: 49px 44px;
}
.popup--oneclick .form-header {
  margin-bottom: 16px;
}
.popup--oneclick .form-item {
  max-width: 323px;
  margin-bottom: 16px;
}
.popup--oneclick .btn {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 10px 40px;
}
.popup--oneclick .form-submit {
  margin-bottom: 13px;
}
.one-click-item {
  padding: 18px 24px;
  position: relative;
  height: 188px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.one-click-item:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(179.76deg, rgba(0, 0, 0, 0.8) 0.47%, rgba(255, 255, 255, 0) 95.81%);
}
.one-click-item__img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  position: absolute;
  z-index: -1;
}
.one-click-item__title {
  left: 15px;
  top: 25px;
  position: absolute;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
  z-index: 1;
}
.popup--item {
  max-width: 1336px;
  padding: 0;
  padding-bottom: 52px;
}
.popup--item .product {
  margin-bottom: 0;
  z-index: 0;
  -webkit-flex-direction: row;
          flex-direction: row;
}
.popup--item .product-right {
  padding-bottom: 24px;
}
.popup--item .product-left {
  width: 47.75%;
  padding: 40px 56px;
}
.popup--item .product-right {
  width: 52.25%;
  padding-top: 47px;
  padding-right: 40px;
}
.popup--item .product-name {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  margin-bottom: 19px;
}
.popup--item .product-top-controls {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 24px;
}
.popup-item__link {
  text-align: center;
}
.popup-item__link a {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #a3a3a3;
  display: inline-block;
  border-bottom: 1px dashed #a3a3a3;
  transition: all 0.3s;
}
.popup-item__link a:hover {
  color: #000;
  border-bottom-color: #000;
}
.popup--question,
.popup--review,
.popup--review {
  max-width: 1328px;
  background: #F2F2F5;
  padding-top: 65px;
  padding: 32px 64px;
  padding-bottom: 64px;
}
.question-form {
  max-width: 1008px;
  margin: 0 auto;
}
.question-form .form-header {
  margin-bottom: 48px;
}
.question-form .form-header--border {
  margin-bottom: 45px;
  padding-bottom: 39px;
  border-bottom: 1px solid rgba(163, 163, 163, 0.4);
}
.question-form .form-submit .btn {
  min-width: 213px;
}
.question-form-item {
  padding-left: 174px;
  margin-bottom: 32px;
}
.question-form-item:last-child {
  margin-bottom: 0;
}
.review-rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 755px) {
  .review-rating {
    display: block;
    text-align: center;
  }
}
.review-rating__stars {
  display: -webkit-flex;
  display: flex;
  margin-left: -9px;
  margin-right: 51px;
}
.review-rating__stars.is-active .review-rating__star {
  opacity: 1;
  color: #f84753;
}
.review-rating__stars.is-active .review-rating__star.is-active ~ .review-rating__star {
  color: #a3a3a3;
}
.review-rating__stars.is-hover .review-rating__star {
  color: #f84753 !important;
}
.review-rating__stars.is-hover .review-rating__star.is-hover ~ .review-rating__star {
  color: #a3a3a3 !important;
}
@media screen and (max-width: 755px) {
  .review-rating__stars {
    margin-right: 0;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.review-rating__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  margin-top: -3px;
}
@media screen and (max-width: 755px) {
  .review-rating__text {
    text-align: center;
    padding-top: 8px;
    max-width: 293px;
    margin-left: auto;
    margin-right: auto;
  }
}
.review-rating__star {
  width: 59px;
  height: 38px;
  color: #a3a3a3;
  opacity: 1;
  cursor: pointer;
  text-align: center;
}
.review-rating__star:before {
  font-size: 38px;
  display: block;
  top: -3px;
  left: 0;
  position: relative;
  margin: 0 auto;
}
.review-rating__star:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1395px) {
  .popup-gallery .product-gallery-full {
    padding-left: 104px;
    padding-right: 104px;
  }
  .popup-gallery .product-gallery-full .swiper-button-prev {
    left: 40px;
  }
  .popup-gallery .product-gallery-full .swiper-button-next {
    right: 40px;
  }
  .popup-gallery .product-gallery-thumbs {
    padding: 30px 40px;
  }
  .popup--question,
.popup--review {
    padding-top: 40px;
    padding: 32px 64px;
    padding-bottom: 64px;
    max-width: 944px;
  }
}
@media screen and (max-width: 995px) {
  .popup-container[data-popup=calc] .popup-container__wrapper {
    padding: 0;
  }
  .popup-container[data-popup=calc] .popup-container__scroll {
    padding: 0;
  }
  .popup--calc {
    max-width: none;
    border-radius: 0;
  }
  .popup-gallery .product-gallery-full {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 52px;
  }
  .popup-gallery .product-gallery-full .swiper-button-prev {
    display: none;
  }
  .popup-gallery .product-gallery-full .swiper-button-next {
    display: none;
  }
  .popup-gallery .product-gallery-thumbs {
    padding: 30px 32px;
  }
  .popup--question,
.popup--review {
    padding: 32px 32px;
    padding-top: 72px;
    padding-bottom: 56px;
    max-width: 768px;
  }
  .question-form .form-header--border {
    margin-bottom: 39px;
    padding-bottom: 17px;
  }
  .question-form .form-field-label {
    display: none;
  }
  .question-form-item {
    padding-left: 150px;
  }
}
@media (max-width: 840px) {
  .popup-callback-form__body {
    padding: 54px 40px;
    padding-right: 40px;
    padding-bottom: 60px;
  }
  .popup-callback-form {
    padding-left: 300px;
  }
  .popup-callback-form:before {
    width: 300px;
  }
  .popup--coupon:before {
    left: -30px;
  }
  .popup--coupon:after {
    right: -30px;
  }
}
@media screen and (max-width: 755px) {
  .popup__close {
    right: 16px;
    top: 20px;
  }
  .popup__close--sm {
    right: 16px;
    top: 21px;
    width: 17px;
    height: 17px;
  }
  .popup__close--sm:before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #a3a3a3;
    position: absolute;
    left: 2px;
    top: 0;
    border-radius: 5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    transition: all 0.3s;
  }
  .popup__close--sm:after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #a3a3a3;
    position: absolute;
    right: 2px;
    top: 0;
    border-radius: 5px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    transition: all 0.3s;
  }
  .popup__close--sm:hover:before, .popup__close--sm:hover:after {
    background-color: #000;
  }
  .popup--form,
.popup--oneclick {
    padding: 77px 16px;
    max-width: none;
    border-radius: 0;
    min-height: 100%;
    width: 100%;
    text-align: center;
  }
  .popup--form .popup__wrapper,
.popup--oneclick .popup__wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .popup--callback {
    min-height: 100%;
    max-width: none;
    border-radius: 0;
    width: 100%;
    max-width: none;
  }
  [data-popup=form] .popup-container__scroll,
[data-popup=callback] .popup-container__scroll {
    padding: 0;
  }
  [data-popup=form] .popup-container__wrapper,
[data-popup=callback] .popup-container__wrapper {
    height: 100%;
  }
  .popup-callback-form__body {
    padding: 91px 16px;
    padding-bottom: 60px;
  }
  .popup-callback-form__body .form-item {
    max-width: none;
  }
  .popup-callback-form {
    padding-left: 0;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .popup-callback-form:before {
    display: none;
  }
  .popup--success {
    padding: 0px 32px;
    padding-bottom: 48px;
  }
  .submit-status__title {
    font-size: 20px;
    line-height: 25px;
  }
  .submit-status__descr {
    font-size: 16px;
    line-height: 24px;
  }
  .popup--error {
    padding: 0px 32px;
    padding-bottom: 48px;
  }
  .submit-status {
    position: relative;
    padding-top: 142px;
  }
  .submit-status--success:before {
    top: 40px;
  }
  .submit-status--error:before {
    top: 40px;
  }
  .popup-gallery {
    padding-bottom: 73px;
  }
  .popup-gallery .product-gallery-full {
    bottom: 73px;
  }
  .popup-gallery .product-gallery-thumbs {
    padding: 16px;
    display: block;
    height: 73px;
  }
  .popup-gallery .product-gallery-thumbs .swiper-slide {
    min-width: 61px;
    width: 61px;
  }
  .popup-gallery .product-gallery-thumb {
    height: 41px;
  }
  [data-popup=coupon] {
    background-color: rgba(0, 0, 0, 0.5);
  }
  [data-popup=coupon] .popup-container__scroll {
    padding: 0;
  }
  [data-popup=coupon] .popup-container__wrapper {
    vertical-align: bottom;
  }
  .popup--coupon {
    padding: 16px;
    padding-top: 51px;
    padding-bottom: 56px;
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 4px 4px 0px 0px;
  }
  .popup--coupon:before, .popup--coupon:after {
    display: none;
  }
  .coupon-form {
    max-width: none;
    margin: 0 auto;
  }
  .coupon-form .form-accept {
    margin-top: 12px;
  }
  .coupon-form__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  .popup--oneclick .form-title--lg {
    font-size: 20px;
    line-height: 25px;
  }
  .popup--oneclick .form-header {
    margin-bottom: 24px;
  }
  .popup--oneclick .form-item {
    max-width: none;
  }
  .popup--oneclick .form-accept {
    text-align: left;
  }
  .one-click-item {
    height: auto;
    text-align: left;
  }
  .one-click-item__title {
    font-size: 16px;
    line-height: 20px;
  }
  .popup--question {
    min-height: 100%;
    padding: 73px 16px;
  }
  .question-form .form-header {
    margin-bottom: 16px;
    text-align: center;
  }
  .question-form-item {
    padding-left: 0;
  }
  .popup--question,
.popup--review {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 20px;
  }
  .popup--review {
    padding-top: 16px;
  }
  .popup--review .form-title--lg {
    font-size: 14px;
    line-height: 17px;
  }
  .popup--review .form-header {
    border-bottom: 0;
    margin-bottom: 40px;
    max-width: 188px;
    margin-left: auto;
    margin-right: auto;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.form-title.exit {
  text-align: center;
}
.popup.exit {
  max-width: 340px;
}
.popup.exit .form-field-wrap--md {
  width: 260px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.popup.exit .form-field-item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.popup.exit .btn {
  width: 126px;
  height: 43px;
}
.hero {
  padding-top: 19px;
  background-color: #fff;
}
.hero-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.hero-slider {
  width: 75%;
  margin-left: 0;
}
.hero-slide {
  position: relative;
  height: 546px;
  z-index: 0;
  color: #fff;
  padding: 70px;
}
.hero-slide__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;
  max-width: 564px;
  margin-bottom: 12px;
}
.hero-slide__descr {
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  max-width: 350px;
  margin-bottom: 16px;
}
.hero-slide__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #000;
}
.hero-slide__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.hero-slide__image .swiper-lazy + .hero-slide__loading {
  opacity: 1;
  visibility: visible;
}
.hero-slide__image .swiper-lazy-loaded + .hero-slide__loading {
  opacity: 0;
  visibility: hidden;
}
.hero-slide__loading {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.hero-slide__loading .lds-ring {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.hero-bnr {
  width: 25%;
  height: 50%;
  position: absolute;
  padding: 32px;
  z-index: 1;
}
.hero-bnr--top {
  right: 0;
  top: 0;
  background: linear-gradient(315.99deg, #aee7f3 37.68%, #a9b1fc 89.86%);
  border-radius: 0px 4px 0px 0px;
}
.hero-bnr--bottom {
  right: 0;
  bottom: 0;
  background: linear-gradient(289.64deg, #fc6359 10.6%, #ff4b4b 73.62%);
  border-radius: 0px 0px 4px 0px;
}
.hero-bnr__loading {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.hero-bnr__loading .lds-ring {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.hero-bnr__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero-bnr__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.hero-bnr__bg img.lazyload + .hero-bnr__loading {
  opacity: 1;
  visibility: visible;
}
.hero-bnr__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero-bnr__svg {
  width: 194px;
  height: 194px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.hero-bnr__svg img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
  font-family: "object-fit: cover; object-position: right bottom;";
}
.hero-bnr-link {
  display: none;
}
.hero-slider__prev {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: none;
  right: auto;
  left: 67px;
  top: auto;
  margin: 0;
  bottom: 44px;
}
@media screen and (max-width: 995px) {
  .hero-slider__prev {
    left: 40px;
  }
}
@media screen and (max-width: 755px) {
  .hero-slider__prev {
    display: none;
  }
}
.hero-slider__prev:before {
  border-color: #fff;
  opacity: 0.3;
  transition: all 0.3s;
  width: 7px;
  height: 7px;
  margin-top: -4px;
}
.hero-slider__prev:hover {
  background: none;
}
.hero-slider__prev:hover:before {
  opacity: 1;
}
.hero-slider__next {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: none;
  right: auto;
  left: 107px;
  top: auto;
  margin: 0;
  bottom: 32px;
}
@media screen and (max-width: 995px) {
  .hero-slider__next {
    left: 80px;
  }
}
@media screen and (max-width: 755px) {
  .hero-slider__next {
    display: none;
  }
}
.hero-slider__next:before {
  border-color: #fff;
  opacity: 0.3;
  transition: all 0.3s;
}
.hero-slider__next svg {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 48px;
  height: 48px;
  -webkit-transform: rotateY(0deg) rotateZ(-90deg);
          transform: rotateY(0deg) rotateZ(-90deg);
}
.hero-slider__next svg circle {
  stroke-dasharray: 145px;
  stroke-dashoffset: 145px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: white;
  fill: none;
}
.hero-slider__next.is-animation svg circle {
  -webkit-animation: countdown 6s linear infinite forwards;
          animation: countdown 6s linear infinite forwards;
}
.hero-slider__next:hover {
  background: none;
}
.hero-slider__next:hover:before {
  opacity: 1;
}
@-webkit-keyframes countdown {
  from {
    stroke-dashoffset: 145px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
@keyframes countdown {
  from {
    stroke-dashoffset: 145px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
@media screen and (max-width: 1395px) {
  .hero {
    padding-top: 8px;
  }
  .hero-slider {
    width: 68%;
  }
  .hero-bnr {
    width: 32%;
    padding: 32px 24px;
  }
}
@media screen and (max-width: 995px) {
  .hero-slider {
    width: 66%;
  }
  .hero-slider .swiper-pagination-fraction,
.hero-slider .swiper-pagination-custom, .hero-slider > .swiper-pagination-bullets {
    display: block;
  }
  .hero-bnr {
    width: 34%;
    padding: 32px 16px;
  }
  .hero-slide {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 755px) {
  .hero-slider {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
  }
  .hero-slide {
    min-height: 198px;
    height: auto;
    padding: 22px 12px;
  }
  .hero-slide__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 9px;
  }
  .hero-slide__descr {
    font-size: 12px;
    line-height: 16px;
  }
  .hero-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .hero-bnr {
    position: relative;
    width: calc(50% - 4px);
    border-radius: 4px;
    height: auto;
    padding: 8px;
    min-height: 89px;
    overflow: hidden;
  }
  .hero-bnr .btn {
    display: none;
  }
  .hero-bnr__title {
    font-size: 14px;
    line-height: 17px;
  }
  .hero-bnr__svg {
    width: 65px;
    height: 65px;
  }
}
.features-section {
  background-color: #fff;
  padding-bottom: 24px;
}
.features-section__title {
  padding-top: 48px;
  padding-bottom: 64px;
}
.features-items {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.feature-item {
  width: 16.666667%;
  text-align: center;
  position: relative;
  padding: 0 8px;
  padding-top: 115px;
  margin-bottom: 40px;
}
.feature-item:before {
  content: "";
  position: absolute;
  opacity: 0.3;
  width: 1px;
  height: 101px;
  top: 0;
  right: 0;
  background-color: #a3a3a3;
}
.feature-item p {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  margin: 0;
}
.feature-item--item2 .feature-item__icon img {
  max-height: 53px;
}
.feature-item:last-child:before {
  display: none;
}
.feature-item__icon {
  position: absolute;
  width: 100%;
  height: 80px;
  top: 12px;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.feature-item__icon img {
  max-width: 100%;
  height: auto;
}
.feature-item__icon svg {
  opacity: 0;
}
.feature-item__icon svg.is-animating {
  opacity: 1;
}
@media screen and (max-width: 1395px) {
  .feature-item:before {
    display: none;
  }
}
@media screen and (max-width: 995px) {
  .features-section {
    padding-bottom: 15px;
  }
  .features-section__title {
    padding-top: 32px;
    padding-bottom: 73px;
  }
  .feature-item {
    width: 33.33%;
    margin-bottom: 49px;
  }
}
@media screen and (max-width: 755px) {
  .features-section {
    padding-bottom: 32px;
  }
  .features-section__title {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .features-section__title h3,
.features-section__title .h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .feature-item__icon {
    height: 60px;
    top: 0;
  }
  .feature-item {
    width: 50%;
    margin-bottom: 32px;
    padding-top: 70px;
  }
}
.items-slider-section {
  padding-bottom: 48px;
  border-bottom: 1px solid #dedede;
}
.items-slider-section:last-child {
  border-bottom: 0;
  padding-bottom: 100px;
}
.items-slider {
  position: relative;
}
.items-slider .swiper-slide {
  height: auto;
  display: -webkit-flex;
  display: flex;
}
.items-slider .swiper-scrollbar {
  display: none;
}
.items-slider .swiper-button-prev,
.items-slider .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.items-slider .swiper-button-prev {
  left: -24px;
}
.items-slider .swiper-button-next {
  right: -24px;
}
.items-slider:hover .swiper-button-prev,
.items-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1395px) {
  .items-slider .swiper-container {
    overflow: visible;
  }
  .items-slider .swiper-scrollbar {
    display: block;
  }
  .items-slider .swiper-button-prev,
.items-slider .swiper-button-next {
    display: none;
  }
  .items-slider .swiper-slide {
    width: 224px !important;
    min-width: 224px !important;
  }
}
@media screen and (max-width: 755px) {
  .items-slider .swiper-slide {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
  }
  .items-slider .item-preview__controls {
    text-align: left;
  }
  .items-slider .item-preview__add-to-cart {
    display: inline-block;
  }
  .items-slider .item-preview__add-to-cart .btn {
    border: 1px solid #EEEEF0;
    padding: 7px 5px;
    color: #000;
  }
  .items-slider .item-preview__add-to-cart .btn:hover {
    border-color: #000;
  }
  .items-slider-section {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .items-slider-section:last-child {
    padding-bottom: 56px;
  }
}
.sales-blocks {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 80px 0;
  border-bottom: 1px solid #dedede;
}
.sales-blocks .swiper-wrapper {
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.sales-blocks .swiper-slide {
  width: calc(50% - 10px);
  display: -webkit-flex;
  display: flex;
  height: auto;
}
.sale-block {
  position: relative;
  z-index: 0;
  padding: 24px 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
.sale-block:before {
  content: "";
  position: absolute;
  width: 386px;
  height: 211px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(196, 196, 196, 0) 91.84%);
  border-radius: 4px;
  z-index: -1;
}
.sale-block .btn {
  min-width: 155px;
}
.sale-block__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  z-index: -2;
}
.sale-block__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  -webkit-mask-box-image: 8px;
          mask-border: 8px;
  max-width: 334px;
}
.sale-block__price {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 24px;
}
.sale-block__mobile-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 1395px) {
  .sales-blocks {
    padding: 65px 0;
  }
  .sales-blocks .swiper-slide {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 995px) {
  .sales-blocks {
    padding-top: 40px;
  }
  .sale-block {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 755px) {
  .sales-blocks {
    padding-top: 48px;
    padding-bottom: 0;
    border: 0;
  }
  .sale-block {
    padding: 16px 16px;
  }
  .sale-block .btn {
    display: none;
  }
  .sale-block__name {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 24px;
  }
  .sale-block__price {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
  }
  .sale-block__mobile-link {
    display: block;
  }
}
@media (max-width: 600px) {
  .sales-blocks {
    overflow: visible;
  }
  .sales-blocks .swiper-slide {
    width: 264px;
    min-width: 264px;
  }
}
.popular-categories {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
  padding-bottom: 70px;
}
.popular-category {
  width: calc(20% - 16px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  background: #ffffff;
  border-radius: 4px;
  padding: 18px;
  margin-right: 16px;
  margin-bottom: 16px;
  position: relative;
  min-height: 158px;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
}
.popular-category:hover {
  box-shadow: 0px 0px 1px rgba(255, 75, 75, 0.04), 0px 4px 8px rgba(255, 75, 75, 0.06), 0px 8px 24px rgba(255, 75, 75, 0.26), 0px 10px 32px rgba(255, 75, 75, 0.2);
  background: #f84753;
  color: #fff;
}
.popular-category:hover .popular-category__total {
  color: #fff;
}
.popular-category__image {
  position: absolute;
  width: 126px;
  height: 121px;
  right: 0;
  top: 50%;
  margin-top: -60px;
}
.popular-category__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
  font-family: "object-fit: cover; object-position: center right;";
}
.popular-category__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  max-width: 120px;
  position: relative;
  z-index: 1;
}
.popular-category__total {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  transition: color 0.3s;
}
.popular-category--sm {
  min-height: 124px;
  padding: 16px;
}
.popular-category--sm .popular-category__image {
  position: absolute;
  width: 100px;
  height: 97px;
  margin-top: -48px;
}
.popular-category--sm .popular-category__name {
  max-width: 150px;
}
@media screen and (max-width: 1395px) {
  .popular-category {
    width: calc(33.33% - 16px);
  }
}
@media screen and (max-width: 755px) {
  .popular-categories {
    margin-right: -4px;
    padding-bottom: 56px;
  }
  .popular-category {
    margin-right: 4px;
    width: calc(50% - 4px);
    margin-bottom: 8px;
    min-height: 95px;
    padding: 18px 9px;
  }
  .popular-category__name {
    font-size: 16px;
    line-height: 17px;
    font-weight: 400;
    padding-right: 40px;
  }
  .popular-category__total {
    font-size: 12px;
    line-height: 16px;
  }
  .popular-category__image {
    position: absolute;
    width: 63px;
    height: 100%;
    right: 0;
    top: 0;
    margin-top: 0;
  }
  .popular-category--sm .popular-category__name {
    max-width: 150px;
  }
}
.about-section {
  position: relative;
  min-height: 716px;
  background-color: #fff;
  border-bottom: 1px solid #dedede;
}
.about-section__image {
  position: absolute;
  height: 100%;
  left: 0;
  width: 57.4%;
}
.about-section__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.about-section__container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.about-section__text-wrapper {
  width: 42%;
  padding: 90px 0;
  padding-left: 134px;
}
.about-section__text {
  max-width: 373px;
}
.about-section__title {
  margin-bottom: 32px;
  padding: 0;
}
@media screen and (max-width: 1395px) {
  .about-section__image {
    width: 55%;
  }
  .about-section__text-wrapper {
    width: 43%;
    padding: 70px 0;
    padding-left: 54px;
  }
  .about-section__title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 995px) {
  .about-section {
    padding-top: 419px;
    min-height: 0;
  }
  .about-section__image {
    width: 100%;
    height: 419px;
    top: 0;
    bottom: auto;
  }
  .about-section__text-wrapper {
    width: 100%;
    padding: 24px 0;
    padding-bottom: 48px;
  }
  .about-section__text {
    max-width: 581px;
  }
}
@media screen and (max-width: 755px) {
  .about-section {
    padding-top: 312px;
  }
  .about-section__image {
    height: 312px;
  }
  .about-section__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.why-items-section {
  padding-top: 16px;
  padding-bottom: 60px;
  background-color: #fff;
}
.why-items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 27px;
}
.why-items__col {
  display: -webkit-flex;
  display: flex;
}
.why-items__col:first-child {
  width: 60%;
}
.why-items__col:last-child {
  width: 40%;
}
.why-items__col:last-child .why-item {
  width: 50%;
}
.why-item {
  width: 33.33%;
  margin-bottom: 41px;
  position: relative;
  padding-top: 99px;
  padding-right: 20px;
}
.why-item__icon {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
}
.why-item__icon svg {
  opacity: 0;
}
.why-item__icon svg.is-animating {
  opacity: 1;
}
.why-item__name {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 24px;
}
.why-item__descr {
  max-width: 214px;
}
@media screen and (max-width: 1395px) {
  .why-items-section {
    padding-top: 0;
    padding-bottom: 23px;
  }
  .why-items {
    padding-top: 0;
  }
  .why-item {
    width: 100%;
  }
  .why-item__descr {
    max-width: none;
  }
  .why-items__col {
    display: block;
  }
  .why-items__col:first-child {
    width: 50%;
  }
  .why-items__col:last-child {
    width: 50%;
  }
  .why-items__col:last-child .why-item {
    width: 100%;
  }
}
@media screen and (max-width: 755px) {
  .why-items-section {
    padding-bottom: 15px;
  }
  .why-items-section__title {
    padding-top: 32px;
    padding-bottom: 42px;
  }
  .why-items-section__title h3,
.why-items-section__title .h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .why-item {
    margin-bottom: 25px;
  }
  .why-item__name {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .why-item__descr {
    font-size: 12px;
    line-height: 16px;
  }
}
.news-section {
  padding-bottom: 100px;
}
.news-slider {
  position: relative;
}
.news-slider .swiper-container {
  padding: 30px 10px;
  margin: -30px -10px;
}
.news-slider .swiper-pagination-fraction {
  top: -39px;
}
.news-preview {
  padding: 32px;
  padding-bottom: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  min-height: 384px;
  position: relative;
  z-index: 0;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.news-preview--white {
  color: #fff;
}
.news-preview--white .news-preview__date {
  color: #fff;
}
.news-preview--white .news-preview__img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(132.41deg, rgba(0, 0, 0, 0.37) 13.44%, rgba(0, 0, 0, 0) 87.49%);
}
.news-preview--gradient:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  bottom: 184px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  z-index: -1;
}
.news-preview--gradient .news-preview__img {
  width: 305px;
  height: 222px;
  right: 0;
  left: auto;
  top: auto;
  bottom: 0;
}
.news-preview--gradient .news-preview__img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
  font-family: "object-fit: cover; object-position: bottom right;";
}
.news-preview--gradient .news-preview__name {
  color: #fff;
}
.news-preview--gradient-blue:before {
  background: linear-gradient(109.18deg, #1b23ee 42.91%, #52cce7 77.03%);
}
.news-preview--gradient-brown:before {
  background: linear-gradient(233.95deg, #ffac4b -2.16%, #9c2000 104.14%);
}
.news-preview--gradient2 .news-preview__img {
  width: 217px;
  height: 176px;
  bottom: 66px;
}
.news-preview--product .news-preview__img {
  width: 50%;
  height: 50%;
  left: auto;
  right: 0;
  bottom: 0;
  top: auto;
}
.news-preview--product .news-preview__img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.news-preview--product.news-preview--lg .news-preview__img {
  height: 100%;
}
.news-preview:hover {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
}
.news-preview__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.news-preview__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.news-preview__name {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  max-width: 315px;
}
.news-preview__date {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
}
@media screen and (min-width: 1396px) {
  .news-preview--lg.news-preview--gradient:before {
    width: 2000px;
    height: 2000px;
  }
  .news-preview--lg.news-preview--gradient .news-preview__img {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 1395px) {
  .news-slider .swiper-pagination-fraction {
    top: -25px;
  }
  .news-slider .swiper-container {
    overflow: visible;
  }
  .news-slider .swiper-button-prev,
.news-slider .swiper-button-next {
    display: none;
  }
  .news-slider .swiper-slide {
    width: 383px;
    min-width: 383px;
  }
  .news-preview {
    padding: 32px 24px;
  }
  .news-preview--gradient-blue .news-preview__img {
    width: 285px;
    height: 207px;
  }
}
@media screen and (max-width: 995px) {
  .news-slider .swiper-pagination-fraction {
    display: none;
  }
  .news-slider .swiper-slide {
    width: 344px;
    min-width: 344px;
    max-width: 344px;
  }
}
@media screen and (max-width: 755px) {
  .news-section {
    padding-bottom: 48px;
  }
  .news-slider .swiper-slide {
    width: 265px;
    min-width: 265px;
    max-width: 265px;
  }
  .news-preview__name {
    font-size: 16px;
    line-height: 20px;
  }
  .news-preview__date {
    font-size: 12px;
    line-height: 16px;
  }
  .news-preview--gradient-blue:before {
    width: 800px;
    height: 800px;
    bottom: 65px;
  }
  .news-preview {
    padding: 16px;
    min-height: 189px;
  }
  .news-preview--gradient-blue .news-preview__img {
    width: 187px;
    height: 136px;
  }
}
.callback-section {
  margin-bottom: 40px;
}
.callback-form {
  background: #ffffff;
  border: 1px solid #eeeef0;
  box-sizing: border-box;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 48px 117px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.callback-form__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  max-width: 505px;
  min-height: 51px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.callback-form__title br {
  display: none;
}
@media screen and (max-width: 1395px) {
  .callback-form {
    padding: 40px 48px;
  }
  .callback-form__title {
    max-width: 336px;
  }
  .callback-form__title br {
    display: block;
  }
}
@media screen and (max-width: 995px) {
  .callback-form {
    padding: 32px 40px;
    padding-bottom: 48px;
    display: block;
  }
  .callback-form__title {
    max-width: none;
    text-align: center;
    -webkit-justify-content: center;
            justify-content: center;
    margin-bottom: 16px;
  }
  .callback-form__title br {
    display: none;
  }
}
@media screen and (max-width: 755px) {
  .callback-section {
    margin-bottom: 0px;
  }
  .callback-form {
    padding: 32px 16px;
    padding-bottom: 48px;
  }
  .callback-form__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 16px;
  }
  .callback-form__title br {
    display: none;
  }
}
.reviews-section {
  padding-bottom: 60px;
}
.reviews-slider {
  position: relative;
}
.reviews-slider .swiper-container {
  padding: 30px 10px;
  margin: -30px -10px;
}
.review-item {
  background: #ffffff;
  border-radius: 4px;
  padding: 40px 54px;
  transition: box-shadow 0.3s;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  min-height: 470px;
}
.review-item:hover {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
}
.review-item__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 32px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.review-item__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  margin-right: 10px;
}
.review-item__date {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #000000;
  opacity: 0.7;
}
.review-item__text-container {
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 30px;
  max-width: 311px;
}
.review-item__text-container.is-hidden .review-item__show-more {
  display: inline-block;
}
.review-item__text-container.is-hidden .review-item__text-hidden:before {
  display: block;
}
.review-item__text-container.is-open .review-item__show-more {
  display: none;
}
.review-item__text-container.is-open .review-item__text-hidden:before {
  display: none;
}
.review-item__text-hidden {
  overflow: hidden;
  height: 210px;
  position: relative;
  transition: height 0.3s;
}
.review-item__text-hidden:before {
  content: "";
  width: 100%;
  height: 166px;
  position: absolute;
  left: 0;
  bottom: -55px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, #ffffff 73.44%);
  display: none;
}
.review-item__show-more {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: color 0.3s;
  cursor: pointer;
  display: none;
}
.review-item__show-more:hover {
  color: #000;
}
.review-item__text {
  font-size: 16px;
  line-height: 27px;
}
.review-item__source {
  font-size: 14px;
  line-height: 19px;
  color: #000;
}
.review-item__source span {
  color: #a3a3a3;
  margin-right: 9px;
}
.review-item__source a {
  transition: color 0.3s;
  color: #000;
}
.review-item__source a:hover {
  color: #f84753;
}
@media screen and (max-width: 1395px) {
  .reviews-slider .swiper-container {
    overflow: visible;
  }
  .reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next {
    display: none;
  }
  .reviews-slider .swiper-slide {
    width: 384px;
    max-width: 384px;
    min-width: 384px;
  }
  .review-item {
    padding: 40px 24px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 995px) {
  .reviews-slider .swiper-slide {
    width: 344px;
    max-width: 344px;
    min-width: 344px;
  }
  .review-item {
    padding: 40px 16px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 755px) {
  .reviews-section {
    padding-bottom: 0;
  }
  .reviews-slider .swiper-slide {
    width: 264px;
    max-width: 264px;
    min-width: 264px;
  }
  .review-item {
    min-height: 349px;
  }
  .review-item__text-hidden {
    height: 140px;
  }
  .review-item__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.manufacturers-section {
  overflow: hidden;
  background: #fff;
  text-align: center;
}
.manufacturers-section .section-title__with-link a span:nth-child(2) {
  display: none;
}
.manufacturers-logos {
  display: inline-block;
  transition: all 0.3s;
}
.manufacturers-logos__row {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 57px;
  margin-right: -33px;
  -webkit-align-items: center;
          align-items: center;
}
.manufacturer-logo {
  width: 158px;
  min-width: 158px;
  margin-right: 33px;
}
.manufacturer-logo img {
  background-blend-mode: darken;
  opacity: 0.7;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: all 0.3s;
  max-width: 100%;
  height: auto;
}
.manufacturer-logo:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.manufacturers-logos-wrap {
  text-align: center;
}
.manufacturers-logos-scroll {
  display: inline-block;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
@media screen and (max-width: 755px) {
  .manufacturers-section .section-title__with-link a span:nth-child(1) {
    display: none;
  }
  .manufacturers-section .section-title__with-link a span:nth-child(2) {
    display: block;
  }
  .manufacturer-logo {
    width: 95px;
    min-width: 95px;
    margin-right: 20px;
  }
  .manufacturers-logos__row {
    margin-bottom: 34px;
    margin-right: -20px;
  }
  .manufacturers-logos-wrap {
    overflow: auto;
  }
  .manufacturers-logos-scroll {
    -webkit-transform: translate(0) !important;
            transform: translate(0) !important;
  }
}
@media (max-width: 756px) {
  .hero-bnr.hero-bnr--bottom {
    display: none;
  }
  .hero-bnr.hero-bnr--bottom.hero-bnr-link {
    display: block;
  }
}
.catalog-header {
  position: relative;
  z-index: 0;
  margin-bottom: 41px;
}
.catalog-header__container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  min-height: 357px;
}
.btn-showMore {
  display: none;
}
.catalog-header__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #c4c4c4;
}
.catalog-header__cover:before {
  content: "";
  position: absolute;
  width: 1440px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -720px;
  background: linear-gradient(89.95deg, rgba(17, 17, 17, 0.58) 2.48%, rgba(0, 0, 0, 0) 43.09%);
  z-index: 1;
}
.catalog-header__cover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 50%;
  margin-right: 720px;
  background: rgba(17, 17, 17, 0.58);
}
.catalog-header__cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.catalog-header__top,
.catalog-header__bottom {
  width: 100%;
}
.catalog-header__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 0;
}
.catalog-features {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 41px;
  margin-top: -85px;
  margin-right: -16px;
  overflow: visible;
  position: relative;
  z-index: 7;
}
.catalog-features .swiper-slide {
  width: calc(25% - 16px);
  margin-right: 16px;
  display: -webkit-flex;
  display: flex;
  height: auto;
}
.catalog-features--no-mt {
  margin-top: 0;
  margin-bottom: 16px;
}
.catalog-feature {
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  padding: 16px 30px;
  padding-bottom: 34px;
  position: relative;
}
.catalog-feature__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 14px;
}
.catalog-feature__descr {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
}
.catalog-feature__header {
  display: none;
  position: absolute;
  width: 100%;
  height: 70px;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.catalog-feature__button {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 4px;
  top: 4px;
  background: rgba(238, 238, 240, 0.5);
  border-radius: 50%;
  border: 0;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
  outline: none;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  display: none;
  transition: all 0.3s;
  color: #a3a3a3;
  padding: 0;
}
.catalog-feature__button span {
  position: absolute;
  width: 10px;
  height: 10px;
  font-size: 8px;
  line-height: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.catalog-feature__button span:before, .catalog-feature__button span:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  border-radius: 10px;
  background-color: #a3a3a3;
  left: 50%;
  top: 50%;
}
.catalog-feature__button span:before {
  width: 10px;
  height: 2px;
  -webkit-transform: translateX(-50%) scale(1, 0.5);
          transform: translateX(-50%) scale(1, 0.5);
  margin-top: -1px;
  margin-left: 0px;
}
.catalog-feature__button span:after {
  height: 10px;
  width: 2px;
  -webkit-transform: translateY(-50%) scale(0.5, 1);
          transform: translateY(-50%) scale(0.5, 1);
  margin-top: 0px;
  margin-left: -1px;
}
.catalog-feature__button:hover {
  background-color: #f84753;
  color: #fff;
}
.catalog-feature__button:hover span:before, .catalog-feature__button:hover span:after {
  background-color: #fff;
}
@media screen and (max-width: 1395px) {
  .catalog-header__cover:before {
    width: 1024px;
    margin-left: -512px;
  }
  .catalog-header__cover:after {
    margin-right: 512px;
  }
  .catalog-feature {
    padding: 16px;
  }
  .catalog-features {
    margin-top: -90px;
    margin-bottom: 16px;
  }
  .catalog-features--no-mt {
    margin-top: 0;
  }
  .catalog-header__container {
    min-height: 297px;
  }
}
@media screen and (min-width: 996px) {
  .catalog-feature__collapse {
    height: auto !important;
  }
}
@media screen and (max-width: 995px) {
  .catalog-header__cover:before {
    width: 768px;
    margin-left: -384px;
  }
  .catalog-header__cover:after {
    margin-right: 384px;
  }
  .catalog-features {
    margin-top: -35px;
    margin-bottom: 24px;
  }
  .catalog-features .swiper-slide {
    height: 70px;
    display: block;
  }
  .catalog-features--no-mt {
    margin-top: 0;
  }
  .catalog-feature.is-active {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
  }
  .catalog-feature.is-active .catalog-feature__button {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .catalog-feature__collapse {
    height: 0;
    transition: height 0.3s;
    overflow: hidden;
  }
  .catalog-feature__title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
  }
  .catalog-header__container {
    min-height: 236px;
  }
  .catalog-feature__collapse-body {
    padding-top: 16px;
  }
  .catalog-feature__button {
    display: block;
  }
  .catalog-feature__header {
    display: block;
  }
}
@media screen and (max-width: 755px) {
  .catalog-header__title {
    font-size: 20px;
    line-height: 25px;
  }
  .catalog-header__cover:before {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .catalog-header__cover:after {
    display: none;
  }
  .catalog-header__container {
    min-height: 207px;
  }
  .catalog-feature__collapse-body {
    padding-top: 16px;
  }
  .catalog-features {
    margin-top: -94px;
    margin-bottom: 24px;
    width: 100%;
    margin-right: 0;
    display: block;
  }
  .catalog-features .swiper-slide {
    margin-right: 0;
    width: 164px !important;
    min-width: 25% !important;
    max-width: 164px !important;
  }
  .catalog-features--no-mt {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .catalog-feature__button {
    display: block;
  }
}
.catalog {
  padding-bottom: 100px;
}
.catalog-cols {
  display: -webkit-flex;
  display: flex;
}
.aside-filter {
  width: 272px;
  min-width: 272px;
  padding-right: 30px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  z-index: 10;
}
.aside-filter.aside-filter--module.filter-reserved-place {
  position: static;
  -webkit-transform: none;
          transform: none;
}
.aside-filter.aside-filter--module.filter-reserved-place .filter-group-body__header {
  display: -webkit-flex !important;
  display: flex !important;
}
.aside-filter.aside-filter--module.filter-reserved-place .aside-filter-fixed {
  position: static;
  top: 0;
  bottom: 0;
  border-top: 1px solid #e7e7e7;
}
.aside-filter.aside-filter--module.filter-reserved-place .aside-filter__mobile-top {
  display: none;
}
.aside-filter.aside-filter--module.filter-reserved-place .aside-filter__mobile-bottom {
  display: none;
}
.aside-filter.aside-filter--module.filter-reserved-place .filter-group-header__value {
  color: #666666;
}
.aside-filter.aside-filter--module.filter-reserved-place .filter-group-header__value {
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  top: 16px;
  left: 139px;
}
.module-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 24px;
}
.module-wrapper {
  padding-top: 5px;
  padding-left: 16px;
  padding-right: 16px;
}
.module-wrapper .item-preview__image {
  margin-bottom: 32px;
}
.catalog-body {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.aside-filter-fixed {
  background-color: #fff;
  border-radius: 4px;
  padding: 24px;
  padding-top: 116px;
  padding-bottom: 0;
  position: relative;
}
.aside-filter__total-fixed {
  margin: -24px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 24px;
  padding-bottom: 15px;
  background-color: #fff;
  position: absolute;
  height: 116px;
  top: 0;
  width: 242px;
  z-index: 3;
}
.aside-filter__total-fixed.is-fixed {
  position: fixed;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
}
.aside-filter__total-fixed.is-abs {
  position: absolute;
  bottom: 0 !important;
  top: auto !important;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
}
.catalog-filter__total {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 8px;
}
.catalog-filter__reset-btn {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.filter-group {
  border-top: 1px solid #e7e7e7;
}
.filter-group:first-child {
  border-top: 0;
}
.filter-group.is-open .filter-group-body {
  height: auto;
}
.filter-group-header {
  position: relative;
}
.filter-group-header:hover .filter-group-header__info {
  opacity: 1;
}
.filter-group-header__title {
  padding: 16px 0;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 2;
}
.filter-group-header__title:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  right: 3px;
  top: 50%;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.3s;
  -webkit-transform-origin: 60% 60%;
          transform-origin: 60% 60%;
}
.filter-group-header__title.is-active:before {
  -webkit-transform: rotate(-135deg) translateX(-1px) translateY(-1px);
          transform: rotate(-135deg) translateX(-1px) translateY(-1px);
}
.filter-group-header__title.one-value:before {
  display: none;
}
.filter-group-body {
  transition: height 0.3s;
  height: 0;
  overflow: hidden;
  margin: 0 -10px;
}
.filter-group-body__inner {
  padding: 10px;
  padding-bottom: 16px;
}
.filter-range__inputs {
  padding-top: 25px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-bottom: 16px;
}
.filter-range__inputs .form-field-wrap {
  width: calc(50% - 5px);
}
.filter-range__inputs .form-field-wrap span {
  position: absolute;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  top: 50%;
  margin-top: -7px;
  left: 11px;
  color: #a3a3a3;
}
.filter-range__inputs .form-field {
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  height: 34px;
  padding-left: 29px;
  padding-right: 0;
}
.filter-range__inputs .form-field.filter-range__to {
  padding-left: 31px;
}
.dropdown--colors .dropdown__menu {
  padding: 0;
}
.dropdown--colors .dropdown__scroll--disable-mobile {
  padding: 0;
}
.dropdown--colors .filter-color {
  padding: 10px 10px 10px 40px;
  border-radius: 0;
  transition: background-color 0.3s;
  margin-bottom: 0;
}
.dropdown--colors .filter-color:hover {
  background: #EEEEF0;
}
.dropdown--colors .filter-color input:checked + span + span::before {
  content: "\e80a";
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  width: 17px;
  height: 13px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f84753;
}
.dropdown--colors .filter-color--block input + span {
  width: 16px;
  height: 16px;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dropdown--colors .filter-color--block input + span::before {
  display: none;
}
.dropdown--colors .filter-color--block input + span + span {
  line-height: 21px;
}
.dropdown-color__label {
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  color: #828282;
  position: absolute;
  top: 6px;
  left: 17px;
  pointer-events: none;
}
.dropdown-color__value {
  display: inline-block;
  margin-top: 7px;
  pointer-events: none;
}
.dropdown-feature__label {
  display: none;
}
.dropdown--colors.is-chosen .dropdown__item::before {
  width: 16px;
  height: 16px;
  background-image: url("../img/colors-close.svg");
  background-size: contain;
  border-color: transparent;
  border-width: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.filter-colors {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
}
.filter-color {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 50%;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
}
.filter-color input {
  display: none;
}
.filter-color input:checked + span {
  border-color: transparent;
}
.filter-color input:checked + span:after {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 0 2px #cbcccd;
}
.filter-color input:checked + span:before {
  opacity: 1;
}
.filter-color input + span {
  display: block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
  transition: all 0.3s;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /*    &:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
      }*/
}
.filter-color input + span:before {
  color: #fff;
  position: absolute;
  width: 13px;
  height: 11px;
  font-size: 11px;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -5px;
  transition: all 0.3s;
  opacity: 0;
}
.filter-color--light input + span {
  border: 1px solid rgba(203, 204, 205, 0.5);
}
.filter-color--light input + span:before {
  color: #000;
}
.filter-color:hover input + span:after {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 0 2px #cbcccd;
}
.filter-color:hover .filter-color-hover {
  opacity: 1;
  visibility: visible;
}
.filter-color--lg {
  width: 34px;
  height: 34px;
}
.filter-color--lg input + span {
  width: 34px;
  height: 34px;
}
.filter-color--lg input + span:after {
  width: 38px;
  height: 38px;
}
.filter-color-hover {
  position: absolute;
  bottom: 100%;
  left: 100%;
  margin-left: 3px;
  margin-bottom: 3px;
  background: #FFFFFF;
  box-shadow: 5px 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 4px 0px;
  width: 125px;
  padding-top: 96px;
  padding-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.filter-color-hover__bg {
  position: absolute;
  height: 88px;
  border-radius: 4px;
  left: 4px;
  top: 4px;
  right: 4px;
  background-size: cover;
}
.color-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}
.filter-color--big {
  width: 100%;
  height: auto;
  margin-right: 0;
  margin-bottom: 8px;
}
.filter-color--big:hover .filter-color__wrapper {
  border-color: #828282;
}
.filter-color--big input:checked ~ .filter-color__wrapper {
  border-color: #828282;
}
.filter-color--big .filter-color__wrapper {
  padding: 23px;
  border: 1px solid #EEEEF0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
}
.filter-color--big .icon-check2 {
  display: -webkit-flex;
  display: flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 16px;
}
.filter-color--big .filter-color__text {
  font-size: 14px;
  line-height: 21px;
  color: #333333;
}
.filter-color--big .filter-color__price {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #828282;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}
.filter-color--block {
  position: relative;
  padding-left: 40px;
  margin-bottom: 21px;
  margin-right: 0;
  width: 100%;
  height: auto;
}
.filter-color--block input + span {
  position: absolute;
  left: 0;
  top: -3px;
}
.filter-color--block input + span + span {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.filter-color--block input + span + span small {
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #666666;
}
.filter-group-header__info {
  width: 17px;
  height: 17px;
  position: absolute;
  right: 19px;
  top: 50%;
  margin-top: -8px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 3;
}
.filter-group-header__info.is-active {
  opacity: 1;
}
.filter-group-header__info-icon {
  border: 1px solid #a3a3a3;
  border-radius: 50%;
  line-height: 1;
  text-align: center;
  transition: all 0.3s;
  color: #a3a3a3;
  z-index: 3;
  cursor: pointer;
  display: block;
  width: 17px;
  height: 17px;
  font-size: 0;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.filter-group-header__info-icon:after {
  content: "?";
  font-weight: 500;
  font-size: 11px;
  line-height: 15px;
  display: inline-block;
}
.filter-group-header__info-icon:hover {
  color: #fff;
  background-color: #a3a3a3;
}
.filter-group-header__info-icon.is-active {
  background-color: #f84753;
  border-color: #f84753;
  opacity: 1;
  color: #fff;
}
.filter-info {
  position: absolute;
  left: 0;
  top: 22px;
  width: 784px;
  background: #595959;
  border-radius: 4px;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  padding: 48px 40px;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: default;
}
.filter-info.is-active {
  opacity: 1;
  visibility: visible;
}
.filter-info__cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: -48px;
}
.filter-info__col {
  width: calc(50% - 16px);
  text-align: left;
  margin-bottom: 40px;
}
.filter-info__img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 7px;
  font-size: 0;
  line-height: 1;
}
.filter-info__img img {
  height: 175px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.filter-info__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 1px;
}
.filter-info__close {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 16px;
  top: 16px;
  color: #fff;
  opacity: 0.4;
  transition: all 0.3s;
  z-index: 1;
  cursor: pointer;
}
.filter-info__close:before {
  font-size: 30px;
  width: 17px;
  line-height: 17px;
  height: 18px;
  position: relative;
  left: -5px;
}
.filter-info__close:hover {
  opacity: 1;
}
.catalog-sort {
  background: #ffffff;
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 16px;
  position: relative;
  z-index: 5;
}
.catalog-sort__buttons {
  margin-right: -16px;
}
.catalog-sort__buttons .swiper-wrapper {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.catalog-sort__buttons .swiper-slide {
  padding-right: 16px;
  padding-bottom: 16px;
  width: auto;
}
.catalog-sort-button {
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.catalog-sort-button input {
  display: none;
}
.catalog-sort-button input:checked ~ span {
  color: #fff;
  background-color: #f84753;
}
.catalog-sort-button span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #000000;
  padding: 13px 17px;
  background: #f5f5f5;
  border-radius: 4px;
  transition: all 0.3s;
}
.catalog-sort-button:hover span {
  color: #fff;
  background-color: #f84753;
}
.catalog-sort__bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.catalog-sort__price {
  min-width: 224px;
}
.catalog-sort__view-modes {
  display: -webkit-flex;
  display: flex;
}
.catalog-sort__view-mode {
  width: 20px;
  height: 20px;
  margin-right: 16px;
  color: #a3a3a3;
  transition: color 0.3s;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.catalog-sort__view-mode:before {
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.catalog-sort__view-mode:last-child {
  margin-right: 0;
}
.catalog-sort__view-mode:hover {
  color: #666666;
}
.catalog-sort__view-mode.is-active {
  color: #000;
}
.swiper-slide--show-more {
  display: none;
}
.swiper-slide--show-more .btn {
  padding-left: 17px;
  padding-right: 17px;
  min-width: 0;
}
.catalog-items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
}
.catalog-items--sm {
  margin-right: -16px;
}
.catalog-items--loading {
  position: relative;
}
.catalog-items--loading .lds-ring {
  margin: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 131px;
  display: inline-block;
  z-index: 1;
}
.catalog-items--loading .lds-ring div {
  border-color: #f84753 transparent transparent transparent;
}
.catalog-items--loading .catalog-item {
  opacity: 0.4;
  pointer-events: none;
}
.catalog-items__empty {
  display: none;
}
.catalog-items--modules {
  min-height: 364px;
}
.catalog-items--empty {
  position: relative;
}
.catalog-items--empty .catalog-items__empty {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #A3A3A3;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 169px;
  white-space: nowrap;
}
.catalog-item {
  width: calc(50% - 16px);
  margin-bottom: 16px;
  display: -webkit-flex;
  display: flex;
  margin-right: 16px;
}
.catalog-item--sm {
  width: calc(25% - 16px);
  margin-bottom: 16px;
  margin-right: 16px;
}
.catalog-items--full .catalog-item {
  width: calc(20% - 16px);
}
.catalog-items__divider {
  width: 100%;
  padding-top: 14px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.catalog-items__divider span {
  white-space: nowrap;
  padding: 0 16px;
}
.catalog-items__divider:before, .catalog-items__divider:after {
  content: "";
  opacity: 0.4;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-flex: 1;
          flex: 1;
}
.catalog-sort__filter-view-modes {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.catalog-sort__filter {
  display: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  color: #000000;
  vertical-align: middle;
  margin-right: 25px;
  transition: color 0.3s;
}
.catalog-sort__filter:before {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 14px;
  font-size: 14px;
  margin-right: 7px;
  margin-top: -2px;
}
.catalog-sort__filter:hover {
  color: #f84753;
}
.aside-filter__mobile-bottom {
  position: absolute;
  padding: 16px 16px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px -4px 8px rgba(0, 0, 0, 0.04);
  display: none;
}
.aside-filter__mobile-bottom .btn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  padding: 13px 24px;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
}
.aside-filter__mobile-bottom .btn span {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
}
.aside-filter__mobile-top {
  position: absolute;
  height: 58px;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
  left: 0;
  right: 0;
  padding: 16px 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  z-index: 1;
  display: none;
}
.aside-filter__mobile-clear {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
.aside-filter__mobile-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}
.aside-filter__close {
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 16px;
  line-height: 24px;
  color: #2F80ED;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -12px;
}
.aside-filter__close:hover {
  color: #f84753;
}
.filter-group-body__header {
  display: none;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  height: 58px;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 16px;
  padding-left: 90px;
  padding-right: 90px;
}
.filter-group-body__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #000000;
}
.filter-group-body__back {
  font-size: 16px;
  line-height: 24px;
  color: #a3a3a3;
  position: absolute;
  padding-left: 14px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  left: 16px;
  top: 50%;
  margin-top: -12px;
  transition: color 0.3s;
}
.filter-group-body__back:before {
  position: absolute;
  width: 6px;
  height: 10px;
  font-size: 10px;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
.filter-group-body__back:hover {
  color: #000;
}
.filter-group-body__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px -4px 8px rgba(0, 0, 0, 0.04);
  padding: 16px;
  display: none;
  width: 100%;
}
.filter-group-body__footer .btn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  padding: 13px 16px;
}
.filter-group-body__footer span {
  font-weight: 300;
}
.filter-group-header__info--mobile {
  right: 16px;
  opacity: 1;
  background-color: #fff;
}
.filter-group-header__info--mobile .filter-info {
  border-radius: 0;
  background-color: #fff;
  padding: 0;
}
.filter-group-header__info--mobile .filter-info__scroll {
  padding: 16px 16px;
  position: absolute;
  top: 58px;
  bottom: 0;
  width: 100%;
}
.filter-group-header__info--mobile .filter-info__close {
  color: #a3a3a3;
  opacity: 1;
  top: 19px;
}
.filter-group-header__info--mobile .filter-info__close:hover {
  color: #000;
}
.filter-group-header__info--mobile .filter-group-header__info-title {
  display: -webkit-flex;
  display: flex;
}
.filter-group-header__info--mobile .filter-info__cols {
  display: block;
}
.filter-group-header__info--mobile .filter-info__col {
  width: 100%;
  margin-bottom: 40px;
}
.filter-group-header__info--mobile .filter-info__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 4px;
}
.filter-group-header__info--mobile .filter-info__text {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.filter-group-header__info--mobile .filter-info__img {
  height: auto;
}
.filter-group-header__info--mobile .filter-info__img img {
  height: auto;
}
.filter-group-header__info-title {
  display: none;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #000000;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.04);
  height: 58px;
  padding: 16px;
  position: absolute;
  background: #FFFFFF;
  left: 0;
  top: 0;
  width: 100%;
}
.catalog-categories {
  margin-bottom: 40px;
}
.catalog-categories .popular-category {
  margin: 0;
  width: 100%;
}
.catalog-categories .swiper-slide {
  width: 257px;
  min-width: 257px;
}
@media screen and (max-width: 1395px) {
  .aside-filter {
    padding-right: 16px;
    width: 240px;
    min-width: 240px;
  }
  .aside-filter__total-fixed {
    margin: -16px;
    width: 224px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .aside-filter-fixed {
    padding: 15px;
    padding-bottom: 24px;
    padding-top: 118px;
  }
  .catalog {
    padding-bottom: 80px;
  }
  .catalog-item--sm {
    width: calc(33.33% - 16px);
  }
  .catalog-sort__buttons .swiper-slide--hidden {
    display: none;
  }
  .swiper-slide--show-more {
    display: block;
  }
  .catalog-items--full .catalog-item {
    width: calc(25% - 16px);
  }
  .catalog-categories {
    overflow: visible;
  }
}
@media screen and (max-width: 995px) {
  .catalog-categories {
    margin-bottom: 24px;
  }
  .catalog-sort {
    padding: 24px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .catalog-sort__buttons-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
    overflow: hidden;
  }
  .catalog-sort__buttons {
    margin-right: 0;
    overflow: visible;
    position: relative;
    width: 100%;
  }
  .catalog-sort__buttons:before {
    content: "";
    position: absolute;
    width: 84px;
    height: 79px;
    right: -24px;
    top: 50%;
    margin-top: -40px;
    background: linear-gradient(266.12deg, #FFFFFF 0.12%, rgba(255, 255, 255, 0) 100.35%);
    z-index: 2;
  }
  .catalog-sort__buttons .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .catalog-sort__buttons .swiper-slide {
    padding-right: 0;
    padding-bottom: 0;
    width: auto;
  }
  .catalog-sort__buttons.is-end:before {
    display: none;
  }
  .catalog-sort__buttons .swiper-slide--hidden {
    display: none;
  }
  .swiper-slide--show-more {
    display: none;
  }
  .catalog-sort__bottom {
    margin-bottom: 16px;
  }
  .catalog-sort__filter {
    display: inline-block;
  }
  .aside-filter:not(.aside-filter--product) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding-right: 0;
    background: #fff;
    transition: opacity 0.3s, visibility 0.3s;
    display: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .aside-filter:not(.aside-filter--product).is-open {
    display: block;
  }
  .aside-filter:not(.aside-filter--product) .aside-filter__mobile-bottom,
.aside-filter:not(.aside-filter--product) .aside-filter__mobile-top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .aside-filter:not(.aside-filter--product) .aside-filter-fixed {
    padding: 0;
    position: absolute;
    top: 58px;
    bottom: 77px;
    left: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
  }
  .aside-filter:not(.aside-filter--product) .aside-filter-fixed .ps__rail-x {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .aside-filter-fixed__scroll {
    padding: 0 16px;
    overflow: auto;
    width: 100%;
  }
  .aside-filter:not(.aside-filter--product) .aside-filter__total-fixed {
    display: none !important;
  }
  .aside-filter:not(.aside-filter--product) .catalog-cols {
    display: block;
  }
  .aside-filter:not(.aside-filter--product) .catalog-sort__view-mode:not(.is-active) {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .filter-info {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-header__title {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-header__title:before {
    border-width: 1px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .aside-filter:not(.aside-filter--product) .filter-group {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .aside-filter:not(.aside-filter--product) .filter-group:last-child {
    border-bottom: 1px solid #e7e7e7;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--always-open-mobile .filter-group-header__title:before {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--always-open-mobile .filter-group-header__title {
    margin-bottom: -12px;
    padding-bottom: 0;
    cursor: default;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--always-open-mobile .filter-group-body {
    overflow: visible;
    -webkit-backface-visibility: visible;
            backface-visibility: visible;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--always-open-mobile .filter-range__inputs {
    padding-top: 0;
    padding-bottom: 25px;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--always-open-mobile .filter-group-body {
    height: auto !important;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-header--hide-mobile {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-body__inner {
    padding: 16px 10px;
  }
  .aside-filter:not(.aside-filter--product) .filter-checkboxes .checkbox:last-child {
    margin-bottom: 0;
  }
  .aside-filter:not(.aside-filter--product) .filter-range {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 9px;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-header__info:not(.filter-group-header__info--mobile) {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-body__header {
    display: -webkit-flex;
    display: flex;
    z-index: 1001;
  }
  .aside-filter:not(.aside-filter--product) .filter-group-body__footer {
    display: block;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .filter-group-body {
    width: 100%;
    height: 100% !important;
    left: 0;
    top: 0;
    z-index: 1001;
    position: fixed;
    background-color: #fff;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .filter-group-body.is-active {
    opacity: 1;
    visibility: visible;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .filter-group-body__inner {
    position: absolute;
    top: 58px;
    bottom: 77px;
    width: 100%;
    left: 0;
    z-index: 2;
    padding: 0;
    overflow: auto;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .filter-group-body__header {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .checkbox {
    border-bottom: 1px solid #eeeef0;
    margin: 0;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .checkbox input:checked ~ span {
    background: #eeeef0;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .checkbox span {
    padding: 16px;
    padding-right: 20px;
    transition: background-color 0.3s;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .checkbox span:after {
    display: none;
  }
  .aside-filter:not(.aside-filter--product) .filter-group--mobile .checkbox span:before {
    position: absolute;
    width: 17px;
    height: 13px;
    left: auto;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    color: #f84753;
  }
  .aside-filter:not(.aside-filter--product) .filter-colors {
    padding: 16px;
  }
  .catalog-cols {
    display: block;
  }
  .catalog-items--full .catalog-item {
    width: calc(33.33% - 16px);
  }
}
@media screen and (max-width: 755px) {
  .catalog {
    background: #fff;
    padding-bottom: 24px;
    margin-bottom: 74px;
  }
  .catalog-sort {
    padding: 0;
    padding-top: 18px;
    margin-bottom: 31px;
  }
  .catalog-sort-button span {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 10px;
  }
  .catalog-sort__filter {
    width: 18px;
    height: 18px;
    position: absolute;
    font-size: 0;
    right: 0;
    top: 15px;
    margin: 0;
  }
  .catalog-sort__filter:before {
    margin-right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -9px;
    margin-top: -7px;
  }
  .catalog-sort__bottom {
    text-align: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .catalog-sort__view-modes {
    position: absolute;
    left: 0;
    top: 16px;
  }
  .catalog-sort__price {
    min-width: 0;
  }
  .catalog-sort__price .choices__inner {
    border: 0;
    min-height: 0;
  }
  .catalog-sort__price .choices__list--single .choices__item {
    border: 0;
    padding: 0;
    padding-right: 11px;
    height: auto;
    font-size: 12px;
    line-height: 16px;
  }
  .catalog-sort__price .choices[data-type*=select-one]:after {
    right: 0;
    width: 6px;
    height: 6px;
    border-width: 1px;
    margin-top: -8px;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  .catalog-sort__price .choices[data-type*=select-one].is-open:after {
    -webkit-transform: rotate(-135deg) translate(-3px, -3px);
            transform: rotate(-135deg) translate(-3px, -3px);
  }
  .catalog-sort__price .choices__list--dropdown {
    width: 200px;
    text-align: left;
    left: 50%;
    margin-left: -100px;
  }
  .catalog-items {
    margin-right: 0;
  }
  .catalog-items:not(.catalog-items--sm) {
    display: block;
  }
  .catalog-item:not(.catalog-item--sm) {
    width: 100%;
    display: block;
  }
  .catalog-item:not(.catalog-item--sm) .item-preview {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.12);
    height: 100%;
  }
  .catalog-body {
    width: 100%;
  }
  .catalog-items--sm {
    margin-right: -8px;
    margin-bottom: -8px;
  }
  .catalog-item--sm {
    width: calc(50% - 8px);
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .catalog-item--sm .item-preview {
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 10px 20px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
  }
  .catalog-items--full {
    margin-right: -8px;
    margin-bottom: -8px;
  }
  .catalog-items--full .catalog-item {
    width: calc(50% - 8px);
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .catalog-categories .swiper-button-prev,
.catalog-categories .swiper-button-next {
    display: none;
  }
  .catalog-categories .popular-category__image {
    width: 45px;
    height: 100%;
    right: 0;
    top: 0;
    margin-top: 0;
  }
  .catalog-categories .popular-category__name {
    font-size: 16px;
    line-height: 24px;
    padding-right: 0;
    max-width: 80px;
  }
  .catalog-categories .popular-category__total {
    display: none;
  }
  .catalog-categories .swiper-slide {
    width: 140px;
    min-width: 140px;
  }
  .catalog-categories .popular-category {
    padding: 8px;
  }
  .filter-color--lg {
    margin-right: 12px;
    margin-bottom: 12px;
  }
  .filter-color-hover {
    display: none;
  }
  .filter-info__scroll {
    overflow: auto !important;
  }
  .filter-info__scroll .ps__rail-x,
.filter-info__scroll .ps__rail-y {
    display: none;
  }
}
.catalog-item--sm .item-preview__image {
  height: 186px;
}
.steps-section {
  background-color: #fff;
  padding-top: 68px;
  padding-bottom: 103px;
}
.steps-section__title {
  padding: 0;
  margin-bottom: 48px;
}
.steps-section__title h3,
.steps-section__title .h3 {
  margin-bottom: 32px;
}
.steps-section__title h2 {
  margin-bottom: 32px;
}
.steps-section__title li {
  margin-bottom: 16px;
}
.steps-section__title p {
  max-width: 640px;
  margin-bottom: 24px;
}
.steps-cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
}
.step-col {
  border: 4px solid #eeeef0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 24px;
  padding-top: 170px;
  padding-bottom: 75px;
  width: calc(33.33% - 16px);
  margin-right: 16px;
  position: relative;
}
.step-col__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom: 29px;
}
.step-col__text {
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
}
.step-col__icon {
  position: absolute;
  width: 105px;
  height: 105px;
  top: 46px;
  left: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.step-col__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  font-family: "object-fit: cover; object-position: left center;";
}
.step-col__icon svg {
  max-width: 100%;
  height: auto;
  opacity: 0;
}
.step-col__icon svg.is-animating {
  opacity: 1;
}
@media screen and (max-width: 1395px) {
  .steps-section {
    padding-top: 64px;
    padding-bottom: 171px;
  }
  .step-col {
    padding: 12px;
    padding-top: 150px;
    padding-bottom: 58px;
  }
  .step-col__icon {
    top: 28px;
    left: 12px;
  }
  .step-col__title {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 995px) {
  .steps-section {
    padding-bottom: 72px;
  }
  .steps-section__title {
    margin-bottom: 24px;
  }
  .steps-cols {
    display: block;
    margin-right: 0;
  }
  .step-col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    padding: 36px 60px;
    padding-bottom: 52px;
    padding-left: 170px;
    min-height: 229px;
  }
  .step-col__icon {
    top: 36px;
    left: 28px;
    width: 115px;
    height: auto;
  }
}
.step-col .step-col__icon img {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 755px) {
  .steps-section {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .steps-section__title h3,
.steps-section__title .h3 {
    margin-bottom: 16px;
  }
  .step-col {
    padding: 30px 22px;
    padding-top: 120px;
    border-width: 2px;
  }
  .step-col__icon {
    height: 60px;
    top: 32px;
    left: 20px;
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
  .step-col__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: none;
    margin-bottom: 8px;
  }
  .step-col__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.catalog-about-section {
  padding-top: 98px;
  padding-bottom: 100px;
}
.catalog-about-section__title {
  padding: 0;
  margin-bottom: 31px;
}
.about-blocks {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -24px;
}
.about-blocks__left {
  width: calc(33.33% - 24px);
  margin-right: 24px;
  display: -webkit-flex;
  display: flex;
}
.about-blocks__right {
  width: calc(66.66% - 24px);
  margin-right: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.about-blocks__right .about-block {
  -webkit-flex: 1;
          flex: 1;
}
.about-blocks__right .about-block__text {
  max-width: 380px;
}
.about-block {
  background: #ffffff;
  border-radius: 4px;
  padding: 56px 48px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.about-block__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 19px;
}
.about-block__text {
  opacity: 0.8;
}
.about-block__img {
  position: absolute;
  font-size: 0;
  line-height: 1;
}
.about-block--guarantee {
  padding-bottom: 397px;
}
.about-block--guarantee .about-block__img {
  left: 48px;
  bottom: 13px;
}
.about-block--experience .about-block__img {
  right: 98px;
  bottom: 43px;
}
.about-block--experience .about-block__img img {
  width: 100px;
}
.about-block--own-production .about-block__img {
  right: -161px;
  bottom: 8px;
}
.catalog-about-map-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.catalog-about-map-container__left {
  background: #656565;
  border-radius: 4px 0px 0px 4px;
  padding: 56px 48px;
  width: 34%;
  color: #fff;
}
.catalog-about-map-container__right {
  width: 66%;
  position: relative;
}
.catalog-about-map {
  position: relative;
  width: 100%;
  height: 350px;
}
.catalog-about-map .map {
  width: 100%;
  border: 4px solid #FFFFFF;
  border-left: 0;
  border-radius: 0px 4px 4px 0px;
}
.map {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.catalog-about-map-container__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 18px;
}
.catalog-about-map-container__descr {
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  max-width: 312px;
}
.catalog-about-map-container__address {
  font-style: normal;
  max-width: 312px;
  margin-bottom: 16px;
}
.catalog-about-map-container__address a {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  display: inline-block;
}
.catalog-about-map-container__address a span {
  border-bottom: 1px dotted #fff;
  transition: all 0.3s;
}
.catalog-about-map-container__address a:hover span {
  border-bottom-color: transparent;
}
.catalog-about-map-container__info {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.5;
}
@media screen and (max-width: 1395px) {
  .catalog-about-section {
    padding-top: 64px;
    padding-bottom: 100px;
  }
  .about-blocks {
    margin-right: -16px;
  }
  .about-block {
    margin-bottom: 16px;
  }
  .about-blocks__left {
    width: calc(41.33% - 24px);
    margin-right: 16px;
  }
  .about-blocks__right {
    width: calc(58.66% - 24px);
    margin-right: 16px;
  }
  .about-blocks__right .about-block__text {
    max-width: 255px;
  }
  .about-block--guarantee {
    padding-bottom: 293px;
  }
  .about-block--guarantee .about-block__img {
    left: 48px;
    bottom: 0;
    width: 271px;
  }
  .about-block--experience .about-block__img {
    right: -334px;
    bottom: 40px;
  }
  .about-block--own-production .about-block__img {
    right: -179px;
    bottom: 33px;
    width: 434px;
  }
  .catalog-about-map-container__left {
    width: 40.7%;
  }
  .catalog-about-map-container__right {
    width: 59.3%;
  }
}
@media screen and (max-width: 995px) {
  .catalog-about-section {
    padding-bottom: 80px;
  }
  .about-blocks__left {
    width: calc(50% - 16px);
  }
  .about-blocks__right {
    width: calc(50% - 16px);
  }
  .about-blocks__right .about-block__text {
    max-width: none;
  }
  .about-block {
    padding: 40px 24px;
  }
  .about-block--guarantee {
    padding-bottom: 500px;
  }
  .about-block--guarantee .about-block__img {
    left: 24px;
    bottom: 20px;
    width: 415px;
  }
  .about-block--guarantee .about-block__img img {
    width: 415px;
  }
  .about-block--experience {
    padding-bottom: 232px;
  }
  .about-block--experience .about-block__img {
    width: 274px;
    right: 35px;
    bottom: 56px;
  }
  .about-block--own-production {
    padding-bottom: 232px;
  }
  .about-block--own-production .about-block__img {
    width: 365px;
    right: 0;
    bottom: 28px;
  }
  .catalog-about-map-container__left {
    width: calc(50% - 8px);
    padding: 41px 25px;
    padding-bottom: 61px;
  }
  .catalog-about-map-container__right {
    width: calc(50% + 8px);
  }
}
@media screen and (max-width: 755px) {
  .catalog-about-section {
    padding-bottom: 61px;
  }
  .catalog-about-section__title {
    margin-bottom: 16px;
  }
  .about-blocks__left {
    width: 100%;
    margin-right: 0;
  }
  .about-blocks__right {
    width: 100%;
    margin-right: 0;
  }
  .about-blocks {
    margin-right: 0;
  }
  .about-block {
    padding: 24px 16px;
  }
  .about-block__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 8px;
  }
  .about-block__text {
    font-size: 16px;
    line-height: 24px;
  }
  .about-block--guarantee {
    padding-bottom: 375px;
  }
  .about-block--guarantee .about-block__img {
    left: 16px;
    bottom: 10px;
    width: 335px;
  }
  .about-block--guarantee .about-block__img img {
    width: 335px;
  }
  .about-block--experience {
    padding-bottom: 178px;
  }
  .about-block--experience .about-block__img {
    width: 252px;
    right: auto;
    left: 16px;
    bottom: 32px;
  }
  .about-block--own-production {
    padding-bottom: 242px;
  }
  .about-block--own-production .about-block__img {
    width: 325px;
    right: auto;
    left: -21px;
    bottom: 32px;
  }
  .catalog-about-map-container {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .catalog-about-map-container__left {
    width: 100%;
    padding-bottom: 52px;
  }
  .catalog-about-map-container__right {
    width: 100%;
  }
  .catalog-about-map-container__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 16px;
  }
  .catalog-about-map-container__descr {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 7px;
  }
  .catalog-about-map-container__address {
    margin-bottom: 16px;
  }
  .catalog-about-map-container__address a {
    font-size: 16px;
    line-height: 24px;
  }
  .catalog-about-map-container__info {
    font-size: 16px;
    line-height: 24px;
  }
  .catalog-about-map {
    height: 132px;
  }
  .catalog-about-map .map {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
  }
}
.on-choose-btn {
  padding: 2px;
  width: 116px;
  height: 38px;
  border-radius: 30px;
  border: #cecfd0 3px solid;
  background: #ffffff;
}
.on-choose-btn svg {
  width: 16px;
  height: 17px;
}
.on-choose-btn span {
  position: relative;
  top: -3.4px;
  color: #a3a3a3;
}
.residue-count-color {
  color: #a3a3a3;
  font-size: 14px;
}
.no-image-color-filter {
  width: auto;
}
.no-image-color-filter .icon-check2 {
  width: 100%;
  color: #a3a3a3;
  font-size: 14px;
  padding: 7px 4px;
}
.no-image-color-filter .icon-check2:before {
  color: #000000;
  font-size: 16px;
  top: 14px;
}
.no-image-color-filter .icon-check2:after {
  width: 100%;
  border-radius: 30px;
}
.filter-color.no-image-color-filter input:checked ~ .icon-check2 {
  padding-left: 35px;
}
.filter-color.no-image-color-filter .icon-check2 {
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #EEEEF0;
  border-radius: 60px;
  line-height: 19px;
}
.filter-color.no-image-color-filter .icon-check2::before {
  font-size: 15px;
  left: 18px;
}
.filter-color.no-image-color-filter .icon-check2::after {
  width: calc(100% + 6px);
}
.js-selectric.cart-param {
  padding: 5px;
  font-size: 12px;
  width: 140px;
  height: 34px;
  border: 3px solid #f5f5f5;
  border-radius: 9999px;
  background: #fff;
}
.js-selectric.cart-param option {
  border: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  line-height: 6px;
}
.main.main--product .page-header {
  border-top: 1px solid #EEEEF0;
  background-color: #ffffff;
}
.main.main--product .breadcrumbs {
  padding-top: 16px;
  margin-bottom: 0;
}
.main.main--product .items-slider-section {
  overflow: hidden;
}
@media screen and (max-width: 755px) {
  .footer {
    overflow: hidden;
  }
}
.product-wrapper {
  padding-top: 32px;
  background-color: #fff;
}
.product {
  background: #FFFFFF;
  border-radius: 4px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-bottom: 80px;
}
.product-left {
  width: 62.65%;
  overflow: hidden;
}
.product-left .product-gallery {
  position: relative;
}
.product-left .product-gallery--single .product-gallery-full {
  width: 100%;
  margin-bottom: 0;
}
.product-left .product-gallery--single .swiper-button-prev,
.product-left .product-gallery--single .swiper-button-next {
  display: none;
}
.product-left .product-gallery--single .swiper-slide {
  border: 1px solid #EEEEF0;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 995px) {
  .product-left {
    overflow: visible;
  }
}
.product-right {
  width: 32.55%;
}
.product-right-wrapper {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 104px;
}
.product-gallery-vertical {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.product-gallery-vertical .swiper-button-prev,
.product-gallery-vertical .swiper-button-next {
  display: none;
}
.product-gallery-vertical .product-gallery-thumbs {
  width: 74px;
  padding: 0;
  margin: 0 32px 0 0;
}
.product-gallery-vertical .product-gallery-thumbs .swiper-container {
  padding: 0;
  margin: 0;
}
.product-gallery-vertical .product-gallery-thumbs .swiper-slide {
  height: 48px;
  border: 2px solid transparent;
  border-radius: 4px;
}
.product-gallery-vertical .product-gallery-thumbs .swiper-slide .product-gallery-thumb {
  height: 100%;
}
.product-gallery-vertical .product-gallery-thumbs .swiper-slide.swiper-slide-active {
  border-color: #F84753;
}
.product-gallery-vertical .product-gallery-thumbs .swiper-slide.swiper-slide-active .product-gallery-thumb {
  opacity: 1;
}
.product-gallery-vertical .product-gallery-full {
  width: 737px;
  margin: 0;
}
.product-gallery-vertical .product-gallery-full .product-gallery-full__image {
  height: auto;
}
.product-gallery-vertical .product-gallery-full .product-gallery-full__image img {
  border-radius: 8px;
}
.product-gallery-vertical .swiper-button-prev,
.product-gallery-vertical swiper-button-next {
  display: none;
}
.product-gallery--single .product-gallery-thumbs {
  display: none;
}
.product-right-info {
  border: 1px solid #EEEEF0;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  margin-bottom: 44px;
}
.product-right-info__top {
  padding: 24px 24px 20px 24px;
  transition: 0.3s;
}
.product-right-info__top.has-shadow {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04), 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}
.product-right-info.has-scrolls .product-right-info__body {
  max-height: 333px;
}
.product-right-info.has-scrolls .product-right-info__body .ps__rail-y {
  opacity: 0;
}
@media screen and (max-width: 755px) {
  .product-right-info.has-scrolls .product-right-info__body {
    max-height: unset;
  }
  .product-right-info.has-scrolls .product-right-info__body .ps__rail-y {
    opacity: 0;
  }
}
.product-right-info.has-scrolls .product-additional__scroll {
  max-height: 240px;
}
.product-right-info.has-scrolls .product-additional__scroll .ps__rail-y {
  opacity: 0;
}
@media screen and (max-width: 755px) {
  .product-right-info.has-scrolls .product-additional__scroll {
    max-height: unset;
  }
  .product-right-info.has-scrolls .product-additional__scroll .ps__rail-y {
    opacity: 0;
  }
}
.product-right-info__body {
  padding: 0 24px 0 24px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.product-right-info__body.ps:not(.ps--active-y) {
  overflow: visible !important;
}
.product-right-info__bottom {
  padding: 24px 24px 24px 24px;
  margin-top: 0;
  transition: 0.3s;
}
.product-right-info__bottom .product-buttons {
  margin-top: 0;
}
.product-right-info__bottom.has-shadow {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04), 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}
.product-gallery-full {
  width: 480px;
  margin: 0 auto;
  margin-bottom: 16px;
  overflow: visible;
  position: relative;
  z-index: 0;
}
.product-gallery-full .swiper-pagination {
  display: none;
}
.product-gallery-full .swiper-button-prev,
.product-gallery-full .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.product-gallery-full .swiper-button-prev {
  left: -24px;
}
.product-gallery-full .swiper-button-next {
  right: -24px;
}
.product-gallery-full:hover .swiper-button-prev,
.product-gallery-full:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.product-gallery-full__image {
  width: 100%;
  height: 535px;
  position: relative;
  cursor: pointer;
}
.product-gallery-full__image a {
  display: block;
}
.product-gallery-full__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.product-gallery-full__image--cover img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.product-gallery-vertical .product-gallery-full__image img {
  position: relative;
}
.filter-colors--product {
  position: relative;
  margin-right: 0;
  z-index: 1;
  margin-top: 11px;
  row-gap: 12px;
  transition: 0.3s;
}
.filter-colors--product:hover {
  z-index: 101;
}
.filter-colors--product .filter-color {
  margin-right: 12px;
  margin-bottom: 0;
  width: 32px;
  height: 32px;
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.filter-colors--product .filter-color:last-child {
  margin-right: 0;
}
.filter-colors--product .filter-color:nth-child(9n) {
  margin-right: 0;
}
@media screen and (max-width: 755px) {
  .filter-colors--product .filter-color {
    margin-right: 0;
  }
}
.filter-colors--product .filter-color.no-image-color-filter {
  width: auto;
}
.filter-colors--product .filter-color.no-image-color-filter .icon-check2 {
  width: auto;
  border-radius: 30px;
}
.filter-colors--product .filter-color.no-image-color-filter .icon-check2::after {
  border-radius: 30px;
  border-color: #CECFD0;
  width: calc(100% + 12px);
}
.filter-colors--product .filter-color.no-image-color-filter .icon-check3 {
  position: relative;
  top: -2px;
}
.filter-colors--product .filter-color--hidden {
  display: none;
}
.filter-colors--product .filter-color input + span {
  border: 1px solid #EEEEF0;
  width: 32px;
  height: 32px;
}
.filter-colors--product .filter-color input + span:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: all 0.3s;
  border: 3px solid #F84753;
  background-color: #fff;
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
}
.filter-colors--product .filter-color input:checked + span:after {
  opacity: 1;
  box-shadow: none;
}
@media screen and (max-width: 755px) {
  .filter-colors--product {
    gap: 12px;
  }
}
.product-right .filter-color:hover .filter-color-hover {
  opacity: 0;
  visibility: hidden;
}
.product-right .filter-color-hover {
  bottom: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: 0;
  margin-bottom: 0;
  box-shadow: none;
  -webkit-filter: drop-shadow(0px 0.6px 1.8px rgba(0, 0, 0, 0.1)) drop-shadow(0px 3.2px 7.2px rgba(0, 0, 0, 0.13));
          filter: drop-shadow(0px 0.6px 1.8px rgba(0, 0, 0, 0.1)) drop-shadow(0px 3.2px 7.2px rgba(0, 0, 0, 0.13));
  border-radius: 4px;
  width: 324px;
  padding: 2px 2px 12px 2px;
  font-size: 14px;
  line-height: 120%;
  text-align: left;
}
.product-right .filter-color-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -7px;
  width: 16px;
  height: 8px;
  background: url(../img/product_color_hover_arrow.svg) center no-repeat;
  background-size: contain;
}
.product-right .filter-color-hover__bg {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 2px;
  left: 0;
  top: 0;
  right: 0;
  margin-bottom: 8px;
}
.product-right .filter-color-hover__wrapper {
  padding: 0 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.product-right .filter-color-hover__price {
  color: #A3A3A3;
}
.product-right .js-filter-color-hover {
  bottom: unset;
}
.js-filter-color-hover {
  pointer-events: none;
}
.js-filter-color-hover.is-active {
  opacity: 1;
  visibility: visible;
}
.filter-color__more {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #000000;
  border-radius: 50%;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
}
.filter-color__more:hover {
  color: #FA717A;
  border-color: #FA717A;
}
.product-descr:last-child {
  border-bottom: 1px solid #EEEEF0;
}
.product-descr__title {
  padding: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  border-top: 1px solid #EEEEF0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.product-descr__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/product_descr_open.svg) center no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.product-descr__title.is-active {
  color: rgba(0, 0, 0, 0.3);
}
.product-descr__title.is-active::before {
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
  background-image: url(../img/product_descr_close.svg);
}
.product-descr__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 32px;
}
.product-descr__collapse {
  transition: height 0.3s;
  overflow: hidden;
  height: 0;
}
.product-descr__body {
  padding-bottom: 14px;
}
.product-descr__body li {
  margin-bottom: 32px;
}
.product-descr__body-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 8px;
}
.product-gallery-full--sm {
  width: 100%;
  max-width: 480px;
}
.product-gallery-full--sm .product-gallery-full__image {
  height: 357px;
}
.product-gallery-thumbs {
  width: 480px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  position: relative;
}
.product-gallery-thumbs .swiper-container {
  padding: 0 4px;
  margin-left: -4px;
  margin-right: -4px;
}
.product-gallery-thumbs .swiper-slide-thumb-active .product-gallery-thumb {
  opacity: 1;
}
.product-gallery-thumbs .swiper-slide-thumb-active .product-gallery-thumb:before {
  opacity: 1;
}
.product-gallery-thumb {
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  border-radius: 4px;
  transition: all 0.3s;
  height: 48px;
  position: relative;
}
.product-gallery-thumb:before {
  content: "";
  position: absolute;
  border: 2px solid #f84753;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0;
  border-radius: 4px;
  z-index: 1;
}
.product-gallery-thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.product-gallery-thumb.is-active {
  opacity: 1;
}
.product-gallery-thumb.is-active:before {
  opacity: 1;
}
.product--module .product-left {
  width: 40.9%;
  padding: 0;
  padding-right: 24px;
}
.product--module .product-right {
  width: 59.1%;
}
.product--module .product-cols__left {
  padding-top: 0;
  padding-right: 20px;
  width: 100%;
}
.product--module .product-colors {
  padding-left: 20px;
}
.product-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 16px;
}
.product-sizes {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #666666;
  margin-bottom: 16px;
}
.product-price-wrapper {
  margin-bottom: 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.product-price__old {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #A3A3A3;
  margin-left: 16px;
  position: relative;
}
.product-price__old::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #A3A3A3;
  border: 1px solid #FFFFFF;
  width: 100%;
  height: 3px;
}
.product-price {
  padding: 4px 12px 3px 12px;
  background: #EEEEF0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  display: inline-block;
  position: relative;
}
.product-price::before, .product-price::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.product-price::before {
  left: -5px;
}
.product-price::after {
  right: -5px;
}
.product-price--promo {
  background: #F8E647;
}
.product-group {
  padding-top: 12px;
  border-top: 1px solid #EEEEF0;
  margin-bottom: 12px;
}
.product-group .filter-colors--size {
  margin-top: 11px;
}
.product-group__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}
.product-group__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  margin-top: 2px;
}
.product-top-controls {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 0;
}
.product-top-controls__reviews {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-right: 32px;
}
.product-top-controls__reviews a {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #f84753;
  transition: color 0.3s;
}
.product-top-controls__reviews a:hover {
  color: #FA717A;
}
.product-top-controls__stars {
  margin-right: 16px;
  position: relative;
  margin-top: -2px;
}
.rating {
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 0;
}
.rating__star {
  width: 16px;
  height: 16px;
  position: relative;
  margin-right: 8px;
}
.rating__star svg {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
}
.rating__star:last-child {
  margin-right: 0;
}
.rating__star.is-filled .rating__fill {
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
}
.rating__svg {
  background: url("../img/star.svg") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.product-top-controls__favorites {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #666666;
  padding-left: 28px;
  position: relative;
  transition: color 0.3s;
  margin-right: 32px;
}
.product-top-controls__favorites:before, .product-top-controls__favorites:after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  width: 20px;
  height: 19px;
  font-size: 19px;
  left: 0;
  top: 0;
  transition: opacity 0.3s, color 0.3s;
}
.product-top-controls__favorites:before {
  content: "\e801";
}
.product-top-controls__favorites:after {
  content: "\e80f";
  opacity: 0;
}
.product-top-controls__favorites:hover {
  color: #FA717A;
}
.product-top-controls__favorites:hover:before, .product-top-controls__favorites:hover:after {
  color: #FA717A;
}
.product-top-controls__favorites.is-active:after {
  opacity: 1;
}
.product-top-controls__favorites.is-active:before {
  opacity: 1;
}
.share-button {
  position: relative;
}
.share-button.is-open .share-button__dropdown {
  opacity: 1;
  visibility: visible;
}
.share-button__open {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #666666;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: color 0.3s;
}
.share-button__open:before {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  font-size: 19px;
  text-align: center;
  line-height: 20px;
}
.share-button__open:hover {
  color: #FA717A;
}
.share-button__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  width: 218px;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 21px 24px;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.share-button__links li {
  margin-bottom: 13px;
}
.share-button__links li:last-child {
  margin-bottom: 0;
}
.share-button__link {
  position: relative;
  display: block;
  padding-left: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #666666;
  transition: color 0.3s;
}
.share-button__link:before, .share-button__link:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  transition: all 0.3s;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.share-button__link:after {
  opacity: 0;
}
.share-button__link:hover {
  color: #000;
}
.share-button__link:hover:before {
  opacity: 0;
}
.share-button__link:hover:after {
  opacity: 1;
}
.share-button__link--vk:before {
  background-image: url("../img/ico_vk_gray.svg");
}
.share-button__link--vk:after {
  background-image: url("../img/ico_vk.svg");
}
.share-button__link--fb:before {
  background-image: url("../img/ico_fb_gray.svg");
}
.share-button__link--fb:after {
  background-image: url("../img/ico_fb.svg");
}
.share-button__link--ok:before {
  background-image: url("../img/ico_ok_gray.svg");
}
.share-button__link--ok:after {
  background-image: url("../img/ico_ok.svg");
}
.product-colors {
  margin-bottom: 48px;
}
.product-colors:last-child {
  margin-bottom: 0;
}
.product-colors-group {
  margin-bottom: 14px;
}
.product-colors-group:last-child {
  margin-bottom: 0;
}
.product-colors__info p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  margin: 0;
  margin-top: -4px;
}
.product-colors__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-bottom: 16px;
}
.product-colors__color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 16px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.product-colors__color--lg {
  width: 34px;
  height: 34px;
}
.product-colors__color:hover .product-colors__color-hover {
  opacity: 1;
  visibility: visible;
}
.product-colors__color-hover {
  position: absolute;
  bottom: 100%;
  left: 100%;
  margin-left: 3px;
  margin-bottom: 3px;
  background: #FFFFFF;
  box-shadow: 5px 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 4px 0px;
  width: 125px;
  padding-top: 96px;
  padding-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.product-colors__color-hover-bg {
  position: absolute;
  height: 88px;
  border-radius: 4px;
  left: 4px;
  top: 4px;
  right: 4px;
  background-size: cover;
}
.product-cols {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.product-cols__left {
  padding-top: 25px;
  padding-right: 40px;
}
.product-cols__right {
  width: 280px;
  min-width: 280px;
}
.product-stats {
  margin-bottom: 31px;
}
.product-stats dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 0;
}
.product-stats dl:before {
  content: "";
  position: absolute;
  opacity: 0.4;
  left: 0;
  right: 0;
  bottom: 4px;
  border-bottom: 1px dashed #a3a3a3;
  z-index: -1;
}
.product-stats dl:last-child {
  margin-bottom: 0;
}
.product-stats dl dt {
  width: 220px;
  min-width: 220px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #a3a3a3;
  position: relative;
}
.product-stats dl dt span {
  background-color: #fff;
  padding-right: 8px;
  display: inline-block;
}
.product-stats dl dd {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  width: 100%;
  margin: 0;
  text-align: right;
}
.product-stats dl dd span {
  display: inline-block;
  background-color: #fff;
  padding-left: 8px;
  white-space: nowrap;
}
.product-stats dl a {
  border-bottom: 2px dotted #000000;
  line-height: 1;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}
.product-stats dl a:hover {
  color: #f84753;
  border-bottom-color: #f84753;
}
.popup.popup--item .product-stats dl dt {
  max-width: 160px;
  min-width: 160px;
}
.product-stats dl.has-select:before {
  display: none !important;
}
.product-stats .has-select {
  z-index: 99;
  -webkit-align-items: center;
          align-items: center;
  margin-top: -10px;
  margin-bottom: 6px;
}
.product-stats .has-select dd span {
  margin-left: -20px;
}
.product-stats .has-select dt {
  margin-right: -20px;
}
.product__all-stats {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  display: inline-block;
  position: relative;
  padding-right: 12px;
  transition: color 0.3s;
}
.product__all-stats:before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  -webkit-transform: rotate(45deg) scale(0.7);
          transform: rotate(45deg) scale(0.7);
  right: 0;
  top: 4px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transition: all 0.3s;
}
.product__all-stats span {
  display: block;
  padding-bottom: 3px;
  border-bottom: 2px dotted #000000;
  transition: border-color 0.3s;
}
.product__all-stats:hover {
  color: #f84753;
}
.product__all-stats:hover:before {
  border-color: #f84753;
}
.product__all-stats:hover span {
  border-bottom-color: #f84753;
}
.product-main-info {
  box-sizing: border-box;
  width: 280px;
}
.product-main-info__price {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}
.product-main-info__price-info {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  margin: 4px 0;
}
.product-main-info__price-per {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 16px;
}
.product-main-info__price-per span:nth-child(2) {
  white-space: nowrap;
}
.product-main-info__in-stock {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  margin-bottom: 16px;
}
.product-main-info__in-stock span {
  font-weight: bold;
  color: #000000;
}
.product-main-info-delivery {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
.product-main-info-delivery__left {
  padding-right: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
}
.product-main-info-delivery__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-right: 8px;
}
.product-main-info-delivery__city {
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #f84753;
  border-bottom: 1px dashed #f84753;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.product-main-info-delivery__city:hover {
  color: #FA717A;
  border-bottom-color: #FA717A;
}
.product-main-info-delivery__price {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  white-space: nowrap;
}
.product-buttons {
  margin-top: 45px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  gap: 4px;
}
.product-buttons .product-buttons__add,
.product-buttons .product-buttons__one-click,
.product-buttons .product-buttons__modules {
  -webkit-flex: 1;
          flex: 1;
}
.product-buttons.in-cart .product-buttons__fixed-place {
  height: 51px;
}
.product-buttons.in-cart .product-buttons__fixed {
  padding-bottom: 0;
}
.product-buttons.in-cart .product-buttons__in-cart {
  display: -webkit-flex;
  display: flex;
}
.product-buttons.in-cart .product-buttons__one-click,
.product-buttons.in-cart .product-buttons__add,
.product-buttons.in-cart .product-buttons__modules {
  display: none;
}
@media screen and (max-width: 755px) {
  .product-buttons .product-buttons__add-mobile {
    display: block;
  }
  .product-buttons .product-buttons__add-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 756px) {
  .product-buttons .product-buttons__add-mobile {
    display: none;
  }
  .product-buttons .product-buttons__add-desktop {
    display: block;
  }
}
.product-buttons__in-cart {
  display: none;
  width: 100%;
}
.product-buttons__cart-button {
  font-weight: bold;
  padding: 6px 10px;
  width: 100%;
}
.product-buttons__cart-button:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.product-buttons__cart-button span {
  display: block;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
}
.product-buttons__add-more {
  width: 90px;
  min-width: 90px;
  padding: 10px 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight: bold;
}
.product-buttons__fixed-place {
  position: relative;
  height: 59px;
}
.product-buttons__fixed {
  padding-top: 8px;
  padding-bottom: 8px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transition: background-color 0.3s, box-shadow 0.3s, border-radius 0.3s;
}
.product-additional {
  padding: 0;
  margin-bottom: 24px;
}
.product-additional__title {
  margin-bottom: 13px;
  font-size: 0;
  line-height: 1;
}
.product-additional__title-text {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  margin-right: 6px;
}
.product-additional__info {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.product-additional__dropdown {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 366px;
  left: 17px;
  top: 100%;
  margin-top: 3px;
  padding: 56px 28px;
  padding-top: 33px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  z-index: 10;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.product-additional__dropdown p {
  margin: 0;
}
.product-additional__dropdown.is-active {
  opacity: 1;
  visibility: visible;
}
.product-additional__dropdown p span {
  color: #f84753;
}
.product-additional__dropdown-svgs-group {
  padding-bottom: 43px;
  text-align: center;
  font-size: 0;
  line-height: 1;
}
.product-additional__dropdown-svgs {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 21px;
}
.product-additional__dropdown-svg {
  width: 73px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-align-items: center;
          align-items: center;
}
.product-additional__dropdown-svg span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #a3a3a3;
}
.product-additional__dropdown-svg:nth-child(2) {
  margin: 0 -2px;
}
.product-additional__info-icon {
  width: 19px;
  height: 19px;
  line-height: 1;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #a3a3a3;
  font-weight: 400;
}
.product-additional__info-icon:before {
  content: "?";
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  text-align: center;
}
.product-additional__info-icon:hover {
  color: #fff;
  background-color: #a3a3a3;
}
.product-additional__info-icon.is-active {
  background-color: #000;
  color: #fff;
}
.product-additional__scroll {
  position: relative;
  padding-right: 0;
  overflow: hidden;
  padding-bottom: 0;
}
.product-additional-items {
  width: 100%;
  font-size: 0;
  line-height: 1;
  border-collapse: collapse;
}
.product-additional-items tr td {
  padding-top: 8px;
  padding-bottom: 8px;
}
.product-additional-items tr:first-child td {
  padding-top: 0;
}
.product-additional-items tr:last-child td {
  padding-bottom: 0;
}
.product-additional-items__td-image {
  padding-right: 8px;
}
.product-additional-items__image {
  width: 57px;
  min-width: 57px;
  display: block;
}
.product-additional-items__image img {
  max-width: 100%;
  height: auto;
}
.product-additional-items__name {
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  display: inline-block;
  max-width: 136px;
  transition: color 0.3s;
}
.product-additional-items__name:hover {
  color: #f84753;
}
.product-additional-items__td-price {
  width: 87px;
  text-align: right;
}
.product-additional-items__price {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  color: #000000;
}
.product-additional-items__price--sm {
  display: none;
  font-size: 14px;
  line-height: 17px;
}
.product-additional__button {
  display: none;
  padding: 0 16px;
}
.product-additional__button .btn {
  display: block;
  width: 100%;
}
.fixed-calc {
  position: fixed;
  z-index: 99;
  bottom: 30px;
  left: 30px;
  transition: border-radius 0.3s;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.fixed-calc.is-active {
  cursor: default;
}
.fixed-calc.is-active .fixed-calc__open {
  display: none;
}
.fixed-calc.is-active .fixed-calc__block {
  border-radius: 4px;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.fixed-calc.is-active .fixed-calc__block:before {
  transition: all 0.4s;
  transition-delay: 0s;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.fixed-calc.is-active .fixed-calc__icon {
  -webkit-transform: scale(1) translate(0px, 0px);
          transform: scale(1) translate(0px, 0px);
}
.fixed-calc.is-active .fixed-calc__text {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  transition: all 0.6s;
  transition-delay: 0.3s;
}
.fixed-calc.is-active .fixed-calc__close {
  opacity: 1;
}
.fixed-calc__open {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: 10;
}
.fixed-calc__block {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 2px 24px rgba(0, 0, 0, 0.04), 0px 4px 32px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  transition: border-radius 0.6s, -webkit-transform 0.6s;
  transition: border-radius 0.6s, transform 0.6s;
  transition: border-radius 0.6s, transform 0.6s, -webkit-transform 0.6s;
  width: 451px;
  height: 135px;
  overflow: hidden;
  -webkit-transform: scale(0.133, 0.444);
          transform: scale(0.133, 0.444);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
.fixed-calc__block:before {
  content: "";
  position: absolute;
  width: 156px;
  height: 135px;
  left: 0;
  bottom: 0;
  background: url("../img/fixed_calc_figure.svg") no-repeat 0 0;
  background-size: contain;
  transition: all 1s;
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-transform: scale(4, 1);
          transform: scale(4, 1);
  transition-delay: 0s;
}
.fixed-calc__icon {
  position: absolute;
  width: 67px;
  height: 67px;
  left: 33px;
  bottom: 30px;
  background: url("../img/fixed_calc.svg") no-repeat 0 0;
  background-size: contain;
  z-index: 1;
  transition: all 0.6s;
  -webkit-transform: scale(0.5) translate(-70px, 67px);
          transform: scale(0.5) translate(-70px, 67px);
}
.fixed-calc__text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 451px;
  height: 135px;
  padding-left: 174px;
  padding-top: 15px;
  padding-right: 20px;
  transition: all 0.3s;
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.fixed-calc__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 13px;
  max-width: 231px;
}
.fixed-calc__close {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
  outline: none;
  position: absolute;
  cursor: pointer;
  transition: opacity 0.3s;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  z-index: 2;
  opacity: 0;
  transition-delay: 0.6s;
}
.fixed-calc__close:before, .fixed-calc__close:after {
  content: "";
  width: 17px;
  height: 2px;
  background-color: #BFBFBF;
  position: absolute;
  border-radius: 5px;
  transition: all 0.3s;
}
.fixed-calc__close:before {
  left: 4px;
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.fixed-calc__close:after {
  right: 5px;
  top: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.fixed-calc__close:hover:before, .fixed-calc__close:hover:after {
  background-color: #a3a3a3;
}
@media screen and (max-width: 1395px) {
  .product-left {
    width: 61.1%;
    padding: 0;
  }
  .product-right {
    width: 32.3%;
    padding: 0;
  }
  .product-gallery-full {
    width: 319px;
  }
  .product-gallery-vertical .product-gallery-full {
    width: 470px;
  }
  .product-gallery-full__image {
    height: 341px;
  }
  .product-gallery-full--sm {
    width: 319px;
  }
  .product-gallery-full--sm .product-gallery-full__image {
    height: 257px;
  }
  .product-gallery-thumbs {
    width: 319px;
  }
  .product-gallery-thumbs {
    margin: 0 auto;
  }
  .product-top-controls {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .product-cols__left .product-stats {
    display: none;
  }
  .product-colors {
    margin-bottom: 0;
  }
  .product__all-stats {
    display: none;
  }
  .product--module {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product--module .product-left {
    width: 100%;
    padding-top: 24px;
    margin-bottom: 48px;
    padding-bottom: 0;
  }
  .product--module .product-right {
    width: 100%;
    padding: 16px;
    padding-top: 0;
    padding-bottom: 45px;
  }
  .product--module .product-cols__left {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-top: 0;
    padding-right: 20px;
    width: 100%;
  }
  .product--module .product-colors {
    padding-left: 0px;
    padding-right: 20px;
  }
  .product--module .product-gallery-full--sm {
    width: 480px;
  }
  .product--module .product-gallery-full--sm .product-gallery-full__image {
    height: 357px;
  }
  .product-additional {
    min-width: unset;
  }
  .product-additional-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .product-right-info__bottom .product-buttons {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .product-right-info__bottom .product-buttons .btn {
    width: 100%;
  }
}
@media screen and (max-width: 995px) {
  .product {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-left {
    width: 100%;
    margin-bottom: 52px;
    padding-bottom: 0;
  }
  .product-right {
    width: 100%;
    padding: 0;
  }
  .product-top-controls__reviews {
    margin-right: 40px;
  }
  .product-right-info__bottom .product-buttons {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
  .product-cols__left .product-stats {
    display: none;
  }
  .product-right {
    padding-bottom: 64px;
  }
  .product-right-info {
    margin-bottom: 32px;
  }
  .product-colors {
    margin-bottom: 0;
  }
  .product__all-stats {
    display: none;
  }
  .product-colors .filter-colors {
    padding: 0;
  }
  .product-stats dl dt {
    width: 157px;
    min-width: 157px;
  }
  .product--module .product-left {
    margin-bottom: 72px;
  }
  .product--module .product-right {
    padding-bottom: 49px;
  }
  .product--module .product-cols__left {
    display: block;
    padding-top: 0;
    padding-right: 16px;
  }
  .product--module .product-colors {
    padding-right: 0px;
  }
  .product--module .product-main-info {
    width: 100%;
  }
  .product--module .product-cols__right {
    width: 224px;
    min-width: 224px;
  }
  .product--module .product-buttons .btn:before {
    display: none;
  }
  .product-additional {
    width: 100%;
    min-width: 0;
  }
  .product-gallery-vertical .product-gallery-thumbs {
    display: none;
  }
  .product-gallery-vertical .product-gallery-full {
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 755px) {
  .fixed-calc {
    display: none;
  }
  .product {
    border: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
    margin-bottom: 8px;
  }
  .product-left {
    padding: 0;
    padding-top: 4px;
    margin-bottom: 18px;
  }
  .product-right {
    padding: 0;
    padding-bottom: 26px;
  }
  .product-gallery-full {
    width: 100%;
    padding-bottom: 22px;
  }
  .product-gallery-full .swiper-button-prev,
.product-gallery-full .swiper-button-next {
    display: none;
    visibility: hidden;
  }
  .product-gallery-full .swiper-pagination {
    bottom: 0;
    display: block;
    width: 100%;
    line-height: 1;
  }
  .product-gallery-full .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 0;
    width: 19px;
    height: 19px;
  }
  .product-gallery-full .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  .product-gallery-full .swiper-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 0.8;
  }
  .product-gallery-full .swiper-pagination-bullets .swiper-pagination-bullet-active:before {
    -webkit-transform: scale(1.6) translate(-50%, -50%);
            transform: scale(1.6) translate(-50%, -50%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    background: #f84753;
  }
  .product-gallery-full .swiper-pagination-bullet:before {
    width: 5px;
    height: 5px;
    bottom: auto;
    top: 50%;
    left: 50%;
    background: #a3a3a3;
    -webkit-transform: scale(1) translate(-50%, -50%);
            transform: scale(1) translate(-50%, -50%);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .product-gallery-full__image {
    height: 307px;
  }
  .product-gallery-full--sm {
    width: 100%;
  }
  .product-gallery-full--sm .product-gallery-full__image {
    height: 0;
    padding-bottom: 74%;
  }
  .product-gallery-thumbs {
    display: none;
  }
  .product-top-controls__reviews {
    margin-right: 16px;
  }
  .product-top-controls__favorites {
    margin-right: 16px;
  }
  .product-stats dl {
    margin-bottom: 10px;
    display: -webkit-flex;
    display: flex;
    line-height: 24px;
  }
  .product-stats dl dt {
    width: auto;
    min-width: 0;
    white-space: nowrap;
    display: inline;
  }
  .product-stats dl dt:before {
    display: none;
  }
  .product-stats dl dt,
.product-stats dl dd {
    display: inline;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    padding: 0;
  }
  .product-stats dl dt span,
.product-stats dl dd span {
    display: inline;
    padding: 0;
  }
  .product-stats dl dt {
    width: 145px;
    display: inline-block;
  }
  .product-stats dl dt span {
    padding-right: 8px;
  }
  .product-top-controls__stars {
    margin-right: 4px;
  }
  .product-top-controls {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .share-button__dropdown {
    left: auto;
    right: 0;
  }
  .product-name {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 4px;
  }
  .product-cols {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-cols__left {
    padding-right: 0;
    padding-top: 0;
    width: 100%;
  }
  .product-cols__right {
    width: 100%;
    padding-bottom: 26px;
  }
  .product-main-info {
    padding: 0;
    border: 0;
    width: 100%;
    min-width: 0;
  }
  .product-main-info__price {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 5px;
  }
  .product-main-info__in-stock {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 21px;
  }
  .product-right-info__body {
    max-height: unset;
  }
  .product-main-info-delivery {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .product-main-info-delivery__left {
    display: block;
    margin-right: 8px;
    padding-right: 0;
  }
  .product-main-info-delivery__title {
    margin-right: 0;
    font-size: 14px;
    line-height: 17px;
  }
  .product-main-info-delivery__city {
    font-size: 14px;
    line-height: 17px;
    border: 0;
    display: block;
  }
  .product-main-info-delivery__price {
    font-size: 12px;
    line-height: 16px;
  }
  .product-buttons.in-cart .product-buttons__fixed {
    padding-bottom: 8px;
  }
  .product-buttons.in-cart .product-buttons__fixed-place {
    height: 59px;
  }
  .product-buttons {
    padding-top: 24px;
  }
  .product-buttons__fixed.is-fixed {
    position: fixed;
    padding: 8px 16px;
    bottom: 62px;
    background: #FFFFFF;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px -2px 6px rgba(0, 0, 0, 0.04), 0px -16px 24px rgba(0, 0, 0, 0.06);
    border-radius: 4px 4px 0px 0px;
    z-index: 100;
    border-bottom: 1px solid #eeeef0;
  }
  .product-main-info__price-per {
    display: block;
  }
  .product-main-info__price-per span:first-child {
    display: block;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 3px;
  }
  .product--module .product-left {
    padding: 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    margin-bottom: 18px;
  }
  .product--module .product-right {
    padding: 0;
    padding-bottom: 0;
  }
  .product--module .product-cols__left {
    padding-right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product--module .product-main-info {
    width: 100%;
  }
  .product--module .product-cols__right {
    width: 100%;
    min-width: 0;
  }
  .product--module .product-colors {
    padding-bottom: 26px;
  }
  .product--module .product-gallery-full--sm {
    width: 100%;
    max-width: none;
  }
  .product--module .product-gallery-full--sm .product-gallery-full__image {
    height: 0;
    padding-bottom: 74%;
  }
  .product-additional {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    background-color: #ffffff;
    width: 100%;
  }
  .product-additional__title {
    padding: 0;
    margin-bottom: 16px;
  }
  .product-additional__title-text {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    margin-right: 2px;
  }
  .product-additional__inner {
    background-color: #fff;
    padding-top: 26px;
    padding-bottom: 16px;
  }
  .product-additional-items__price:not(.product-additional-items__price--sm) {
    display: none;
  }
  .product-additional-items__price--sm {
    display: block;
  }
  .product-right-info__bottom .product-buttons {
    padding-top: 0;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .product-additional-items tr td {
    padding: 16px 0;
    padding-bottom: 19px;
    border-top: 1px solid #eeeef0;
  }
  .product-additional-items tr td:first-child {
    padding-left: 0;
    width: 65px;
    padding-right: 8px;
  }
  .product-additional-items tr td:last-child {
    padding-right: 0;
  }
  .product-additional-items tr:first-child td {
    padding: 16px 0;
    padding-bottom: 19px;
  }
  .product-additional-items tr:first-child td:first-child {
    padding-left: 0;
  }
  .product-additional-items tr:first-child td:last-child {
    padding-right: 0;
  }
  .product-additional-items tr:last-child td {
    border-bottom: 0;
    padding-bottom: 16px;
  }
  .product-additional-items__name {
    font-size: 12px;
    line-height: 16px;
    max-width: 100px;
  }
  .product-additional-items__td-price {
    display: none;
  }
  .product-additional-items__td-quantity {
    width: 107px;
  }
  .product-additional-items__price--sm {
    margin-bottom: -2px;
  }
  .product-additional-item--hide-mobile {
    display: none;
  }
  .product-additional__scroll {
    padding: 0;
    max-height: none;
  }
  .product-additional__button {
    display: block;
  }
  .product-colors__color-hover {
    display: none;
  }
}
@media (max-width: 700px) {
  .product-additional__title {
    position: relative;
  }
  .product-additional__info {
    position: static;
  }
  .product-additional__dropdown {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 0;
    top: 20px;
    width: 288px;
    padding: 20px;
  }
  .product-additional__dropdown-svgs-group {
    padding-bottom: 20px;
  }
}
.product-info {
  background: #FFFFFF;
  border-radius: 4px;
}
.product-info-tabs {
  padding: 16px 40px;
  padding-bottom: 0;
  border-bottom: 1px solid #eeeef0;
  overflow: hidden;
}
.product-info-tabs-slider {
  overflow: visible;
}
.product-info-tabs-slider .swiper-slide {
  width: auto;
}
.product-info-tab {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #a3a3a3;
  padding-bottom: 10px;
  transition: all 0.3s;
  border-bottom: 6px solid rgba(248, 71, 83, 0);
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.product-info-tab span {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  margin-left: 8px;
}
.product-info-tab.is-active {
  border-bottom-color: #f84753;
  color: #000;
}
.product-info-tab:hover {
  color: #000;
}
.product-info-descr {
  display: -webkit-flex;
  display: flex;
}
.product-info-descr__left {
  padding: 48px 40px;
  width: 45%;
}
.product-info-descr__right {
  background: #F2F2F5;
  padding: 52px 64px;
  padding-bottom: 77px;
  width: 56%;
}
.product-info-descr__right .product-stats {
  margin-bottom: 0;
}
.product-info-descr__right .product-stats dl dt span {
  background-color: #F2F2F5;
}
.product-info-descr__right .product-stats dl dd span {
  background-color: #F2F2F5;
}
.product-info-block {
  display: none;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.product-info-block.is-active {
  display: block;
}
.product-info-block.is-animated {
  opacity: 1;
  visibility: visible;
}
.product-info-delivery {
  padding: 40px;
  padding-bottom: 16px;
}
.product-info-delivery__cols {
  display: -webkit-flex;
  display: flex;
}
.product-info-delivery__col {
  width: 33.33%;
  padding-right: 30px;
}
.product-info-delivery__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 39px;
}
.product-info-delivery__block {
  padding-bottom: 32px;
}
.product-info-delivery__block-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 8px;
}
.product-info-delivery__block-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 27px;
}
.product-info-delivery__block-text p {
  margin-bottom: 25px;
  max-width: 327px;
}
.product-info-delivery__block-text p:last-child {
  margin-bottom: 0;
}
.product-info-delivery__block-text p a {
  color: #f84753;
  font-weight: bold;
  border-bottom: 1px dotted #f84753;
  transition: all 0.3s;
}
.product-info-delivery__block-text p a:hover {
  color: #DA3E49;
  border-bottom-color: #DA3E49;
}
.product-info-delivery__block-text span {
  color: #f84753;
  font-weight: bold;
  white-space: nowrap;
}
.product-info-delivery__block-text small {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  margin-top: 4px;
}
.product-info-reviews {
  padding: 40px;
  position: relative;
}
.product-info-reviews__button {
  position: absolute;
  right: 40px;
  top: 33px;
}
.product-info-reviews__button .btn {
  min-width: 184px;
}
.product-info-reviews__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 51px;
}
.product-info-reviews__list {
  padding-left: 64px;
}
.product-info-review {
  max-width: 480px;
  margin-bottom: 40px;
}
.product-info-review:last-child {
  margin-bottom: 0;
}
.product-info-review__header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 34px;
}
.product-info-review__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  position: relative;
}
.product-info-review__name:before {
  content: "";
  background: #EEEEF0 url("../img/review_user.svg") no-repeat center;
  background-size: 14px 18px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  left: -64px;
  top: -10px;
  line-height: 48px;
  font-size: 18px;
  color: #666666;
}
.product-info-review__date-rating {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.product-info-review__date {
  white-space: nowrap;
  margin-right: 12px;
  font-size: 14px;
  line-height: 17px;
  color: #666666;
}
.product-info-review__rating {
  margin-top: -2px;
}
.product-info-review__buttons {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.product-info-review__button {
  padding-left: 34px;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #666666;
  position: relative;
  margin-right: 32px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: color 0.3s, opacity 0.3s;
}
.product-info-review__button:before, .product-info-review__button:after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.3s;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  top: -7px;
}
.product-info-review__button:after {
  opacity: 0;
}
.product-info-review__button:hover:not(.is-active) {
  opacity: 0.5;
}
.product-info-review__button.is-active {
  color: #f84753;
}
.product-info-review__button.is-active:before {
  opacity: 0;
}
.product-info-review__button.is-active:after {
  opacity: 1;
}
.product-info-review__button--like:before, .product-info-review__button--like:after {
  width: 26px;
  height: 26px;
}
.product-info-review__button--like:before {
  background-image: url("../img/like.svg");
}
.product-info-review__button--like:after {
  background-image: url("../img/like_active.svg");
}
.product-info-review__button--dislike {
  margin-right: 0;
}
.product-info-review__button--dislike:before, .product-info-review__button--dislike:after {
  top: 0;
  width: 23px;
  height: 21px;
}
.product-info-review__button--dislike:before {
  background-image: url("../img/dislike.svg");
}
.product-info-review__button--dislike:after {
  background-image: url("../img/dislike_active.svg");
}
.product-info-review__text-block {
  margin-bottom: 16px;
}
.product-info-review__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 27px;
}
.product-info-review__text {
  font-weight: normal;
  font-size: 16px;
  line-height: 27px;
}
.product-info-review__files {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
  margin-bottom: 24px;
}
.product-info-review__file {
  border-radius: 4px;
  position: relative;
  width: 144px;
  height: 95px;
  overflow: hidden;
  margin-right: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.product-info-review__file:hover {
  opacity: 0.7;
}
.product-info-review__file img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.product-info-qa {
  padding: 40px;
  padding-bottom: 58px;
  position: relative;
}
.product-info-qa__button {
  position: absolute;
  right: 40px;
  top: 33px;
}
.product-info-qa__button .btn {
  min-width: 184px;
}
.product-info-qa__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 39px;
}
.product-info-qa-item {
  max-width: 580px;
  margin-bottom: 56px;
}
.product-info-qa-item:last-child {
  margin-bottom: 0;
}
.product-info-qa-item__header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
  padding-bottom: 8px;
}
.product-info-qa-item__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height, or 150% */
  color: #000000;
  margin-right: 16px;
}
.product-info-qa-item__date {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  /* Серый/ Текст */
  color: #666666;
}
.product-info-qa-item__text {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 17px;
  max-width: 480px;
}
.product-info-qa-item__controls {
  font-size: 0;
  line-height: 1;
}
.product-info-qa-item__more-replies,
.product-info-qa-item__reply {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #f84753;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.product-info-qa-item__more-replies:hover,
.product-info-qa-item__reply:hover {
  color: #DA3E49;
}
.product-info-qa-item__more-replies {
  margin-right: 40px;
}
.product-info-qa-item__more-replies span:nth-child(2) {
  display: none;
  color: #a3a3a3;
}
.product-info-qa-item__more-replies span:nth-child(2):hover {
  color: #000;
}
.product-info-qa-item__more-replies.is-active span:nth-child(1) {
  display: none;
}
.product-info-qa-item__more-replies.is-active span:nth-child(2) {
  display: block;
}
.product-info-qa-item__reply {
  margin-right: 32px;
}
.product-info-qa-item__like {
  padding-left: 34px;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #666666;
  position: relative;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: color 0.3s, opacity 0.3s;
  display: inline-block;
  vertical-align: middle;
}
.product-info-qa-item__like:before, .product-info-qa-item__like:after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.3s;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  top: -7px;
  width: 26px;
  height: 26px;
}
.product-info-qa-item__like:before {
  background-image: url("../img/like.svg");
}
.product-info-qa-item__like:after {
  background-image: url("../img/like_active.svg");
}
.product-info-qa-item__like:after {
  opacity: 0;
}
.product-info-qa-item__like:hover:not(.is-active) {
  opacity: 0.5;
}
.product-info-qa-item__like.is-active {
  color: #f84753;
}
.product-info-qa-item__like.is-active:before {
  opacity: 0;
}
.product-info-qa-item__like.is-active:after {
  opacity: 1;
}
.product-info-qa-item--reply {
  margin-top: 24px;
  padding: 24px 40px;
  margin-bottom: 0;
}
.product-info-qa-item--reply-admin {
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 24px 32px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}
.product-info-qa-item--hidden {
  display: none;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
}
.product-info-qa-item--hidden.is-active {
  display: block;
}
.product-info-qa-item--hidden.is-animated {
  opacity: 1;
}
.product-info-qa-form {
  padding-top: 27px;
  display: none;
  max-width: 580px;
}
.product-info-qa-form .form-field {
  border: 2px solid #000000;
  border-radius: 4px;
  min-height: 85px;
}
.product-info-qa-form .form-item {
  margin-bottom: 0;
}
.product-info-qa-form.is-open {
  display: block;
}
.product-info-qa-form .form-field-wrap.input--filled ~ .product-info-qa-form__buttons {
  opacity: 1;
  visibility: visible;
}
.product-info-qa-form .form-field-wrap.input--focus ~ .product-info-qa-form__buttons {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}
.product-info-qa-form__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 8px;
}
.product-info-qa-form__buttons {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 16px;
  transition: opacity 0.3s, visibility 0.3s, margin 0.3s;
  opacity: 0;
  visibility: hidden;
  margin-bottom: -47px;
}
.product-info-qa-form__buttons .btn {
  margin-left: 8px;
  padding-left: 40px;
  padding-right: 40px;
}
.product-info-qa-item--moderation .product-info-qa-item__text {
  color: #a3a3a3;
}
.product-info-qa-item__moderation-label {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #a3a3a3;
  background: #EEEEF0;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 4px;
}
@media screen and (max-width: 1395px) {
  .product-info-descr__left {
    width: 42.3%;
  }
  .product-info-descr__right {
    width: 57.7%;
  }
  .product-info-delivery__title {
    margin-bottom: 24px;
  }
  .product-info-delivery {
    padding-top: 32px;
  }
  .product-info-delivery__cols {
    display: block;
  }
  .product-info-delivery__col {
    width: 100%;
    padding-top: 32px;
    border-bottom: 1px solid #eeeef0;
  }
  .product-info-delivery__col:first-child {
    padding-top: 0;
  }
  .product-info-delivery__col:last-child {
    border-bottom: 0;
  }
  .product-info-delivery__blocks {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -20px;
  }
  .product-info-delivery__block {
    width: 33.33%;
    padding-right: 20px;
  }
  .product-info-delivery__block:first-child:last-child {
    width: 35%;
  }
}
@media screen and (max-width: 995px) {
  .product-info-tabs {
    padding: 16px 24px;
    padding-bottom: 0;
  }
  .product-info-descr__left {
    width: 45.8%;
    padding: 32px 24px;
  }
  .product-info-descr__right {
    width: 54.2%;
    padding: 40px 32px;
  }
  .product-info-delivery__block {
    width: 50%;
  }
  .product-info-delivery__block:first-child:last-child {
    width: 50%;
  }
  .product-info-delivery__block-text {
    max-width: 254px;
  }
  .product-info-review {
    max-width: 376px;
  }
  .product-info-reviews .product-info-qa {
    padding: 32px 40px;
    position: relative;
  }
  .product-info-review__files {
    margin-bottom: 10px;
  }
  .product-info-review__file {
    width: 117px;
    height: 77px;
    margin-right: 13px;
    margin-bottom: 13px;
  }
  .product-info-qa-item {
    max-width: 438px;
  }
  .product-info-qa-form {
    max-width: 438px;
  }
  .product-info-qa-item__text {
    max-width: 328px;
  }
  .product-info-qa-item__replies {
    padding-left: 24px;
  }
}
@media screen and (max-width: 755px) {
  .product-info {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
  }
  .product-info-tabs {
    padding-left: 16px;
    padding-right: 16px;
  }
  .product-info-tab {
    font-size: 16px;
    line-height: 20px;
  }
  .product-info-descr {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-info-descr__left {
    padding: 20px 16px;
    padding-bottom: 56px;
    width: 100%;
  }
  .product-info-descr__right {
    background: none;
    padding: 24px 16px;
    padding-bottom: 56px;
    width: 100%;
    border-bottom: 1px solid #eeeef0;
  }
  .product-info-descr__right .product-stats dl dt span,
.product-info-descr__right .product-stats dl dd span {
    background-color: #fff;
  }
  .product-info-delivery {
    padding: 19px 16px;
  }
  .product-info-delivery__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 24px;
  }
  .product-info-delivery__block-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .product-info-delivery__col {
    padding-top: 30px;
  }
  .product-info-delivery__blocks {
    margin-right: 0;
  }
  .product-info-delivery__block {
    width: 100%;
    padding-right: 0;
    padding-bottom: 24px;
  }
  .product-info-delivery__block:first-child:last-child {
    width: 100%;
  }
  .product-info-delivery__block-text {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }
  .product-info-delivery__block-text p {
    max-width: none;
  }
  .product-info-review {
    max-width: none;
  }
  .product-info-reviews,
.product-info-qa {
    padding: 24px 16px;
    position: relative;
  }
  .product-info-qa {
    padding-bottom: 35px;
  }
  .product-info-reviews__list {
    padding-left: 0;
  }
  .product-info-review__header {
    display: block;
    margin-bottom: 0;
  }
  .product-info-review__name {
    padding-left: 64px;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
  }
  .product-info-review__name:before {
    left: 0;
  }
  .product-info-review__rating {
    margin-top: 0;
    margin-left: -3px;
    margin-bottom: 4px;
  }
  .product-info-review__date-rating {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 24px;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  .product-info-review__date {
    display: block;
    margin-right: 0;
  }
  .product-info-reviews__button {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 51px;
  }
  .product-info-reviews__button .btn {
    display: block;
    width: 100%;
  }
  .product-info-reviews__title {
    display: none;
  }
  .product-info-review__files {
    margin-bottom: 28px;
  }
  .product-info-review__file {
    width: 64px;
    height: 64px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .product-info-review__title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
  }
  .product-info-qa__button {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 40px;
  }
  .product-info-qa__button .btn {
    display: block;
  }
  .product-info-qa__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 53px;
  }
  .product-info-qa-item {
    margin-bottom: 48px;
  }
  .product-info-qa-item__name {
    font-size: 16px;
    line-height: 20px;
    margin-right: 16px;
  }
  .product-info-qa-item__date {
    font-size: 12px;
    line-height: 16px;
  }
  .product-info-qa-item__text {
    margin-bottom: 13px;
  }
  .product-info-qa-item__replies {
    padding-left: 0;
  }
  .product-info-qa-item--reply {
    padding: 24px 17px;
  }
  .product-info-qa-form__buttons {
    padding-top: 8px;
  }
  .product-info-qa-form__buttons .btn {
    padding: 12px 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
  }
  .product-info-qa-form .form-field {
    min-height: 74px;
  }
}
.product-items {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 80px;
}
.product-items:last-child {
  border-bottom: 0;
  padding-bottom: 100px;
}
.product-items-filter__open {
  display: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  color: #000;
  transition: color 0.3s;
}
.product-items-filter__open:before {
  font-size: 14px;
}
.product-items-filter__open:hover {
  color: #f84753;
}
.product-items__links {
  font-size: 0;
  line-height: 1;
  padding-top: 41px;
  margin-bottom: 24px;
}
.product-items__link {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  color: #a3a3a3;
  white-space: nowrap;
  margin-right: 32px;
  transition: color 0.3s;
}
.product-items__link span {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  opacity: 0.7;
  margin-left: 8px;
}
.product-items__link:hover {
  color: #f84753;
}
.product-items__link.is-active {
  color: #f84753;
}
@media screen and (min-width: 756px) {
  .product-items .aside-filter {
    padding: 0;
    margin: 0;
    min-width: 0;
    width: 100%;
    background: none;
  }
  .product-items .aside-filter-fixed {
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .product-items .filter-items {
    margin-right: -24px;
    margin-bottom: 24px;
    display: -webkit-flex;
    display: flex;
  }
  .product-items .filter-group {
    border: 0;
  }
  .product-items .filter-group {
    margin-right: 24px;
  }
  .product-items .filter-group .dropdown {
    display: block;
  }
  .product-items .filter-group--type {
    width: 229px;
  }
  .product-items .filter-group--size {
    width: 184px;
  }
  .product-items .filter-group--color {
    width: 190px;
  }
  .product-items .filter-group-header {
    display: none;
  }
  .product-items .filter-group-body {
    border: 0;
    border: 0;
    overflow: visible;
    margin: 0;
    height: auto !important;
  }
  .product-items .filter-group-body__inner {
    padding: 0;
  }
}
@media (min-width: 756px) and (max-width: 996px) {
  .product-items .filter-items {
    margin-right: -16px;
    margin-bottom: 24px;
    display: -webkit-flex;
    display: flex;
  }
  .product-items .filter-group {
    margin-right: 16px;
    -webkit-flex: 1;
            flex: 1;
  }
  .product-items .filter-group--type {
    width: auto;
  }
  .product-items .filter-group--size {
    width: auto;
  }
  .product-items .filter-group--color {
    width: auto;
  }
  .product-items .filter-group:last-child .dropdown__menu {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 755px) {
  .product-items {
    padding-bottom: 16px;
    border: 0;
  }
  .product-items:last-child {
    padding-bottom: 64px;
  }
  .product-items__header {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    padding-top: 40px;
    padding-bottom: 15px;
  }
  .product-items__header .section-title {
    padding-top: 0;
    padding-bottom: 0;
  }
  .product-items__header .section-title h4,
.product-items__header .section-title .h4 {
    font-size: 20px;
    line-height: 25px;
  }
  .product-items__header--links {
    padding-top: 44px;
    padding-bottom: 16px;
  }
  .product-items__links {
    margin-bottom: 0;
    padding-top: 0;
  }
  .product-items__link {
    font-size: 16px;
    line-height: 20px;
    margin-right: 10px;
  }
  .product-items__link span {
    font-size: 16px;
    line-height: 19px;
    margin-left: 4px;
  }
  .product-items-filter__open {
    display: inline-block;
    margin-top: -6px;
  }
  .aside-filter--product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding-right: 0;
    background: #fff;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .aside-filter--product .aside-filter__mobile-bottom,
.aside-filter--product .aside-filter__mobile-top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .aside-filter--product .aside-filter-fixed {
    padding: 0 16px;
    position: absolute;
    top: 58px;
    bottom: 77px;
    left: 0;
    width: 100%;
    overflow: auto;
  }
  .aside-filter--product .aside-filter-fixed .ps__rail-x {
    display: none;
  }
  .aside-filter--product .aside-filter__total-fixed {
    display: none !important;
  }
  .aside-filter--product .catalog-cols {
    display: block;
  }
  .aside-filter--product .catalog-sort__view-mode:not(.is-active) {
    display: none;
  }
  .aside-filter--product .filter-info {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
  }
  .aside-filter--product .filter-group-header__title {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .aside-filter--product .filter-group-header__title:before {
    border-width: 1px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .aside-filter--product .filter-group {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .aside-filter--product .filter-group:last-child {
    border-bottom: 1px solid #e7e7e7;
  }
  .aside-filter--product .filter-group--always-open-mobile .filter-group-header__title:before {
    display: none;
  }
  .aside-filter--product .filter-group--always-open-mobile .filter-group-header__title {
    margin-bottom: -12px;
    padding-bottom: 0;
    cursor: default;
  }
  .aside-filter--product .filter-group--always-open-mobile .filter-range__inputs {
    padding-top: 0;
    padding-bottom: 25px;
  }
  .aside-filter--product .filter-group--always-open-mobile .filter-group-body {
    height: auto !important;
  }
  .aside-filter--product .filter-group-header--hide-mobile {
    display: none;
  }
  .aside-filter--product .filter-group-body__inner {
    padding: 16px 10px;
  }
  .aside-filter--product .filter-checkboxes .checkbox:last-child {
    margin-bottom: 0;
  }
  .aside-filter--product .filter-range {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 9px;
  }
  .aside-filter--product .filter-group-header__info:not(.filter-group-header__info--mobile) {
    display: none;
  }
  .aside-filter--product .filter-group-body__header {
    display: -webkit-flex;
    display: flex;
  }
  .aside-filter--product .filter-group-body__footer {
    display: block;
    z-index: 9;
  }
  .aside-filter--product .filter-group--mobile .filter-group-body {
    width: 100%;
    height: 100% !important;
    left: 0;
    top: 0;
    z-index: 1001;
    position: fixed;
    background-color: #fff;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .aside-filter--product .filter-group--mobile .filter-group-body.is-active {
    opacity: 1;
    visibility: visible;
  }
  .aside-filter--product .filter-group--mobile .filter-group-body__inner {
    position: absolute;
    top: 58px;
    bottom: 77px;
    width: 100%;
    left: 0;
    z-index: 2;
    padding: 0;
    overflow: auto;
  }
  .aside-filter--product .filter-group--mobile .checkbox {
    border-bottom: 1px solid #eeeef0;
    margin: 0;
  }
  .aside-filter--product .filter-group--mobile .checkbox input:checked ~ span {
    background: #eeeef0;
  }
  .aside-filter--product .filter-group--mobile .checkbox span {
    padding: 16px;
    padding-right: 20px;
    transition: background-color 0.3s;
  }
  .aside-filter--product .filter-group--mobile .checkbox span:after {
    display: none;
  }
  .aside-filter--product .filter-group--mobile .checkbox span:before {
    position: absolute;
    width: 17px;
    height: 13px;
    left: auto;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    color: #f84753;
  }
  .aside-filter--product .filter-colors {
    padding: 16px;
  }
  .aside-filter--product .dropdown {
    display: none;
  }
  .aside-filter--product .dropdown__item {
    display: none;
  }
  .aside-filter--product .dropdown__menu {
    position: static;
    top: 0;
    margin: 0;
    left: 0;
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 0;
    padding: 0;
  }
  .aside-filter--product .filter-group-body.is-active .dropdown {
    display: block;
  }
  .aside-filter--product.is-open {
    opacity: 1;
    visibility: visible;
  }
  .page-loaded .aside-filter--product {
    display: block;
  }
  .product-buttons .product-buttons__add {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    border-radius: 4px !important;
  }
  .product-buttons .product-buttons__add span {
    margin-left: 4px;
    pointer-events: none;
  }
}
.filter-color.filter-color--size {
  height: 32px;
  width: auto;
  border: 1px solid #EEEEF0;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  margin-right: 12px;
  margin-bottom: 0;
}
.filter-color.filter-color--size input:checked + span:after {
  opacity: 1;
  box-shadow: none;
}
.filter-color.filter-color--size input + span {
  padding: 0 12px;
  border-radius: 0;
  height: 32px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.filter-color.filter-color--size input + span span {
  color: #666666;
}
.filter-color.filter-color--size input + span span::before {
  content: "·";
  margin: 0 4px;
}
.filter-color.filter-color--size input + span::after {
  content: "";
  position: absolute;
  width: calc(100% + 12px);
  height: 42px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: all 0.3s;
  border: 3px solid #F84753;
  background-color: #fff;
  opacity: 0;
  border-radius: 30px;
  z-index: -1;
}
.filter-color.filter-color--size input + span::before {
  display: none;
}
.filter-colors--size {
  row-gap: 12px;
}
.filter-colors--size .filter-color--hidden {
  display: none;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cart {
  padding-bottom: 130px;
}
.cart__container {
  display: -webkit-flex;
  display: flex;
}
.cart__left {
  width: 100%;
}
.cart__right {
  width: 300px;
  min-width: 300px;
}
.cart-main {
  background: #FFFFFF;
  /* Серый/ Светлый */
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0 32px;
  margin-bottom: 16px;
}
.cart-main__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  padding: 16px 0;
}
.cart-main__title sup {
  display: none;
}
.cart-item {
  padding: 30px 0;
  border-top: 1px solid #EEEEF0;
  display: -webkit-flex;
  display: flex;
  position: relative;
  min-height: 220px;
}
.cart-item__left {
  width: 239px;
  min-width: 239px;
  padding-right: 32px;
}
.cart-item__photo {
  display: block;
  height: 123px;
  position: relative;
  overflow: hidden;
}
.cart-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.cart-item__photo--cover img {
  -o-object-position: center;
     object-position: center;
}
.cart-item__right {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding-right: 47px;
}
.cart-item__info {
  margin-right: auto;
  max-width: 391px;
  padding-right: 10px;
}
.cart-item__name {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 16px;
  transition: color 0.3s;
}
a.cart-item__name:hover {
  color: #f84753;
}
.cart-item__price-wrap {
  min-width: 154px;
  padding-top: 2px;
  padding-left: 10px;
  text-align: right;
}
.cart-item__price,
.cart-item__old {
  white-space: nowrap;
}
.cart-item__price {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}
.cart-item__price-old {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  display: inline-block;
  position: relative;
  color: #a3a3a3;
}
.cart-item__price-old:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  top: 0;
  top: 50%;
  margin-top: -1px;
  background-color: #f84753;
}
.cart-item__delete {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  outline: none;
  position: absolute;
  cursor: pointer;
  transition: opacity 0.3s;
  right: 9px;
  top: 5px;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.cart-item__delete:before, .cart-item__delete:after {
  content: "";
  width: 17px;
  height: 2px;
  background-color: #BFBFBF;
  position: absolute;
  border-radius: 5px;
  transition: all 0.3s;
}
.cart-item__delete:before {
  left: 4px;
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.cart-item__delete:after {
  right: 5px;
  top: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.cart-item__delete:hover:before, .cart-item__delete:hover:after {
  background-color: #a3a3a3;
}
.cart-promo {
  background: #FFFFFF;
  /* Серый/ Светлый */
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px 32px;
  padding-bottom: 32px;
}
.cart-promo__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 22px;
}
.cart-promo-field .form-field {
  border: 2px solid #eeeef0;
}
.cart-promo-field .form-field-wrap {
  width: 298px;
  min-width: 298px;
}
.cart-promo-field .btn {
  padding: 15px 17px;
  padding-top: 14px;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
}
.cart-promo-field .form-field-err,
.cart-promo-field .form-field-success {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: -23px;
  display: none;
}
.cart-promo-field .form-field-err.is-active,
.cart-promo-field .form-field-success.is-active {
  display: block;
}
.cart-promo-field.has-success .form-field-wrap:before {
  display: none;
}
.cart-promo-field.has-error .form-field {
  border: 2px solid #eeeef0;
}
.cart-promo-field.has-error .form-field:focus {
  border-color: #ECECEC;
}
.cart-promo-field.has-error .form-field-err,
.cart-promo-field.has-error .form-field-success {
  display: none;
}
.cart-promo-field.has-error .form-field-err.is-active,
.cart-promo-field.has-error .form-field-success.is-active {
  display: block;
}
.cart-total-fixed {
  padding-left: 20px;
}
.cart-total-fixed .container {
  padding: 0;
}
.cart-total {
  background: #FFFFFF;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  width: 280px;
  padding: 20px 16px;
  margin-bottom: 8px;
}
.cart-total__price {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 15px;
}
.cart-total__price--mobile {
  display: none;
}
.cart-total__detail-price {
  margin-bottom: 24px;
}
.cart-total__detail-price p {
  margin-bottom: 4px;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.cart-total__detail-price p:last-child {
  margin-bottom: 0;
}
.cart-total__delivery {
  margin-bottom: 24px;
}
.cart-total__delivery-city {
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 8px;
}
.cart-total__delivery-city a {
  color: #f84753;
  border-bottom: 2px dotted #f84753;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cart-total__delivery-city a:hover {
  color: #FA717A;
  border-bottom-color: #FA717A;
}
.cart-total__delivery-street {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  font-size: 16px;
  line-height: 19px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.cart-total__payment {
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 32px;
}
.cart-total__payment a {
  color: #f84753;
  border-bottom: 2px dotted #f84753;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cart-total__payment a:hover {
  color: #FA717A;
  border-bottom-color: #FA717A;
}
.cart-total__button .btn {
  display: block;
  width: 100%;
}
.cart-total__button .btn span {
  display: none;
}
.cart-total__button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.cart-countdown,
.cart-min {
  padding: 24px 20px;
  text-align: center;
  background: #FFFFFF;
  /* Серый/ Светлый */
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 8px;
}
.cart-countdown__progress,
.cart-min__progress {
  width: 233px;
  margin: 0 auto;
  height: 2px;
  background: rgba(163, 163, 163, 0.5);
  position: relative;
  margin-bottom: 8px;
}
.cart-countdown__progress span,
.cart-min__progress span {
  position: absolute;
  left: 0;
  height: 2px;
  top: 0;
  z-index: 1;
  background-color: #f84753;
}
.cart-countdown__title,
.cart-min__title {
  font-size: 14px;
  line-height: 19px;
  /* identical to box height, or 136% */
  text-align: center;
  /* Серый/ Кнопка */
  color: #a3a3a3;
  margin-bottom: 4px;
}
.cart-countdown__time,
.cart-min__time {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
}
.cart-divider {
  padding-top: 0;
  padding-bottom: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  margin-top: 59px;
}
.cart-divider:before, .cart-divider:after {
  content: "";
  width: 100%;
  position: relative;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}
.cart-divider span {
  padding: 0 18px;
  white-space: nowrap;
}
.cart-block {
  background: #FFFFFF;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px 32px;
  margin-bottom: 16px;
}
.cart-block__hidden {
  display: none;
}
.cart-block__hidden.is-active {
  display: block;
}
.cart-block__body {
  padding-top: 24px;
  padding-bottom: 16px;
}
.cart-block__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.cart-block-title__text {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 14px;
}
.cart-block-title__info {
  display: inline-block;
  vertical-align: middle;
}
.cart-block-title__info-icon {
  width: 19px;
  height: 19px;
  line-height: 1;
  border-radius: 50%;
  background-color: #eeeef0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #a3a3a3;
  font-weight: 400;
}
.cart-block-title__info-icon:before {
  content: "?";
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}
.cart-block-title__info-icon:hover {
  color: #fff;
  background-color: #a3a3a3;
}
.cart-block__info-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 27px;
}
.cart-block__info {
  margin-bottom: 16px;
}
.cart-block__info:last-child {
  margin-bottom: 0;
}
.cart-block__info--lg .cart-block__info-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}
.cart-block__info-text {
  font-size: 16px;
  line-height: 20px;
}
.cart-block__info-text span {
  font-weight: bold;
  color: #f84753;
}
.cart-block__toggle {
  display: block;
  height: 40px;
  width: 72px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.cart-block__toggle input {
  display: none;
}
.cart-block__toggle input:checked ~ span {
  background-color: #f84753;
}
.cart-block__toggle input:checked ~ span:before {
  -webkit-transform: translateX(32px);
          transform: translateX(32px);
}
.cart-block__toggle span {
  height: 40px;
  width: 100%;
  background: #EEEEF0;
  display: block;
  box-sizing: border-box;
  border-radius: 20.1429px;
  transition: all 0.3s;
  position: relative;
}
.cart-block__toggle span:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: 2px;
  top: 2px;
  transition: all 0.3s;
  border-radius: 50%;
  background: #FFFFFF;
}
.cart-block__descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #a3a3a3;
  padding-top: 4px;
  margin-bottom: 24px;
  max-width: 431px;
}
.cart-block__descr:last-child {
  margin-bottom: 0;
}
.cart-block__select-blocks {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 24px;
}
.cart-block__select-blocks:last-child {
  margin-bottom: 0;
}
.cart-block-select {
  display: -webkit-flex;
  display: flex;
  width: calc(50% - 16px);
  cursor: pointer;
}
.cart-block-select input {
  display: none;
}
.cart-block-select input:checked + span {
  border-color: #f84753;
  box-shadow: 0px 15px 30px rgba(88, 88, 88, 0.15);
}
.cart-block-select input:checked + span:before {
  border-color: #f84753;
}
.cart-block-select input:checked + span:after {
  opacity: 1;
}
.cart-block-select > span {
  width: 100%;
  display: block;
  border: 2px solid #EEEEF0;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 4px;
  padding: 40px;
  padding-left: 104px;
  padding-bottom: 32px;
  position: relative;
}
.cart-block-select > span:before {
  content: "";
  position: absolute;
  top: 41px;
  left: 62px;
  width: 24px;
  height: 24px;
  border: 2px solid #a3a3a3;
  border-radius: 44px;
  transition: border-color 0.3s;
}
.cart-block-select > span:after {
  content: "";
  position: absolute;
  top: 47px;
  left: 68px;
  width: 12px;
  height: 12px;
  background-color: #f84753;
  border-radius: 50%;
  transition: opacity 0.3s;
  opacity: 0;
}
.cart-block-select__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 6px;
  display: block;
}
.cart-block-select__descr {
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  display: block;
  max-width: 352px;
}
.cart-block-select__descr--sm {
  font-size: 16px;
  line-height: 27px;
}
.cart-block-select__info {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding-top: 8px;
  color: #f84753;
  display: block;
}
.cart-delivery__label {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 13px;
}
.cart-delivery__field {
  max-width: 473px;
}
.cart-delivery__field .form-field-wrap.input--filled + .cart-delivery__price {
  display: block;
}
.cart-delivery__price {
  padding-top: 16px;
  display: none;
}
.cart-delivery__price.is-active {
  display: block;
}
.cart-delivery__price-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 2px;
  color: #f84753;
}
.cart-delivery__price-info {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #a3a3a3;
  max-width: 305px;
}
.cart-lifting .cart-block__body {
  padding-top: 0;
}
.cart-lifting.is-active {
  display: block;
}
.cart-build .cart-block__body {
  padding-top: 8px;
}
.cart-data__fields {
  max-width: 662px;
}
.cart-data__fields .form-item {
  margin-bottom: 32px;
}
.cart-footer {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding-top: 16px;
}
.cart-footer .form-accept {
  max-width: 320px;
  margin: 0;
  padding: 0;
  text-align: right;
}
.cart-footer__button {
  padding-left: 28px;
}
.cart-footer__button .btn {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  padding: 13px 27px;
}
.cart-delivery-type__text p {
  margin-bottom: 8px;
}
.cart-delivery-type__text p:last-child {
  margin-bottom: 0;
}
.cart-delivery-type__hidden {
  display: none;
}
.cart-delivery-type__hidden.is-active {
  display: block;
}
.order {
  padding-top: 64px;
  padding-bottom: 103px;
  max-width: 890px;
  margin: 0 auto;
}
.order-success {
  margin: 0 auto;
  background: #FFFFFF;
  margin-bottom: 16px;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 32px;
  padding-bottom: 56px;
  text-align: center;
}
.order-success__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  max-width: 470px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.order-success__descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  max-width: 658px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.order-steps {
  margin: 0 auto;
  background: #FFFFFF;
  margin-bottom: 16px;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 40px 0;
  padding-bottom: 56px;
  text-align: center;
}
.order-steps__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 74px;
}
.order-steps-cols {
  display: -webkit-flex;
  display: flex;
}
.order-steps-col {
  width: 25%;
  position: relative;
  text-align: center;
  padding-top: 40px;
  font-size: 18px;
  line-height: 27px;
  z-index: 0;
}
.order-steps-col:first-child:before {
  display: none;
}
.order-steps-col:last-child:after {
  display: none;
}
.order-steps-col:before, .order-steps-col:after {
  content: "";
  position: absolute;
  height: 4px;
  top: 0;
  background-color: #EEEEF0;
  z-index: -1;
  width: 50%;
}
.order-steps-col:before {
  left: 0;
}
.order-steps-col:after {
  right: 0;
}
.order-steps-col.is-complete .order-steps-col__num {
  background-color: #f84753;
  color: #fff;
}
.order-steps-col.is-complete:before, .order-steps-col.is-complete:after {
  background-color: #f84753;
}
.order-steps-col.is-active .order-steps-col__num {
  background-color: #f84753;
  color: #fff;
}
.order-steps-col.is-active .order-steps-col__num:before {
  display: block;
}
.order-steps-col.is-active .order-steps-col__num span {
  display: none;
}
.order-steps-col.is-active:before {
  background-color: #f84753;
}
.order-steps-col__num {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -32px;
  left: 50%;
  margin-left: -32px;
  background: #EEEEF0;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #a3a3a3;
  line-height: 64px;
  border-radius: 50%;
}
.order-steps-col__num:before {
  content: "";
  position: absolute;
  background: url("../img/order_check.svg") no-repeat 0 0;
  background-size: contain;
  width: 21px;
  height: 15px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}
.order-payment-delivery {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 auto;
}
.order-payment-delivery__block {
  background: #FFFFFF;
  margin-bottom: 16px;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 32px 48px;
  padding-bottom: 48px;
  width: calc(50% - 8px);
}
.order-payment-delivery__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 16px;
}
.order-payment-delivery__info {
  margin-bottom: 16px;
}
.order-payment-delivery__info:last-child {
  margin-bottom: 0;
}
.order-payment-delivery__info p:first-child {
  color: #a3a3a3;
}
.order-payment-delivery__info--oneline {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  position: relative;
}
.order-payment-delivery__info--oneline:before {
  content: "";
  position: absolute;
  opacity: 0.4;
  left: 0;
  width: 100%;
  bottom: 7px;
  border-bottom: 1px dashed #a3a3a3;
}
.order-payment-delivery__info--oneline p {
  position: relative;
}
.order-payment-delivery__info--oneline p span {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.order-payment-delivery__info--oneline p:first-child span {
  padding-right: 5px;
}
.order-payment-delivery__info--oneline p:last-child span {
  padding-left: 5px;
  white-space: nowrap;
}
.order-bottom-buttons {
  font-size: 0;
  line-height: 1;
  margin-right: -8px;
  margin-bottom: -8px;
}
.order-bottom-buttons .btn {
  margin-right: 8px;
  margin-bottom: 8px;
}
.order-items {
  max-width: 890px;
  margin: 0 auto;
  background: #FFFFFF;
  margin-bottom: 16px;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  border-radius: 4px;
}
.order-items .cart-item__info {
  padding-right: 0;
}
.order-items .cart-item__right {
  padding-right: 0;
}
.order-items__body {
  padding: 0 48px;
}
.order-items__title {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  padding: 0 48px;
  padding-top: 24px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1395px) {
  .cart {
    padding-bottom: 120px;
  }
  .cart-main {
    padding: 0 24px;
    padding-right: 16px;
  }
  .cart-item__left {
    width: 116px;
    min-width: 116px;
    padding-right: 16px;
  }
  .cart-item__right {
    padding-right: 33px;
  }
  .cart-item__photo {
    height: 59px;
  }
  .cart-item__price-wrap {
    min-width: 109px;
  }
  .cart-item__delete {
    right: -5px;
  }
  .cart-block__select-blocks {
    display: block;
  }
  .cart-block-select {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
  .cart-block-select input:checked ~ span {
    box-shadow: none;
  }
  .cart-block-select > span {
    padding: 22px;
    padding-left: 70px;
    min-height: 132px;
  }
  .cart-block-select > span:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 30px;
  }
  .cart-block-select > span:after {
    top: 31px;
    left: 36px;
  }
}
@media screen and (max-width: 995px) {
  .cart {
    padding-bottom: 100px;
  }
  .cart__container {
    display: block;
  }
  .cart__right {
    padding-left: 0;
    width: 0;
    min-width: 0;
  }
  .cart-total-fixed {
    position: fixed;
    width: 100%;
    z-index: 100;
    left: 0;
    bottom: 0;
    height: 75px;
    background: #FFFFFF;
    border: 1px solid #EEEEF0;
    box-sizing: border-box;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px -2px 6px rgba(0, 0, 0, 0.04), 0px -16px 24px rgba(0, 0, 0, 0.06);
    border-radius: 4px 4px 0px 0px;
    padding: 16px 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .cart-total-fixed.is-active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .cart-total-fixed .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cart-total {
    box-shadow: none;
    width: 100%;
    border-radius: 0;
    padding: 0;
    border: 0;
    background: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
  }
  .cart-total__price:not(.cart-total__price--mobile) {
    display: none;
  }
  .cart-total__price--mobile {
    display: block;
    margin: 0;
  }
  .cart-total__button {
    min-width: 248px;
  }
  .cart-total__detail-price,
.cart-total__delivery,
.cart-total__payment {
    display: none;
  }
  .cart-countdown,
.cart-min {
    display: none;
  }
  .order {
    padding-top: 40px;
    padding-bottom: 41px;
    max-width: 704px;
    margin-left: auto;
    margin-right: auto;
  }
  .order-steps {
    max-width: 704px;
    margin-left: auto;
    margin-right: auto;
  }
  .order-success__descr {
    max-width: 496px;
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .order-steps-cols {
    -webkit-justify-content: space-between;
            justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
  .order-steps-col {
    width: auto;
  }
  .order-steps-col:before {
    left: auto;
    right: 50%;
    width: 100px;
  }
  .order-steps-col:after {
    right: auto;
    left: 50%;
    width: 100px;
  }
  .order-payment-delivery__block {
    padding: 32px 24px;
  }
  .order-items__title {
    padding: 16px 24px;
  }
  .order-items__body {
    padding: 0 24px;
  }
}
@media screen and (max-width: 755px) {
  .cart {
    padding-bottom: 64px;
  }
  .cart-main {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: none;
    padding: 0 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .cart-main__title {
    font-weight: bold;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 11px;
    padding: 0;
    padding-top: 24px;
  }
  .cart-main__title sup {
    display: inline-block;
    font-weight: 400;
    font-size: 17px;
    line-height: 17px;
    color: #a3a3a3;
  }
  .cart-items {
    background-color: #fff;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .cart-item {
    padding: 24px 0;
  }
  .cart-item:first-child {
    border-top: 0;
  }
  .cart-item .dl-simple {
    margin-bottom: 5px;
  }
  .cart-item .dl-simple dt {
    display: none;
  }
  .cart-item .dl-simple dd span {
    display: none;
  }
  .cart-item .item-preview__sizes dl {
    margin-bottom: 8px;
  }
  .cart-item .item-preview__sizes dl:last-child {
    margin-bottom: 0;
  }
  .cart-item .item-preview__sizes dt,
.cart-item .item-preview__sizes dd {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
  .cart-item__right {
    display: block;
    position: relative;
    padding-right: 15px;
  }
  .cart-item__price-wrap {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding: 0;
  }
  .cart-item__price {
    font-size: 16px;
    line-height: 20px;
    margin-right: 8px;
  }
  .cart-item__price-old {
    font-size: 14px;
    line-height: 17px;
  }
  .cart-item__info {
    padding-top: 26px;
    padding-right: 0;
    max-width: none;
  }
  .cart-item__name {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  .cart-item__quantity {
    padding-top: 10px;
  }
  .cart-total__price {
    display: none;
  }
  .cart-total-fixed {
    height: 77px;
  }
  .cart-total__button {
    width: 100%;
  }
  .cart-total__button .btn {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .cart-total__button .btn span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }
  .cart-divider {
    padding-bottom: 16px;
  }
  .cart-block {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px;
    padding-bottom: 16px;
  }
  .cart-promo {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px;
  }
  .cart-promo__title {
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 16px;
  }
  .cart-promo-field .form-field-wrap {
    width: 100%;
    min-width: 0;
  }
  .cart-block__body {
    padding-top: 16px;
  }
  .cart-block-title__text {
    font-size: 26px;
    line-height: 32px;
  }
  .cart-delivery__label {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 9px;
  }
  .cart-block__info--lg .cart-block__info-text {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .cart-block__descr {
    font-size: 16px;
    line-height: 24px;
  }
  .cart-build .cart-block__body {
    padding-top: 18px;
  }
  .cart-block-select > span {
    padding: 22px;
    padding-left: 54px;
    min-height: 160px;
  }
  .cart-block-select > span:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 22px;
  }
  .cart-block-select > span:after {
    top: 27px;
    left: 28px;
  }
  .cart-block-select__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 8px;
  }
  .cart-block-select__descr {
    font-size: 16px;
    line-height: 24px;
  }
  .cart-block-select__info {
    font-size: 12px;
    line-height: 16px;
    padding-top: 0;
  }
  .cart-data__fields .form-item {
    margin-bottom: 24px;
  }
  .cart-data {
    padding-bottom: 8px;
  }
  .cart-data .cart-block__body {
    padding-bottom: 0;
  }
  .cart-footer {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-justify-content: center;
            justify-content: center;
    padding-top: 16px;
  }
  .cart-footer__button {
    padding-left: 0;
    margin-bottom: 4px;
    width: 100%;
  }
  .cart-footer__button .btn {
    width: 100%;
    min-width: 0;
  }
  .cart-footer .form-accept {
    margin: 0 auto;
    text-align: center;
  }
  .order {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .order-success {
    padding: 24px 16px;
    padding-bottom: 48px;
  }
  .order-success__title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 8px;
  }
  .order-success__descr {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .order-steps {
    padding: 16px;
    padding-bottom: 24px;
  }
  .order-steps__title {
    margin-bottom: -2px;
    font-size: 26px;
    line-height: 32px;
  }
  .order-steps-cols {
    display: block;
  }
  .order-steps-col {
    display: none;
  }
  .order-steps-col.is-active {
    display: block;
  }
  .order-steps-col.is-active .order-steps-col__num {
    background: none;
    color: #000;
  }
  .order-steps-col.is-active .order-steps-col__num span {
    display: block;
    position: relative;
    z-index: 1;
  }
  .order-steps-col.is-active .order-steps-col__num:after {
    content: "";
    width: 178px;
    height: 178px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .order-steps-col.is-active .order-steps-col__num:after {
    display: block;
  }
  .order-steps-col--step1 .order-steps-col__num:after {
    background: url("../img/order_step1.svg");
  }
  .order-steps-col--step2 .order-steps-col__num:after {
    background: url("../img/order_step2.svg");
  }
  .order-steps-col--step3 .order-steps-col__num:after {
    background: url("../img/order_step3.svg");
  }
  .order-steps-col--step4 .order-steps-col__num:after {
    background: url("../img/order_step4.svg");
  }
  .order-steps-col {
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    padding-top: 174px;
  }
  .order-steps-col:before, .order-steps-col:after {
    display: none;
  }
  .order-steps-col__num {
    width: 178px;
    height: 178px;
    top: 0;
    left: 50%;
    margin-left: -89px;
    font-size: 26px;
    line-height: 32px;
    line-height: 178px;
    background: none;
  }
  .order-payment-delivery {
    display: block;
  }
  .order-payment-delivery__block {
    width: auto;
    padding: 32px 16px;
  }
  .order-payment-delivery__title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
  }
  .order-payment-delivery__info p {
    font-size: 16px;
    line-height: 24px;
  }
  .order-payment-delivery__info:not(.order-payment-delivery__info--oneline) p:first-child {
    margin-bottom: 3px;
  }
  .order-items__body {
    padding: 0 0;
  }
  .order-items .cart-items {
    padding: 0;
    margin: 0;
  }
  .order-items .cart-item {
    padding-left: 16px;
    padding-right: 16px;
  }
  .order-items__title {
    font-weight: bold;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    line-height: 20px;
    border-bottom: 1px solid #EEEEF0;
  }
  .order-bottom-buttons {
    padding: 0 16px;
  }
  .order-bottom-buttons .btn {
    display: block;
  }
}
.empty-cart-title {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}
.empty-cart-title h1 {
  max-width: 350px;
}
.empty-cart-title p {
  max-width: 350px;
  padding-bottom: 100px;
}
.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.news-list {
  padding-bottom: 100px;
}
.news-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -16px;
}
.news-grid .news-preview {
  margin-right: 16px;
  margin-bottom: 16px;
  width: calc(25% - 16px);
}
.news-grid .news-preview--lg {
  width: calc(50% - 16px);
}
.news-list__button {
  padding-top: 16px;
  text-align: center;
}
.article-cover {
  height: 411px;
  position: relative;
  background-color: #fff;
}
.article-cover .page-header {
  position: relative;
  z-index: 2;
}
.article-cover:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.article-cover__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.article-cover__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.article-cover__img-wrap {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.article-cover__img {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
.article {
  padding-bottom: 40px;
}
.article-body {
  margin-top: -239px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.article-cols {
  display: -webkit-flex;
  display: flex;
}
.article__left {
  min-width: 888px;
  width: 888px;
}
.article-inner {
  margin-top: -239px;
  background: #FFFFFF;
  z-index: 10;
  position: relative;
  padding: 42px 62px;
  padding-bottom: 71px;
}
.article-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 41px;
}
.article-inner__title {
  margin: 0;
  margin-bottom: 47px;
}
.article-header__date {
  font-size: 18px;
  line-height: 27px;
  /* identical to box height, or 150% */
  /* Серый/ Кнопка */
  color: #a3a3a3;
}
.article-header__back {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  transition: color 0.3s;
  position: relative;
  padding-left: 24px;
}
.article-header__back:before {
  width: 10px;
  height: 18px;
  position: absolute;
  font-size: 18px;
  left: 0;
  top: 50%;
  margin-top: -9px;
}
.article-header__back:hover {
  color: #f84753;
}
.article-inner__links {
  margin-bottom: 56px;
}
.article-inner__links li {
  margin-bottom: 16px;
}
.article-inner__links li a {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  text-transform: uppercase;
  border-bottom: 2px solid #f84753;
  transition: color 0.3s;
}
.article-inner__links li a:hover {
  color: #f84753;
}
.article-inner__links li:last-child {
  margin-bottom: 0;
}
.article-share {
  margin-top: 48px;
  font-size: 0;
  line-height: 1;
}
.article-share p {
  display: inline-block;
  vertical-align: middle;
  margin-right: 31px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
}
.article-share__links {
  display: inline-block;
}
.article-share__links li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
}
.article-share__link {
  position: relative;
  width: 33px;
  height: 33px;
  display: block;
}
.article-share__link:before, .article-share__link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33px;
  height: 33px;
  transition: all 0.3s;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.article-share__link:after {
  opacity: 0;
}
.article-share__link:hover {
  color: #000;
}
.article-share__link:hover:before {
  opacity: 0;
}
.article-share__link:hover:after {
  opacity: 1;
}
.article-share__link--vk:before {
  background-image: url("../img/ico_vk_gray2.svg");
}
.article-share__link--vk:after {
  background-image: url("../img/ico_vk2.svg");
}
.article-share__link--fb:before {
  background-image: url("../img/ico_fb_gray2.svg");
}
.article-share__link--fb:after {
  background-image: url("../img/ico_fb2.svg");
}
.article-share__link--ok:before {
  background-image: url("../img/ico_ok_gray.svg");
}
.article-share__link--ok:after {
  background-image: url("../img/ico_ok.svg");
}
.article-items-slider {
  position: relative;
  margin: 24px 0;
  margin-bottom: 40px;
}
.article-items-slider .item-preview {
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 3px 7px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.article-items-slider .swiper-button-prev {
  margin-left: -24px;
  margin-top: -48px;
}
.article-items-slider .swiper-button-next {
  margin-right: -24px;
  margin-top: -48px;
}
.article-items-slider .swiper-container {
  padding: 7px;
  margin: -7px;
  padding-bottom: 28px;
}
.article-items-slider .swiper-container .swiper-scrollbar {
  bottom: 0;
  left: 7px;
  right: 7px;
  width: auto;
}
.article-items-slider .item-preview__body {
  padding-bottom: 32px;
}
.article-items-slider .item-preview__price {
  margin-right: 7px;
}
.article-items-slider .item-preview__image {
  margin-bottom: 12px;
  height: 255px;
}
.article-items-slider .item-preview__descr {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
}
.article__right {
  padding-left: 64px;
  padding-top: 52px;
  width: 100%;
}
.article__right .news-preview {
  width: 100%;
}
@media screen and (max-width: 1395px) {
  .news-grid .news-preview {
    width: calc(33.33% - 16px);
    min-height: 269px;
  }
  .news-grid .news-preview--gradient:before {
    bottom: 69px;
  }
  .news-grid .news-preview--gradient .news-preview__img {
    width: 204px;
    height: 168px;
  }
  .news-grid .news-preview--gradient2 .news-preview__img {
    bottom: 17px;
    width: 156px;
    height: 117px;
  }
  .news-grid .news-preview--product .news-preview__img {
    height: 50%;
  }
  .news-grid .news-preview--lg {
    width: calc(33.33% - 16px);
  }
  .article-inner__title {
    margin-bottom: 48px;
  }
  .article-cols {
    display: block;
  }
  .article__left {
    width: 100%;
    max-width: 864px;
    min-width: 0;
  }
  .article__right {
    display: none;
  }
  .news-list--more .news-preview:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 995px) {
  .news-grid .news-preview {
    width: calc(50% - 16px);
    min-height: 269px;
  }
  .article {
    padding-bottom: 0;
  }
  .article:last-child {
    padding-bottom: 80px;
  }
  .article-cover__img {
    right: 0px;
  }
  .article-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .news-list--more .news-preview:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 755px) {
  .news-list {
    padding-bottom: 64px;
  }
  .news-grid {
    display: block;
    margin-right: 0;
  }
  .news-grid .news-preview {
    width: 100%;
    margin-right: 0;
    min-height: 269px;
  }
  .news-grid .news-preview .news-preview__name {
    font-size: 20px;
    line-height: 25px;
  }
  .news-grid .news-preview.news-preview--gradient:before {
    width: 274%;
    height: 0;
    padding-bottom: 100%;
  }
  .article-inner__title {
    margin-bottom: 40px;
  }
  .article-cover {
    height: 197px;
  }
  .article-inner {
    margin-top: 0;
    padding-top: 48px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-bottom: 52px;
  }
  .article-header {
    display: block;
    margin-bottom: 10px;
  }
  .article-header__back {
    margin-bottom: 48px;
    display: inline-block;
    font-weight: bold;
  }
  .article-header__date {
    font-size: 12px;
    line-height: 16px;
  }
  .article-inner__links li a {
    font-size: 16px;
    line-height: 24px;
  }
  .article-items-slider {
    position: relative;
    margin: 24px 0;
    margin-bottom: 40px;
  }
  .article-items-slider .item-preview {
    background: #FFFFFF;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 1px 3px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
  }
  .article-items-slider .item-preview__price-from {
    display: none;
  }
  .article-items-slider .swiper-button-prev {
    display: none;
  }
  .article-items-slider .swiper-button-next {
    display: none;
  }
  .article-items-slider .swiper-container {
    padding: 3px;
    margin: -3px;
    padding-bottom: 20px;
  }
  .article-items-slider .item-preview__body {
    padding-bottom: 16px;
  }
  .article-items-slider .item-preview__price {
    margin-right: 7px;
  }
  .article-items-slider .item-preview__image {
    margin-bottom: 8px;
    height: 129px;
  }
  .article-items-slider .item-preview__descr {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
}
.contacts {
  background-color: #fff;
  padding-top: 16px;
  padding-bottom: 40px;
}
.contacts__title {
  margin-bottom: 38px;
}
.contacts-cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -20px;
}
.contacts-col {
  width: 33.33%;
}
.contacts-col__title {
  font-size: 18px;
  line-height: 27px;
  color: #666666;
  margin-bottom: 16px;
}
.contacts-col__text {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
}
.contacts-col__text p {
  margin-bottom: 16px;
}
.contacts-col__text p:last-child {
  margin-bottom: 0;
}
.contacts-col__text a {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  color: #000000;
  transition: color 0.3s;
}
.contacts-col__text a:hover {
  color: #f84753;
}
.contacts-map-container {
  position: relative;
  min-height: 617px;
  background-color: #fff;
  border-top: 1px solid #EEEEF0;
}
.map {
  position: absolute;
  width: calc(50% - 10px);
  left: 0;
  top: 0;
  height: 100%;
}
.contacts-map-container__container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.contacts-map-container__text {
  width: 50%;
  padding-left: 69px;
  padding-top: 51px;
  padding-bottom: 80px;
}
.contacts-map-container__text p {
  margin-bottom: 16px;
}
.contacts-map-container__text address {
  font-style: normal;
}
.contacts-map-container__text .html-content {
  max-width: 491px;
}
.contacts-map-container__address {
  margin-bottom: 40px;
}
@media screen and (max-width: 1395px) {
  .contacts-map-container__text {
    padding-left: 48px;
    padding-bottom: 49px;
  }
}
@media screen and (max-width: 995px) {
  .contacts-map-container__text {
    padding: 40px 0;
    width: 100%;
  }
  .contacts-map-container__text .html-content {
    max-width: 584px;
  }
  .contacts {
    padding-bottom: 24px;
  }
  .contacts-col {
    width: 50%;
    margin-bottom: 40px;
  }
  .map {
    position: relative;
    width: 100%;
    height: 503px;
  }
}
@media screen and (max-width: 755px) {
  .contacts {
    padding-bottom: 0;
  }
  .contacts-cols {
    margin-right: 0;
  }
  .contacts-col {
    width: 100%;
    padding-right: 0;
  }
  .map {
    height: 338px;
  }
  .contacts-col__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 8px;
  }
  .contacts-col__text {
    font-size: 20px;
    line-height: 25px;
  }
  .contacts-col__text a {
    font-size: 20px;
    line-height: 25px;
  }
}
.manufacturers {
  background-color: #fff;
  padding-bottom: 33px;
  padding-bottom: 107px;
  border-bottom: 1px solid #EEEEF0;
}
.manufacturers__header {
  padding-top: 32px;
  padding-bottom: 32px;
}
.manufacturers__title {
  margin: 0;
}
.manufacturers-group {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 20px;
  border-top: 1px solid #EEEEF0;
  padding-top: 31px;
}
.manufacturers-group__left {
  width: 228px;
  min-width: 228px;
}
.manufacturers-group__right {
  width: 100%;
  padding-top: 17px;
}
.manufacturers-group__cols {
  display: -webkit-flex;
  display: flex;
  margin-right: -20px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.manufacturers-group__col {
  width: 25%;
  padding-right: 20px;
}
.manufacturers-group__letters {
  font-weight: 500;
  font-size: 80px;
  line-height: 97px;
  color: #f84753;
}
.manufacturers-group__list {
  font-size: 18px;
  line-height: 22px;
}
.manufacturers-group__list li {
  margin-bottom: 22px;
}
.manufacturers-group__list li a {
  transition: color 0.3s;
}
.manufacturers-group__list li a:hover {
  color: #f84753;
}
.manufacturer {
  background-color: #fff;
  padding-top: 32px;
  padding-bottom: 64px;
}
.manufacturer-cols {
  display: -webkit-flex;
  display: flex;
  margin-right: -20px;
}
.manufacturer-cols__left {
  width: 33.33%;
  padding-right: 20px;
}
.manufacturer-cols__right {
  width: 66.66%;
}
.manufacturer__logo img {
  max-width: 100%;
  height: auto;
}
.manufacturer__title {
  margin-bottom: 32px;
}
.manufacturer__text-container {
  max-width: 777px;
  position: relative;
}
.manufacturer__text-container.is-hidden .manufacturer__show-more {
  display: inline-block;
}
.manufacturer__text-container.is-hidden .manufacturer__text-hidden:before {
  display: block;
}
.manufacturer__text-container.is-open .manufacturer__show-more {
  display: none;
}
.manufacturer__text-container.is-open .manufacturer__text-hidden:before {
  display: none;
}
.manufacturer__text-hidden {
  overflow: hidden;
  height: auto;
  position: relative;
  transition: height 0.3s;
}
.manufacturer__text-hidden:before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, #ffffff 73.44%);
  display: none;
}
.manufacturer__show-more {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #666666;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: color 0.3s;
  cursor: pointer;
  display: none;
  text-align: left;
  width: 100%;
}
.manufacturer__show-more:hover {
  color: #000;
}
@media screen and (max-width: 1395px) {
  .manufacturers-group__left {
    width: 240px;
    min-width: 240px;
  }
  .manufacturers-group__right {
    width: 100%;
    padding-top: 0;
  }
  .manufacturers-group__col {
    width: 33.33%;
  }
  .manufacturer__text-hidden {
    height: 293px;
  }
}
@media screen and (max-width: 995px) {
  .manufacturers {
    padding-bottom: 58px;
  }
  .manufacturers-group__right {
    width: 100%;
    padding-top: 0;
  }
  .manufacturers-group__col {
    width: 50%;
  }
  .manufacturer {
    padding-top: 40px;
    padding-bottom: 51px;
  }
}
@media screen and (max-width: 755px) {
  .manufacturers {
    padding-bottom: 36px;
    padding-bottom: 40px;
  }
  .manufacturers__header {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .manufacturers__title {
    margin-bottom: 16px;
  }
  .manufacturers-group {
    display: block;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEF0;
    margin-bottom: 10px;
  }
  .manufacturers-group:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .manufacturers-group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .manufacturers-group__letters {
    font-weight: 500;
    font-size: 54px;
    line-height: 66px;
    margin-bottom: 16px;
  }
  .manufacturers-group__left {
    width: 100%;
    min-width: 0;
  }
  .manufacturers-group__right {
    width: 100%;
    padding-top: 0;
  }
  .manufacturers-group__cols {
    margin-right: 0;
  }
  .manufacturers-group__col {
    width: 100%;
    padding-right: 0;
  }
  .manufacturer {
    padding-top: 24px;
    padding-bottom: 64px;
  }
  .manufacturer-cols {
    display: block;
    margin-right: 0;
  }
  .manufacturer-cols__left {
    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
    padding-right: 0;
  }
  .manufacturer-cols__right {
    width: 100%;
    padding-right: 0;
  }
  .manufacturer__logo {
    max-width: 171px;
  }
  .manufacturer__logo img {
    max-width: 100%;
    height: auto;
  }
  .manufacturer__title {
    margin-bottom: 8px;
  }
}
.site-map {
  padding-bottom: 100px;
}
.site-map__inner {
  padding: 32px 112px;
  padding-bottom: 80px;
  background: #FFFFFF;
  border-radius: 4px;
}
.site-map__title {
  margin-bottom: 22px;
}
.site-map__list li {
  font-weight: bold;
  font-size: 18px;
  line-height: 37px;
}
.site-map__list li a {
  transition: color 0.3s;
}
.site-map__list li a:hover {
  color: #f84753;
}
.site-map__list li ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.site-map__list li ul li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
@media screen and (max-width: 1395px) {
  .site-map {
    padding-bottom: 80px;
  }
  .site-map__inner {
    padding: 32px 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 995px) {
  .site-map__inner {
    padding: 32px 56px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 755px) {
  .site-map {
    padding-bottom: 0px;
  }
  .site-map__inner {
    padding: 24px 16px;
    padding-bottom: 64px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .site-map__list {
    font-size: 20px;
    line-height: 180.9%;
  }
  .site-map__list > li {
    margin-bottom: 4px;
  }
  .site-map__list > li ul {
    margin-bottom: 32px;
  }
  .site-map__list > li li {
    font-size: 16px;
    line-height: 30px;
  }
}
.mobile-search-wrapper {
  position: relative;
}
.mobile-search-popup {
  position: fixed;
  background-color: #fff;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.mobile-search-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-search-popup__scroll {
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-search-popup__query {
  padding: 16px;
  margin-left: -16px;
  margin-right: -16px;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  border-top: 1px solid #EEEEF0;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
}
.mobile-search-popup__query:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -4px;
}
.mobile-search-popup__query span {
  font-weight: bold;
}
.search-results-title {
  font-size: 18px;
  line-height: 27px;
  padding-top: 24px;
  padding-bottom: 40px;
}
.search-empty {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 70px;
}
.search-empty__title {
  text-align: center;
  margin-bottom: 16px;
}
.mobile-search-queries-slider {
  overflow: visible;
  margin-bottom: 18px;
  margin-right: -4px;
}
.mobile-search-queries-slider .swiper-slide {
  width: auto;
  padding-right: 4px;
}
.mobile-search-queries-slider__query {
  display: inline-block;
  padding: 6px 10px;
  background: #F5F5F5;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mobile-search-popup__container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.mobile-search-popup__cancel {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
  color: #666666;
}
.mobile-search-popup__default {
  padding-top: 16px;
}
.mobile-search-popup__history-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 16px;
}
.mobile-search-popup__history-clear {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mobile-search-popup__history-clear .mobile-search-popup__title {
  margin: 0;
}
.mobile-search-popup__title {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 9px;
}
.mobile-search-popup__title + .mobile-search-popup__queries .mobile-search-popup__query:first-child {
  border-top: 0;
}
.mobile-search-popup__delete-history-item {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  z-index: 100;
}
.mobile-search-popup__delete-history-item:before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #a3a3a3;
  position: absolute;
  left: 5px;
  top: 4px;
  border-radius: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: all 0.3s;
}
.mobile-search-popup__delete-history-item:after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #a3a3a3;
  position: absolute;
  right: 7px;
  top: 4px;
  border-radius: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  transition: all 0.3s;
}
.mobile-search-popup__delete-history-item:hover:before, .mobile-search-popup__delete-history-item:hover:after {
  background-color: #000;
}
.mobile-search-popup__history-items {
  padding-bottom: 16px;
}
.mobile-search-popup__history-item {
  position: relative;
  margin-bottom: 16px;
}
.mobile-search-popup__history-item-name {
  font-size: 16px;
  line-height: 24px;
}
.mobile-search-popup__results {
  display: none;
}
@media screen and (max-width: 1395px) {
  .search-empty {
    text-align: center;
    padding-top: 56px;
    padding-bottom: 36px;
  }
}
@media screen and (max-width: 995px) {
  .search-empty {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 755px) {
  .search-results-title {
    font-size: 12px;
    line-height: 16px;
    padding-top: 8px;
    padding-bottom: 32px;
  }
  .search-empty {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 0;
  }
}
.catalog-items.search-page .catalog-item .item-preview__image img {
  height: 450px;
}
.page-text {
  margin: 32px 0;
}
.page-text .html-content {
  max-width: 777px;
}
.page-text:last-child {
  margin-bottom: 80px;
}
.delivery-info {
  margin-bottom: 40px;
}
.delivery-info__block {
  display: none;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.delivery-info__block.is-active {
  display: block;
}
.delivery-info__block.is-animated {
  opacity: 1;
  visibility: visible;
}
.delivery-info__inner {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 32px 40px;
}
.delivery-info__title {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 14px;
}
.delivery-info__header {
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEF0;
}
.delivery-info__tabs {
  margin-right: -16px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.delivery-info__tab {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding: 13px 17px;
  margin-right: 16px;
  margin-bottom: 16px;
  background: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  border: 0;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Gilroy", "Helvetica Neue", "Arial", -apple-system, BlinkMacSystemFont, sans-serif;
}
.delivery-info__tab:hover {
  background-color: #eeeef0;
}
.delivery-info__tab.is-active {
  background-color: #f84753;
  color: #fff;
}
.delivery-info__empty {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #f84753;
  margin: 40px 0;
}
.delivery-info__block {
  padding: 0 13px;
  padding-top: 40px;
}
.delivery-info__block.is-active ~ .delivery-info__empty {
  display: none;
}
.delivery-info__cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -15px;
}
.delivery-info__col {
  width: 33.33%;
  margin-bottom: 40px;
  padding-right: 15px;
}
.delivery-info__col p {
  max-width: 327px;
  margin-bottom: 24px;
}
.delivery-info__col-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
}
.error-page {
  text-align: center;
  padding: 173px 0;
}
.error-page__err {
  font-size: 190px;
  line-height: 228px;
}
.error-page__title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: bold;
}
.error-page__descr {
  font-size: 18px;
  line-height: 27px;
  max-width: 255px;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 1395px) {
  .delivery-info__col {
    width: 50%;
  }
  .delivery-info__inner {
    padding: 32px 32px;
  }
}
@media screen and (max-width: 995px) {
  .delivery-info__inner {
    padding: 32px 32px;
    margin-left: -32px;
    margin-right: -32px;
  }
  .delivery-info__block {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 755px) {
  .delivery-info__inner {
    padding: 16px 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .delivery-info__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .delivery-info__header {
    padding-bottom: 16px;
  }
  .delivery-info__tabs {
    margin-right: -8px;
  }
  .delivery-info__tab {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .delivery-info__block {
    padding-left: 0;
    padding-right: 0;
    padding-top: 24px;
  }
  .delivery-info__cols {
    display: block;
    margin-right: 0;
  }
  .delivery-info__col {
    width: 100%;
    padding-right: 0;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .delivery-info__col p {
    margin-bottom: 16px;
    max-width: none;
  }
  .delivery-info__col-title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 8px;
  }
  .error-page {
    text-align: center;
    padding: 60px 0;
  }
  .error-page__err {
    font-size: 140px;
    line-height: 180px;
  }
}
.text-page {
  padding-bottom: 80px;
}
.text-page__text {
  background-color: #fff;
  padding: 32px 80px;
  padding-bottom: 80px;
}
.text-page__text .html-content {
  max-width: 777px;
}
@media screen and (max-width: 995px) {
  .text-page__text {
    padding: 32px 40px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 755px) {
  .text-page {
    padding-bottom: 0;
  }
  .text-page__text {
    padding: 16px;
    padding-bottom: 32px;
    margin-left: -16px;
    margin-right: -16px;
  }
}
.terms {
  background-color: #fff;
  padding-top: 32px;
  padding-bottom: 80px;
}
.terms .html-content {
  max-width: 777px;
}
.terms__title {
  margin-bottom: 16px;
}
.terms__descr {
  max-width: 664px;
  margin-bottom: 112px;
}
.terms-steps {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #EEEEF0;
  padding-bottom: 64px;
  margin-bottom: 41px;
}
.terms-step {
  position: relative;
  padding-left: 24px;
  padding-right: 20px;
  padding-top: 183px;
  width: 25%;
}
.terms-step:before {
  content: "";
  position: absolute;
  width: 280px;
  height: 185px;
  top: 0;
}
.terms-step--step1:before {
  left: -24px;
  background-image: url("../img/how_to_img1.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .terms-step--step1:before {
    background-image: url("../img/how_to_img1@2x.png");
    background-repeat: no-repeat;
  }
}
.terms-step--step2:before {
  width: 166px;
  height: 151px;
  left: 90px;
  top: 0;
  background: url("../img/how_to_img2.svg") no-repeat 0 0;
  background-size: contain;
}
.terms-step--step3:before {
  left: 24px;
  background-image: url("../img/how_to_img3.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .terms-step--step3:before {
    background-image: url("../img/how_to_img3@2x.png");
    background-repeat: no-repeat;
  }
}
.terms-step--step4:before {
  width: 195px;
  height: 195px;
  left: 30px;
  top: 0;
  background: url("../img/how_to_img4.svg") no-repeat 0 0;
  background-size: contain;
}
.terms-step__descr {
  max-width: 280px;
}
.terms-step__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 17px;
  position: relative;
}
.terms-step__num {
  color: #f84753;
  position: absolute;
  top: 0;
  left: -24px;
}
@media screen and (max-width: 1395px) {
  .terms__descr {
    margin-bottom: 64px;
  }
  .terms-steps {
    padding-bottom: 0;
    margin-right: -20px;
  }
  .terms-step {
    width: 50%;
    margin-bottom: 65px;
    padding-right: 20px;
  }
  .terms-step__descr {
    max-width: none;
  }
}
@media screen and (max-width: 755px) {
  .terms {
    padding-top: 16px;
    padding-bottom: 64px;
  }
  .terms__descr {
    margin-bottom: 64px;
  }
  .terms-steps {
    padding-bottom: 14px;
    margin-bottom: 30px;
    margin-right: 0;
  }
  .terms-step {
    width: 100%;
    margin-bottom: 56px;
    padding-right: 0px;
  }
  .terms-step__descr {
    max-width: none;
  }
}
/*# sourceMappingURL=bundle.css.map*/