

/* Start:/local/dist/styles/styles.build.css?1759752789529717*/
@charset "UTF-8";
/*
	variable naming rules (based on Emmet shorthands):
	color-* -- color value
	fz-* -- font-size value
	fw-* -- font-weight value
	ff-* -- font-family value
	fs-* -- font-style value
	*-color -- color of specific element
	*-bg -- background of specific element
	trs-* -- transition value
	...
*/
/* --- sizes --- */
/* --- colors --- */
/* --- etc --- */
/* Box shadow default */
/* --- text --- */
/* text md */
/* text sm */
/* --- transitions --- */
/* ---- mixins --- */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/local/fonts/open-sans-v17-cyrillic_latin-regular.woff2") format("woff2"), url("/local/fonts/open-sans-v17-cyrillic_latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("/local/fonts/open-sans-v17-latin_cyrillic-italic.woff2") format("woff2"), url("/local/fonts/open-sans-v17-latin_cyrillic-italic.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("/local/fonts/open-sans-v17-cyrillic_latin-600.woff2") format("woff2"), url("/local/fonts/open-sans-v17-cyrillic_latin-600.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/local/fonts/open-sans-v17-cyrillic_latin-700.woff2") format("woff2"), url("/local/fonts/open-sans-v17-cyrillic_latin-700.woff") format("woff");
}
/* ---- basic --- */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

body.ios, body.ios * {
  cursor: pointer;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
input[type=date],
input[type=search],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

input,
button,
select,
textarea {
  margin: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

::-webkit-details-marker {
  display: none;
  opacity: 0;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}

input::-ms-clear {
  display: none;
}

button::-moz-focus-inner {
  border: none;
}

img {
  border: none;
  font-size: 14px;
  line-height: 22px;
}

iframe, .no-border {
  border: none;
}

.touch * {
  outline: none;
}

html, body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

body {
  color: #2A2A2A;
  background: #ffffff;
  font: 400 16px/24px "Open Sans", Roboto, Helvetica, sans-serif;
  -webkit-overflow-scrolling: touch;
  /* for sticky footer */
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.page-main {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  position: relative;
  /* for sticky footer */
  -webkit-flex: auto;
          flex: auto;
}

.page-loaded .page-main {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

main {
  display: block;
}

[v-cloak] {
  display: none;
}

/* --- selection --- */
::-moz-selection {
  background: #407BB4;
  color: #ffffff;
}
::selection {
  background: #407BB4;
  color: #ffffff;
}

/* --- colors --- */
.c-black {
  color: #2A2A2A;
}

.c-gray-darkest {
  color: #7F7F7F;
}

.c-gray-darker {
  color: #7F7F7F;
}

.c-gray-dark {
  color: #959696;
}

.c-gray-light {
  color: #EDEDED;
}

.c-gray-lighter {
  color: #F6F6F6;
}

.c-primary {
  color: #eb2127;
}

.c-primary-alt {
  color: #F4A603;
}

.c-success {
  color: #39B74D;
}

.c-warning {
  color: #FF380D;
}

.c-error {
  color: #FF380D;
}

/* --- blocks --- */
.container {
  max-width: 1548px;
  padding: 0 24px;
  margin: 0 auto;
}

@media (max-width: 999px) {
  .container {
    padding: 0 15px;
  }
}
.container--free {
  max-width: none;
}

.page-main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

/* --- overlay --- */
.overlay {
  position: absolute;
  top: 134px;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  background: #2A2A2A;
  opacity: 0;
  z-index: -1;
  transition: visibility 0.25s, z-index 0.25s, opacity 0.25s;
}

body:not(.page-loaded) .overlay {
  display: none;
}

.overlay.open,
.state--modal-loading .overlay,
.state--main-menu-open .overlay,
.state--hamburger-menu-open .overlay {
  opacity: 0.5;
  visibility: visible;
  z-index: 100;
}

body.state--main-menu-open,
body.state--overflow-hidden,
body.state--hamburger-menu-open {
  overflow: hidden;
}

/* --- accordion behavior --- */
.accordion-behavior__body {
  display: none;
}

.accordion-behavior.open .accordion-behavior__body {
  display: block;
}

.accordion-behavior.open-enter .accordion-behavior__body {
  opacity: 0;
}

.accordion-behavior.open-leave .accordion-behavior__body {
  opacity: 1;
}

.accordion-behavior.open-leave-active .accordion-behavior__body {
  opacity: 0;
  transition: opacity 0.2s;
}

.accordion-behavior.open-enter-active .accordion-behavior__body {
  opacity: 1;
  transition: opacity 0.2s;
}

/* --- toggle behavior --- */
.toggle-open-behavior.open .toggle-open-behavior__show-closed,
.toggle-open-behavior:not(.open) .toggle-open-behavior__show-open {
  display: none;
}

/* --- tab behavior --- */
.tab-behavior:not(.open) {
  display: none;
}

/* --- logo --- */
.logo {
  display: inline-block;
  vertical-align: middle;
  color: #eb2127;
  border: none;
  line-height: 0;
  position: relative;
  cursor: pointer;
  transition: 0.25s;
}

.logo__icon {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  height: 33px;
}

.logo__icon-tip {
  display: block;
  width: 100px;
  height: 11px;
  margin-top: 4px;
  margin-bottom: -13px;
}

.logo--ext .logo__icon {
  width: 130px;
  height: 45px;
}

.logo--no-link {
  cursor: default;
}

.no-touch .logo:not(.logo--no-link):hover {
  border: none;
}

/* --- loader --- */
.loader-cover {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #ffffff;
}

.loader-cover--button-inner {
  background: #eb2127;
}

.loader-cover--black {
  background: rgba(42, 42, 42, 0.7);
}

.loader-cover--gray {
  background: rgba(244, 244, 244, 0.7);
}

.loader-cover__spinner {
  width: 30px;
  height: 30px;
}

.loader-cover__icon.loader-cover__icon {
  display: block;
  width: 30px;
  height: 30px;
}

.loader-cover--button-inner-small .loader-cover__spinner {
  width: 18px;
  height: 18px;
}

.loader-cover--button-inner-small .loader-cover__icon {
  width: 18px;
  height: 18px;
}

/* --- bitrix editor --- */
.htmlblockedit {
  display: inline-block;
  opacity: 0.7;
  width: auto;
  border: 2px solid #FF380D;
  color: #2A2A2A;
  padding: 5px;
  background: #EDEDED;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  position: absolute;
  z-index: 100;
  font-weight: 700;
}

.no-touch .htmlblockedit:hover {
  background: #ffffff;
  color: #2A2A2A;
}

/* --- transitions --- */
.content-fade-enter-active,
.content-fade-leave-active {
  transition: opacity 0.2s;
}

.content-fade-enter,
.content-fade-leave-to {
  opacity: 0;
}

.flip-list-move {
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

/* --- icons --- */
svg:not(:root) {
  overflow: hidden;
}

#svg-sprite,
.svg-sprite {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  display: block;
}

.svg-icon {
  display: inline-block;
  vertical-align: middle;
}

.svg-icon--location {
  width: 17px;
  height: 22px;
}

.svg-icon--small-car {
  width: 30px;
  height: 17px;
}

.svg-icon--old-phone {
  width: 16px;
  height: 16px;
}

.svg-icon--telegram {
  width: 16px;
  height: 16px;
}

.svg-icon--viber {
  width: 16px;
  height: 16px;
}

.svg-icon--16x16 {
  width: 16px;
  height: 16px;
}

.svg-icon--link {
  width: 16px;
  height: 26px;
}

.svg-icon--mts {
  width: 10px;
  height: 14px;
}

.svg-icon--16x16 {
  width: 16px;
  height: 17px;
}

.svg-icon--compare {
  width: 22px;
  height: 22px;
}

.mob-header .svg-icon--compare {
  width: 40px;
  height: 32px;
}

.svg-icon--compare-big {
  width: 28px;
  height: 28px;
}

.svg-icon--favorites {
  width: 23.5px;
  height: 22px;
}

.mob-header .svg-icon--favorites {
  width: 40px;
  height: 32px;
}

.svg-icon--basket {
  width: 24px;
  height: 24px;
}

.svg-icon--arrow-back {
  width: 18px;
  height: 13px;
}

.svg-icon--city-arrow-mob {
  width: 16px;
  height: 16px;
}

.svg-icon--location-mob {
  width: 14.25px;
  height: 18px;
}

.svg-icon--eye {
  width: 25px;
  height: 17px;
}

.svg-icon--heart {
  width: 24px;
  height: 20px;
}

.svg-icon--shopping-cart {
  width: 25px;
  height: 23px;
}

.mob-header .svg-icon--shopping-cart {
  width: 32px;
  height: 32px;
}

.svg-icon--search-mob {
  width: 22px;
  height: 22px;
}

.mob-header .svg-icon--search-mob {
  width: 24px;
  height: 24px;
}

.svg-icon--message {
  width: 36px;
  height: 26px;
}

.svg-icon--10 {
  width: 10px;
  height: 10px;
}

.svg-icon--16 {
  width: 16px;
  height: 16px;
}

.svg-icon--20 {
  width: 20px;
  height: 20px;
}

.svg-icon--24 {
  width: 24px;
  height: 24px;
}

.svg-icon--30 {
  width: 30px;
  height: 30px;
}

.svg-icon--34 {
  width: 34px;
  height: 34px;
}

.svg-icon--40 {
  width: 40px;
  height: 40px;
}

.svg-icon--80 {
  width: 80px;
  height: 80px;
}

html.jivo-site-full-block {
  position: relative !important;
}

@media (min-width: 1000px) {
  .scrollbar-margin-set {
    margin-right: 0 !important;
  }
}
@media (max-width: 999px) {
  .overlay {
    top: 64px;
  }

  .page-main {
    padding-top: 64px;
  }

  body:has(.catalog) .page-main {
    padding-top: 64px;
    width: 100vw;
    overflow-x: clip;
  }

  body:has(.favorites) .page-main {
    padding-top: 64px;
    width: 100vw;
    overflow-x: clip;
  }
}
@media (min-width: 480px) {
  .show-screen-3xs {
    display: none;
  }
}
:root {
  --fancybox-bg: #fff;
  --carousel-button-color: rgba(0, 0, 0, .5);
  --fancybox-color: rgba(0, 0, 0, .5);
}

.fancybox__nav {
  --carousel-button-bg: rgba(0, 0, 0, .5);
  --carousel-button-color: #fff;
  --carousel-button-border-radius: 5px;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -webkit-flex;
  display: flex;
}

.carousel__slide {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4)) ;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px ;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-flex;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px ;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-flex: 0 0 0;
          flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -webkit-align-self: center;
          align-self: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  -webkit-align-self: center;
          align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
          animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
          animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
          animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
          animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
          animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -webkit-flex-shrink: 1;
          flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 0;
  touch-action: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: -webkit-flex;
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-moz-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-moz-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-moz-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

/* --- grid --- */
.grid {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  vertical-align: top;
  margin: -12px;
  width: calc(100% + 24px);
}

.row {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  vertical-align: top;
  margin: 0 -12px;
  width: calc(100% + 24px);
}

.cell {
  padding: 12px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
}

.col {
  padding: 0 12px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
}

.col-xl-1 {
  width: 8.333%;
}

.col-xl-2 {
  width: 16.666%;
}

.col-xl-5-of-12 {
  width: 20%;
}

.col-xl-3 {
  width: 25%;
}

.col-xl-4 {
  width: 33.33%;
}

.col-xl-5 {
  width: 41.666%;
}

.col-xl-6 {
  width: 50%;
}

.col-xl-7 {
  width: 58.333%;
}

.col-xl-8 {
  width: 66.666%;
}

.col-xl-9 {
  width: 75%;
}

.col-xl-10 {
  width: 83.333%;
}

.col-xl-11 {
  width: 91.666%;
}

.col-xl-12 {
  width: 100%;
}

.order-xl-12 {
  -webkit-order: -12;
          order: -12;
}

.order-xl-11 {
  -webkit-order: -11;
          order: -11;
}

.order-xl-10 {
  -webkit-order: -10;
          order: -10;
}

.order-xl-9 {
  -webkit-order: -9;
          order: -9;
}

.order-xl-8 {
  -webkit-order: -8;
          order: -8;
}

.order-xl-7 {
  -webkit-order: -7;
          order: -7;
}

.order-xl-6 {
  -webkit-order: -6;
          order: -6;
}

.order-xl-5 {
  -webkit-order: -5;
          order: -5;
}

.order-xl-4 {
  -webkit-order: -4;
          order: -4;
}

.order-xl-3 {
  -webkit-order: -3;
          order: -3;
}

.order-xl-2 {
  -webkit-order: -2;
          order: -2;
}

.order-xl-1 {
  -webkit-order: -1;
          order: -1;
}

.order-xl0 {
  -webkit-order: 0;
          order: 0;
}

.order-xl1 {
  -webkit-order: 1;
          order: 1;
}

.order-xl2 {
  -webkit-order: 2;
          order: 2;
}

.order-xl3 {
  -webkit-order: 3;
          order: 3;
}

.order-xl4 {
  -webkit-order: 4;
          order: 4;
}

.order-xl5 {
  -webkit-order: 5;
          order: 5;
}

.order-xl6 {
  -webkit-order: 6;
          order: 6;
}

.order-xl7 {
  -webkit-order: 7;
          order: 7;
}

.order-xl8 {
  -webkit-order: 8;
          order: 8;
}

.order-xl9 {
  -webkit-order: 9;
          order: 9;
}

.order-xl10 {
  -webkit-order: 10;
          order: 10;
}

.order-xl11 {
  -webkit-order: 11;
          order: 11;
}

@media (max-width: 1367px) {
  .col-lg-1 {
    width: 8.333%;
  }

  .col-lg-2 {
    width: 16.666%;
  }

  .col-lg-5-of-12 {
    width: 20%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33%;
  }

  .col-lg-5 {
    width: 41.666%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333%;
  }

  .col-lg-8 {
    width: 66.666%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.333%;
  }

  .col-lg-11 {
    width: 91.666%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .order-lg-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-lg-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-lg-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-lg-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-lg-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-lg-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-lg-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-lg-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-lg-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-lg-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-lg-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-lg-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-lg0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-lg1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-lg2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-lg3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-lg4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-lg5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-lg6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-lg7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-lg8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-lg9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-lg10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-lg11 {
    -webkit-order: 11;
            order: 11;
  }
}
@media (max-width: 1239px) {
  /* --- grid --- */
  .col-md-1 {
    width: 8.333%;
  }

  .col-md-2 {
    width: 16.666%;
  }

  .col-md-5-of-12 {
    width: 20%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33%;
  }

  .col-md-5 {
    width: 41.666%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.333%;
  }

  .col-md-8 {
    width: 66.666%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.333%;
  }

  .col-md-11 {
    width: 91.666%;
  }

  .col-md-12 {
    width: 100%;
  }

  .order-md-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-md-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-md-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-md-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-md-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-md-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-md-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-md-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-md-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-md-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-md-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-md-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-md0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-md1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-md2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-md3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-md4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-md5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-md6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-md7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-md8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-md9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-md10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-md11 {
    -webkit-order: 11;
            order: 11;
  }
}
@media (max-width: 999px) {
  /* --- grid --- */
  .col-sm-1 {
    width: 8.333%;
  }

  .col-sm-2 {
    width: 16.666%;
  }

  .col-sm-5-of-12 {
    width: 20%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33%;
  }

  .col-sm-5 {
    width: 41.666%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.333%;
  }

  .col-sm-8 {
    width: 66.666%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.333%;
  }

  .col-sm-11 {
    width: 91.666%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .order-sm-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-sm-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-sm-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-sm-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-sm-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-sm-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-sm-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-sm-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-sm-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-sm-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-sm-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-sm-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-sm0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-sm1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-sm2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-sm3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-sm4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-sm5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-sm6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-sm7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-sm8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-sm9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-sm10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-sm11 {
    -webkit-order: 11;
            order: 11;
  }
}
@media (max-width: 759px) {
  /* --- grid --- */
  .col-xs-1 {
    width: 8.333%;
  }

  .col-xs-2 {
    width: 16.666%;
  }

  .col-xs-5-of-12 {
    width: 20%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-4 {
    width: 33.33%;
  }

  .col-xs-5 {
    width: 41.666%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-7 {
    width: 58.333%;
  }

  .col-xs-8 {
    width: 66.666%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-10 {
    width: 83.333%;
  }

  .col-xs-11 {
    width: 91.666%;
  }

  .col-xs-12 {
    width: 100%;
  }

  .order-xs-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-xs-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-xs-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-xs-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-xs-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-xs-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-xs-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-xs-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-xs-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-xs-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-xs-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-xs-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-xs0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-xs1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-xs2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-xs3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-xs4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-xs5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-xs6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-xs7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-xs8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-xs9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-xs10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-xs11 {
    -webkit-order: 11;
            order: 11;
  }
}
@media (max-width: 639px) {
  /* --- grid --- */
  .col-2xs-1 {
    width: 8.333%;
  }

  .col-2xs-2 {
    width: 16.666%;
  }

  .col-2xs-5-of-12 {
    width: 20%;
  }

  .col-2xs-3 {
    width: 25%;
  }

  .col-2xs-4 {
    width: 33.33%;
  }

  .col-2xs-5 {
    width: 41.666%;
  }

  .col-2xs-6 {
    width: 50%;
  }

  .col-2xs-7 {
    width: 58.333%;
  }

  .col-2xs-8 {
    width: 66.666%;
  }

  .col-2xs-9 {
    width: 75%;
  }

  .col-2xs-10 {
    width: 83.333%;
  }

  .col-2xs-11 {
    width: 91.666%;
  }

  .col-2xs-12 {
    width: 100%;
  }

  .order-2xs-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-2xs-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-2xs-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-2xs-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-2xs-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-2xs-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-2xs-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-2xs-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-2xs-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-2xs-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-2xs-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-2xs-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-2xs0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-2xs1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-2xs2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-2xs3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-2xs4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-2xs5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-2xs6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-2xs7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-2xs8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-2xs9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-2xs10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-2xs11 {
    -webkit-order: 11;
            order: 11;
  }
}
@media (max-width: 479px) {
  /* --- grid --- */
  .col-3xs-1 {
    width: 8.333%;
  }

  .col-3xs-2 {
    width: 16.666%;
  }

  .col-3xs-5-of-12 {
    width: 20%;
  }

  .col-3xs-3 {
    width: 25%;
  }

  .col-3xs-4 {
    width: 33.33%;
  }

  .col-3xs-5 {
    width: 41.666%;
  }

  .col-3xs-6 {
    width: 50%;
  }

  .col-3xs-7 {
    width: 58.333%;
  }

  .col-3xs-8 {
    width: 66.666%;
  }

  .col-3xs-9 {
    width: 75%;
  }

  .col-3xs-10 {
    width: 83.333%;
  }

  .col-3xs-11 {
    width: 91.666%;
  }

  .col-3xs-12 {
    width: 100%;
  }

  .order-3xs-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-3xs-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-3xs-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-3xs-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-3xs-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-3xs-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-3xs-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-3xs-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-3xs-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-3xs-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-3xs-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-3xs-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-3xs0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-3xs1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-3xs2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-3xs3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-3xs4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-3xs5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-3xs6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-3xs7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-3xs8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-3xs9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-3xs10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-3xs11 {
    -webkit-order: 11;
            order: 11;
  }
}
@media (max-width: 374px) {
  /* --- grid --- */
  .col-3xs-1 {
    width: 8.333%;
  }

  .col-3xs-2 {
    width: 16.666%;
  }

  .col-3xs-5-of-12 {
    width: 20%;
  }

  .col-3xs-3 {
    width: 25%;
  }

  .col-3xs-4 {
    width: 33.33%;
  }

  .col-3xs-5 {
    width: 41.666%;
  }

  .col-3xs-6 {
    width: 50%;
  }

  .col-3xs-7 {
    width: 58.333%;
  }

  .col-3xs-8 {
    width: 66.666%;
  }

  .col-3xs-9 {
    width: 75%;
  }

  .col-3xs-10 {
    width: 83.333%;
  }

  .col-3xs-11 {
    width: 91.666%;
  }

  .col-3xs-12 {
    width: 100%;
  }

  .order-3xs-12 {
    -webkit-order: -12;
            order: -12;
  }

  .order-3xs-11 {
    -webkit-order: -11;
            order: -11;
  }

  .order-3xs-10 {
    -webkit-order: -10;
            order: -10;
  }

  .order-3xs-9 {
    -webkit-order: -9;
            order: -9;
  }

  .order-3xs-8 {
    -webkit-order: -8;
            order: -8;
  }

  .order-3xs-7 {
    -webkit-order: -7;
            order: -7;
  }

  .order-3xs-6 {
    -webkit-order: -6;
            order: -6;
  }

  .order-3xs-5 {
    -webkit-order: -5;
            order: -5;
  }

  .order-3xs-4 {
    -webkit-order: -4;
            order: -4;
  }

  .order-3xs-3 {
    -webkit-order: -3;
            order: -3;
  }

  .order-3xs-2 {
    -webkit-order: -2;
            order: -2;
  }

  .order-3xs-1 {
    -webkit-order: -1;
            order: -1;
  }

  .order-3xs0 {
    -webkit-order: 0;
            order: 0;
  }

  .order-3xs1 {
    -webkit-order: 1;
            order: 1;
  }

  .order-3xs2 {
    -webkit-order: 2;
            order: 2;
  }

  .order-3xs3 {
    -webkit-order: 3;
            order: 3;
  }

  .order-3xs4 {
    -webkit-order: 4;
            order: 4;
  }

  .order-3xs5 {
    -webkit-order: 5;
            order: 5;
  }

  .order-3xs6 {
    -webkit-order: 6;
            order: 6;
  }

  .order-3xs7 {
    -webkit-order: 7;
            order: 7;
  }

  .order-3xs8 {
    -webkit-order: 8;
            order: 8;
  }

  .order-3xs9 {
    -webkit-order: 9;
            order: 9;
  }

  .order-3xs10 {
    -webkit-order: 10;
            order: 10;
  }

  .order-3xs11 {
    -webkit-order: 11;
            order: 11;
  }
}
/* --- text --- */
h1, .h1 {
  font: 600 36px/44px "Open Sans", Roboto, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

h2, .h2 {
  font: 700 32px/41px "Open Sans", Roboto, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

h3, .h3 {
  font: 600 24px/34px "Open Sans", Roboto, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

h4, .h4 {
  font: 600 20px/28px "Open Sans", Roboto, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

h5, .h5 {
  font: 600 16px/22px "Open Sans", Roboto, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

p, .p {
  margin: 11px 0;
}

small, .small {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

b {
  font-weight: 700;
}

.font-base {
  font: 400 0.6666666667 "Open Sans", Roboto, Helvetica, sans-serif;
}

a, .link {
  color: #eb2127;
  cursor: pointer;
  text-decoration: none;
  /* There's a bug in Edge with transition: all;*/
  transition: color 0.25s, border 0.25s, opacity 0.25s;
}

.link--underlined {
  text-decoration: underline;
}

.link {
  display: inline;
  border-bottom: 1px solid transparent;
}

.link--small {
  font-size: 14px;
  line-height: 22px;
}

.link--bold {
  font-weight: 600;
}

.link--dotted {
  display: inline-block;
  border-bottom: 1px dotted #eb2127;
  font-size: 16px;
  line-height: 20px;
}

.link--no-color {
  color: inherit;
}

.no-touch a:hover {
  color: #d21319;
  text-decoration: none;
}

.no-touch .link:hover {
  color: #d21319;
  text-decoration: none;
  border-bottom: 1px solid #eb2127;
}

.no-touch .link--dotted:hover {
  text-decoration: none;
}

.no-touch a:active,
.no-touch .link:active {
  color: #eb2127;
}

.blackout a,
.blackout .link {
  color: #ffffff;
}

.no-touch .blackout a:hover,
.no-touch .blackout .link:hover {
  color: #ffffff;
}

.link--multi-line {
  border: none;
  -webkit-text-decoration: underline solid transparent;
          text-decoration: underline solid transparent;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
  text-align: left;
}

.no-touch .link--multi-line:hover, .link--multi-line:active {
  border: none;
  -webkit-text-decoration: underline solid #eb2127;
          text-decoration: underline solid #eb2127;
}

ul, ol, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-scroller-wrap {
  position: relative;
}

.table-scroller {
  overflow: auto;
  margin: 16px 0 32px;
}

.table-scroller table,
.text-guide .table-scroller table {
  min-width: 750px;
}

/* --- text guide --- */
.text-guide-wrap {
  padding: 52px 52px 0;
}

.text-guide {
  font-size: 16px;
  line-height: 24px;
}

.text-guide--size-small {
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
}

.text-guide::after {
  content: "";
  display: block;
  clear: both;
}

.text-guide h1, .text-guide .h1 {
  margin: 48px 0 16px 0;
  color: #2A2A2A;
}

.text-guide h2, .text-guide .h2 {
  margin: 48px 0 11px 0;
  color: #2A2A2A;
}

.text-guide h3, .text-guide .h3 {
  margin: 27px 0 11px 0;
  color: #2A2A2A;
}

.text-guide h4, .text-guide .h4 {
  margin: 27px 0 11px 0;
  color: #2A2A2A;
}

.text-guide h5, .text-guide .h5 {
  margin: 16px 0 6px 0;
  color: #2A2A2A;
}

.text-guide h1:first-child,
.text-guide h2:first-child,
.text-guide h3:first-child,
.text-guide h4:first-child,
.text-guide h5:first-child {
  margin-top: 0;
}

.text-guide ul,
.text-guide ol {
  margin: 16px 0;
}

.text-guide ul > li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 12px;
}

.text-guide ol > li {
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
}

.text-guide ul > li:last-child,
.text-guide ol > li:last-child {
  margin-bottom: 0;
}

.text-guide ul > li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
}

.text-guide--size-small ul > li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
}

.text-guide ul.no-sign > li {
  padding-left: 0;
}

.text-guide ul.no-sign > li::before {
  content: "";
}

.text-guide ol {
  counter-reset: ol;
}

.text-guide ol > li {
  counter-increment: ol;
}

.text-guide ol ol li {
  padding-left: 35px;
}

.text-guide ol > li::before {
  content: counter(ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: currentColor;
  font-weight: 600;
}

.text-guide .table-scroller {
  /*margin: 22px 0;*/
}

.text-guide table,
.text-guide .table-scroller table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
}

.text-guide table th,
.text-guide .table-scroller table td {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  vertical-align: top;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid #EDEDED;
  min-width: 180px;
  color: #2A2A2A;
}

.text-guide--size-small th,
.text-guide--size-small td {
  font-size: 14px;
  line-height: 22px;
}

.text-guide table ul > li,
.text-guide .table-scroller table ul > li,
.text-guide--size-small table ul > li {
  padding-left: 18px;
  color: #7F7F7F;
}

.text-guide table ul > li::before,
.text-guide .table-scroller table ul > li::before,
.text-guide--size-small table ul > li::before {
  content: "—";
  top: -1px;
}

.text-guide table th,
.text-guide .table-scroller table th {
  background: #eb2127;
  color: #ffffff;
  font-weight: 700;
}

.text-guide table thead td,
.text-guide .table-scroller table thead td {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  padding-top: 0;
  padding-bottom: 11px;
}

.text-guide p {
  margin: 11px 0 11px;
}

.text-guide--size-small p {
  margin: 6px 0;
}

.text-guide img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  clear: both;
  height: auto;
  border-radius: 6px;
}

.text-guide img[align=left] {
  float: left;
  margin: 30px 30px 30px 0;
  max-width: calc((100% - 30px) * 0.5);
}

.text-guide img[align=right] {
  float: right;
  margin: 30px 0 30px 30px;
  max-width: calc((100% - 30px) * 0.5);
}

.text-guide img + img {
  margin-top: 30px;
}

.text-guide .guide-slider {
  margin: 45px 0;
  clear: both;
}

.text-guide hr {
  border: none;
  border-top: 1px solid #EDEDED;
  margin: 24px 0;
}

.text-guide blockquote {
  background-color: #F6F6F6;
  padding: 24px;
  border-radius: 6px;
  border-left: 4px solid #eb2127;
  margin: 32px 0;
  color: #2A2A2A;
}

.no-touch .text-guide a:hover {
  text-decoration: underline;
}

.no-touch .text-guide a.link:hover {
  text-decoration: none;
}

.text-placeholder {
  display: inline-block;
  height: 1em;
  background-color: #EDEDED;
  width: 100%;
  border-radius: 4px;
}

.text-guide--sm {
  font-size: 14px;
  line-height: 22px;
}

.text-guide p:first-child,
.text-guide ul:first-child,
.text-guide ol:first-child,
.text-guide li:first-child,
.text-guide img:first-child,
.text-guide table:first-child,
.text-guide .table-scroller:first-child,
.text-guide blockquote:first-child,
.text-guide .blockquote:first-child {
  margin-top: 0;
}

.text-guide ul ul:first-child,
.text-guide ul ol:first-child,
.text-guide ol ul:first-child,
.text-guide ol ol:first-child {
  margin-top: 20px;
}

.text-guide p:last-child,
.text-guide ul:last-child,
.text-guide ol:last-child,
.text-guide li:last-child,
.text-guide img:last-child,
.text-guide table:last-child,
.text-guide .table-scroller:last-child,
.text-guide blockquote:last-child,
.text-guide .blockquote:last-child {
  margin-bottom: 0;
}

.video-box {
  position: relative;
  background: #EDEDED;
  border-radius: 12px;
}

.video-box::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.text-guide .video-box {
  margin: 35px 0;
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-highlight {
  background-color: #2A2A2A;
  color: #eb2127;
  padding: 2px 6px 5px;
  font: inherit;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* --- blackout --- */
.blackout {
  color: #ffffff;
}

pre:empty {
  margin: 0;
}

@media (max-width: 1239px) {
  /* --- text --- */
  h1, .h1 {
    font: 600 30px/38px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h2, .h2 {
    font: 600 24px/34px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h3, .h3 {
    font: 600 20px/28px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h4, .h4 {
    font: 600 16px/22px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h5, .h5 {
    font: 600 16px/22px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  .h1 .text-strong {
    padding: 0 6px 5px;
    line-height: 30px;
  }

  .text-guide {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 999px) {
  /* --- text --- */
  h1, .h1 {
    font: 600 24px/34px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h2, .h2 {
    font: 600 24px/24px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h3, .h3 {
    font: 600 16px/24px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h4, .h4 {
    font: 600 14px/22px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  h5, .h5 {
    font: 600 14x/22px "Open Sans", Roboto, Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
  }

  .h1 .text-strong {
    padding: 0 6px 5px;
    line-height: 30px;
  }

  .text-guide {
    font-size: 14px;
    line-height: 22px;
  }

  /* --- text guide --- */
  /*
  .text-guide{font-size: $fz-base; line-height: $lh-base;}
  .text-guide p{margin: 20px 0;}
  .text-guide img{display: block; margin: 35px 0; max-width: 100%; border-radius: 8px;}
  .text-guide img[align="left"]{float: left; margin: 20px 20px 20px 0; max-width: calc((100% - 20px) * 0.5);}
  .text-guide img[align="right"]{float: right; margin: 20px 0 20px 20px; max-width: calc((100% - 20px) * 0.5);}
  .text-guide .guide-slider{margin: 35px 0;}
  .text-guide hr{border: none; border-top: 3px solid $color-gray-lighter; margin: 35px 0;}
  .text-guide strong,
  .text-guide .strong{font-size: $fz-large; line-height: $lh-large; font-weight: $fw-base;}
  */
  .h1 .text-strong {
    padding: 0 6px 4px;
    line-height: 20px;
  }

  .text-guide {
    font-size: 14px;
    line-height: 22px;
  }

  .text-guide p {
    margin: 18px 0;
  }

  .text-guide img {
    display: block;
    margin: 24px 0;
    max-width: 100%;
    clear: both;
    height: auto;
  }

  .text-guide-wrap {
    padding: 24px 15px 0;
  }
}
/* --- text clear --- */
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
p:first-child, .p:first-child,
img:first-child,
.table-scroller:first-child {
  margin-top: 0;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
p:last-child, .p:last-child,
img:last-child,
.table-scroller:last-child {
  margin-bottom: 0;
}

.image {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 999px) {
  .table-scroller::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 20px);
    width: 20px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
  }
}
.text--green {
  color: #53AB1D !important;
}

/* --- buttons --- */
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  color: inherit;
  font-family: "Open Sans", Roboto, Helvetica, sans-serif;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  background: transparent;
}

.btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  height: 36px;
  max-width: 100%;
  padding: 0 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  color: #2A2A2A;
  font: 600 14px/20px "Open Sans", Roboto, Helvetica, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: none;
  text-align: center;
  outline: none;
  overflow: hidden;
  transition: background-color 0.25s ease-out, color 0.25s ease-out, border 0.25s ease-out;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.btn--wide {
  width: 100%;
}

.btn--middle {
  width: 250px;
}

.no-touch .btn:hover,
.btn:active {
  background: #eb2127;
  color: #2A2A2A;
  text-decoration: none;
}

.no-touch .btn:active,
.btn:active {
  background: #eb2127;
  color: #2A2A2A;
}

.btn--primary,
.no-touch .btn.btn--primary.disabled,
.no-touch .btn.btn--primary.btn--disabled,
.no-touch .btn.btn--primary[disabled],
.no-touch .btn.btn--primary:disabled {
  background: #eb2127;
  color: #ffffff;
}

.no-touch .btn--primary:hover {
  background: #d21319;
  color: #ffffff;
}

.no-touch .btn--primary:active,
.btn--primary:active {
  background: #ffffff;
  border: 2px solid #eb2127;
  color: #eb2127;
}

.btn--black,
.no-touch .btn.btn--black.disabled,
.no-touch .btn.btn--black.btn--disabled,
.no-touch .btn.btn--black[disabled],
.no-touch .btn.btn--black:disabled {
  background: #dddddd;
  color: #ffffff;
}

.no-touch .btn--black:hover {
  background: #7F7F7F;
  color: #eb2127;
}

.no-touch .btn--black:active,
.btn--black:active {
  background: #7F7F7F;
  color: #eb2127;
}

.btn--gray,
.no-touch .btn.btn--gray.disabled,
.no-touch .btn.btn--gray.btn--disabled,
.no-touch .btn.btn--gray[disabled],
.no-touch .btn.btn--gray:disabled {
  background: #C0C0C0;
  color: #2A2A2A;
}

.no-touch .btn--gray:hover,
.no-touch .btn--gray:active,
.btn--gray:active {
  background: #7F7F7F;
  color: #eb2127;
}

.btn--outline,
.no-touch .btn.btn--outline.disabled,
.no-touch .btn.btn--outline.btn--disabled,
.no-touch .btn.btn--outline[disabled],
.no-touch .btn.btn--outline:disabled {
  border: 2px solid #eb2127;
  background: #fff;
  color: #eb2127;
}

.no-touch .btn--outline:hover,
.no-touch .btn--outline:focus {
  border: 2px solid #d8d8d8;
  background: #d8d8d8;
  color: #2A2A2A;
}

.btn--secondary,
.no-touch .btn.btn--secondary.disabled,
.no-touch .btn.btn--secondary.btn--disabled,
.no-touch .btn.btn--secondary[disabled],
.no-touch .btn.btn--secondary:disabled {
  color: #2A2A2A;
  background-color: #F0F0F0;
}

.no-touch .btn--secondary:hover,
.no-touch .btn--secondary:active,
.btn--secondary:active {
  background-color: #E3E3E3;
  color: #eb2127;
}

.no-touch .btn.btn--secondary:active,
.btn.btn--secondary:active {
  background-color: #E3E3E3;
  color: #eb2127;
}

.btn--black,
.no-touch .btn.btn--black.disabled,
.no-touch .btn.btn--black.btn--disabled,
.no-touch .btn.btn--black[disabled],
.no-touch .btn.btn--black:disabled {
  background-color: #E3E3E3;
  color: #eb2127;
  opacity: 0.75;
}

.btn--primary-outline,
.no-touch .btn.btn--primary-outline.disabled,
.no-touch .btn.btn--primary-outline.btn--disabled,
.no-touch .btn.btn--primary-outline[disabled],
.no-touch .btn.btn--primary-outline:disabled {
  color: #eb2127;
  background-color: transparent;
  border: 1px solid #eb2127;
}

.no-touch .btn--primary-outline:hover {
  background: #7F7F7F;
  color: #eb2127;
  border: 1px solid transparent;
}

.no-touch .btn--primary-outline:active,
.btn--primary-outline:active {
  background: #d21319;
  color: #2A2A2A;
  border: 1px solid transparent;
}

.btn--more {
  display: -webkit-flex;
  display: flex;
  height: 48px;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #eb2127;
  background-color: #EDEDED;
  cursor: pointer;
  border-radius: 6px;
}

.no-touch .btn--more:hover,
.no-touch .btn--more:active,
.no-touch .btn--more:focus {
  background-color: #E3E3E3;
  color: #eb2127;
}

.no-touch .text-guide .btn--more:hover {
  text-decoration: none;
}

.btn--border,
.no-touch .btn.btn--border.disabled,
.no-touch .btn.btn--border.btn--disabled,
.no-touch .btn.btn--border[disabled],
.no-touch .btn.btn--border:disabled {
  color: #2A2A2A;
  background-color: transparent;
  border: 1px solid #D7D7D7;
}

.no-touch .btn--border:hover {
  background: transparent;
  color: #2A2A2A;
  border: 1px solid black;
}

.btn--sm {
  font-size: 12px;
  letter-spacing: 0.21px;
  line-height: 12px;
  text-align: center;
  padding: 0 8px;
  height: 24px;
  font-weight: normal;
}

.btn--md {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding: 0 8px;
  height: 36px;
  font-weight: normal;
}

.btn--lg {
  height: 44px;
  padding: 0 24px;
  font-size: 14px;
}

.btn--lg-icon {
  height: 44px;
  padding: 0 8px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

/* --- btn grid --- */
.btn-grid {
  margin: 0 -10px -20px;
  display: inline-block;
  vertical-align: top;
  width: calc(100% + 20px);
}

.btn-grid .btn,
.btn-grid__item {
  margin: 0 10px 20px;
}

.btn-grid__item {
  display: inline-block;
  vertical-align: middle;
}

.btn-grid .btn--block {
  width: calc(100% - 20px);
}

.btn-grid__item > img {
  vertical-align: top;
}

.btn-grid--sm {
  margin: 0 -5px -10px;
  width: calc(100% + 10px);
}

.btn-grid--sm .btn,
.btn-grid--sm .btn-grid__item {
  margin: 0 5px 10px;
}

.btn-grid--sm .btn-grid__item {
  display: inline-block;
  vertical-align: middle;
}

.btn-grid--sm .btn--block {
  width: calc(100% - 10px);
}

.btn.btn.btn--disabled,
.btn.btn:disabled,
.btn.btn[disabled] {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

.no-touch .btn.btn.btn--disabled:hover,
.no-touch .btn.btn:disabled:hover,
.no-touch .btn.btn[disabled]:hover {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

@media (max-width: 999px) {
  .btn-basket {
    height: 44px;
    max-width: 143px;
  }
}
@media (max-width: 639px) {
  .btn--more {
    margin-top: 16px;
  }
}
/* --- form section --- */
.form-section {
  margin: 40px 0;
}

/* --- form --- */
.form__groups,
.form__group {
  margin: 50px 0;
}

.form__group-title {
  margin: 35px 0;
}

.form__group-body + .form__group-body {
  margin-top: 40px;
}

.form__group-body-layout {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.form__group-body-main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.form__group-body-aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 200px;
  padding-left: 30px;
}

.form__group-add {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
}

.form__row {
  margin: 20px 0;
}

.form__row--photo .field__label {
  display: none;
}

.form__row--check-list,
.form__row--check-row,
.form__row--radio-list,
.form__row--radio-row {
  margin: 25px 0;
}

.form__action {
  margin: 50px 0;
}

.form__action-grid {
  margin: -10px -20px;
  font-size: 0;
  display: -webkit-inline-flex;
  display: inline-flex;
  vertical-align: top;
  width: calc(100% + 40px);
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
}

.form__action-item {
  margin: 10px 20px;
  display: inline-block;
  vertical-align: middle;
  -webkit-flex-wrap: 0 0 auto;
          flex-wrap: 0 0 auto;
}

.form__action-item--note {
  -webkit-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 260px;
}

.form__note {
  margin: 35px 0;
}

.form__tab-labels {
  margin: 20px 0;
}

.tab-labels {
  padding-bottom: 2px;
}

.form__tab-labels + .form__groups {
  margin-top: 0;
}

.text-input {
  display: block;
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 13px 16px;
  box-shadow: 0 0 0 1px #C0C0C0 inset;
  color: #2A2A2A;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  position: relative;
  transition: 0.25s, height 0s;
  outline: none;
  vertical-align: top;
  resize: none;
}

.field--w-placeholder .text-input {
  padding: 16px 16px 0;
}

.text-input--small {
  height: 40px;
  padding: 0 12px 0 12px;
}

.text-input--short {
  width: 115px;
}

.text-input--small.text-input--prefix {
  padding: 0 12px 0 35px;
}

@media (max-width: 999px) {
  .text-input {
    height: 48px;
    font-size: 16px;
    line-height: 18px;
  }
}
textarea.text-input {
  height: 96px;
}

.field--w-placeholder textarea.text-input {
  padding-top: 20px;
}

.form-error .text-input {
  box-shadow: 0 0 0 1px #FF380D inset;
}

.text-input:hover {
  box-shadow: 0 0 0 1px #959696 inset;
}

.text-input:focus {
  box-shadow: 0 0 0 1px #2A2A2A inset;
}

.text-input--small {
  height: 40px;
  padding: 0 12px 0 12px;
}

.field--search .text-input {
  color: #2A2A2A;
  background-color: transparent;
  padding: 0 80px 0 16px;
  border: none;
  box-shadow: none;
  height: 44px;
}

.field--simple-search .text-input {
  color: #2A2A2A;
  background-color: transparent;
  padding: 0 16px 0 44px;
  height: 36px;
}

.search-menu--auth .field--search .text-input {
  padding: 0 230px 0 16px;
}

.field--search .text-input::-webkit-input-placeholder {
  color: #959696;
}

.field--search .text-input::-moz-placeholder {
  color: #959696;
}

.field--search .text-input::placeholder {
  color: #959696;
}

.field--search .text-input:focus {
  color: #2A2A2A;
  background-color: #ffffff;
}

.field--search-text {
  width: 100%;
}

.text-input::-webkit-input-placeholder {
  font: 400 0.7272727273 "Open Sans", Roboto, Helvetica, sans-serif;
  color: #959696;
}

.text-input::-moz-placeholder {
  font: 400 0.7272727273 "Open Sans", Roboto, Helvetica, sans-serif;
  color: #959696;
}

.text-input::placeholder {
  font: 400 0.7272727273 "Open Sans", Roboto, Helvetica, sans-serif;
  color: #959696;
}

.field__int-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  padding: 13px 15px;
  z-index: 10;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #959696;
  font-family: "Open Sans", Roboto, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  transition: 0.25s, z-index 0s ease 0.25s;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field__int-label--textarea:after {
  content: "";
  position: absolute;
  width: 96%;
  height: 20px;
  background-color: #ffffff;
  top: 1px;
  left: 1px;
  z-index: -1;
  border-radius: 6px;
}

.field--open .field__int-label {
  z-index: 31;
  transition: 0.25s, z-index 0s;
}

.field--w-placeholder:not(.field--placeholder-state):not(.field--extendable) .field__int-label {
  font-size: 12px;
  line-height: 20px;
  padding: 3px 15px;
}

.field--w-placeholder:not(.field--placeholder-state) .field__int-label.field__int-label--special-for-textarea {
  padding: 3px 0;
  opacity: 1;
  height: 22px;
  background: #fff;
  margin: 2px 20px 1px 15px;
  width: calc(100% - 35px);
}

.field--w-placeholder:not(.field--placeholder-state):not(.field--extendable) .field--placeholder-state .field__int-label {
  font-size: 16px;
  line-height: 24px;
  padding: 10px 15px;
}

.text-input-label {
  display: block;
  position: relative;
}

.text-input-label__search-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 44px;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  margin-right: 4px;
}

.text-input-label__search-btn-icon {
  width: 17px;
  height: 17px;
}

.text-input-eye {
  cursor: pointer;
  position: absolute;
  top: 11px;
  left: auto;
  right: 8px;
}

.text-input-eye__icon {
  color: #959696;
  width: 24px;
  height: 24px;
}

.input-group {
  display: -webkit-flex;
  display: flex;
}

.input-group__cell {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}

.input-group__cell:not(:first-child) {
  margin-left: 20px;
}

.input-group__prefix {
  position: absolute;
  top: 11px;
  left: 0;
  font-size: 14px;
  line-height: 18px;
  color: #C0C0C0;
  margin-left: 15px;
  z-index: 1;
}

.input-group__postfix {
  font-size: 12px;
  line-height: 14px;
  color: #6E6F72;
  margin-left: 4px;
}

.range-input-options {
  margin-top: 20px;
}

.range-input-options__item {
  margin-top: 10px;
}

.range-input-options__link {
  font-size: 13px;
  line-height: 22px;
  color: #7F7F7F;
  transition: color 0.25s;
  cursor: pointer;
}

.no-touch .range-input-options__link:hover {
  color: #2A2A2A;
}

input::-webkit-inner-spin-button {
  display: none;
}

/* .check-list */
.check-list__grid {
  display: block;
  vertical-align: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 1px;
}

.form__row--radio-row {
  margin-bottom: 0;
}

.form__row--radio-row .check-list__grid,
.field--radio-row .check-list__grid {
  display: -webkit-flex;
  display: flex;
  margin: 8px -16px 0;
}

.form__row--radio-row .check-list__item,
.field--radio-row .check-list__item {
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 0;
}

.radio-list .checkbox-row--radio {
  margin-top: 5px;
}

.checkbox-row--radio .checkbox-row__visual {
  top: 0;
  left: 0;
}

.filter__mob-item-body .check-list__grid {
  overflow-y: auto;
  overflow-x: hidden;
}

.check-list__item {
  padding: 0;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
}

.check-list--column .check-list__item {
  width: 100%;
  margin-top: 12px;
}

.checkbox-row {
  display: -webkit-flex;
  display: flex;
  padding-left: 30px;
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  transition: 0.25s;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 0;
}

.filter .check-list__item:only-child {
  font-weight: 700;
}

.field--color .checkbox-row {
  padding-left: 0;
}

.field--color .checkbox-row__text {
  margin-top: 5px;
}

.no-touch .checkbox-row--ckeckbox:hover .checkbox-row__visual,
.no-touch .checkbox-row--radio:hover .checkbox-row__visual {
  box-shadow: 0 0 0 1px #959696 inset;
}

.no-touch .checkbox-row--ckeckbox:hover .checkbox-row__text,
.no-touch .checkbox-row--radio:hover .checkbox-row__text {
  color: #2A2A2A;
}

.field--hidden-checkbox .checkbox-row {
  opacity: 0;
}

.field--absolute-checkbox .checkbox-row {
  position: absolute;
  top: -3px;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  cursor: pointer;
}

.checkbox-row__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.field--color .checkbox-row__input[disabled] ~ .checkbox-row__visual {
  display: none;
}

.check-list__item.disabled .check-list__color-marker {
  position: relative;
}

.check-list__item.disabled .check-list__color-marker:before,
.check-list__item.disabled .check-list__color-marker:after {
  content: "";
  position: absolute;
  width: 17px;
  height: 1px;
  background-color: #C0C0C0;
  top: 50%;
  left: 50%;
}

.check-list__item.disabled .check-list__color-marker:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.check-list__item.disabled .check-list__color-marker:after,
.no-touch .check-list__item.disabled:hover .checkbox-row__input ~ .check-list__color-marker::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border: 0;
  background-color: #C0C0C0;
  opacity: 1;
}

.check-list__item.disabled .check-list__color-marker {
  opacity: 0.4;
}

.check-list__item.disabled .checkbox-row__text {
  color: #A1A2A2;
}

.checkbox-row__visual {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: none;
  transition: inherit;
  background: #ffffff;
}

.no-touch .checkbox-row--ckeckbox.disabled:hover {
  cursor: not-allowed;
}

.checkbox-row__input[disabled] ~ .checkbox-row__visual,
.no-touch .checkbox-row--ckeckbox:hover .checkbox-row__input[disabled] ~ .checkbox-row__visual {
  box-shadow: 0 0 0 1px #EDEDED inset;
  background: #FAFAFA;
}

.checkbox-row__input[disabled] ~ .checkbox-row__text,
.no-touch .checkbox-row--ckeckbox:hover .checkbox-row__input[disabled] ~ .checkbox-row__text {
  color: #A1A2A2;
}

.checkbox-row__text {
  display: inline-block;
  vertical-align: top;
  margin-top: -2px;
  color: #7F7F7F;
  transition: color 0.25s;
}

.checkbox-row__input:checked ~ .checkbox-row__text {
  color: #2A2A2A;
}

.checkbox-row--ckeckbox .checkbox-row__visual {
  border-radius: 4px;
  box-shadow: 0 0 0 1px #C0C0C0 inset;
  z-index: 1;
}

.checkbox-row--ckeckbox .checkbox-row__visual--color {
  top: -3px;
  left: -3px;
  background-color: #eb2127;
  box-shadow: 0 0 0 1px #eb2127 inset;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 2px;
}

.no-touch .checkbox-row--ckeckbox:hover .checkbox-row__visual--color {
  box-shadow: 0 0 0 1px #eb2127 inset;
}

.checkbox-row__input:checked .checkbox-row__visual--color {
  opacity: 1;
}

.checkbox-row--radio .checkbox-row__visual {
  border-radius: 50%;
}

.checkbox-row--radio .checkbox-row__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.25s;
  background-color: #ffffff;
}

.checkbox-row--ckeckbox .checkbox-row__visual::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 6px;
  transition: opacity 0.25s;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: transparent;
  border-radius: 0;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  opacity: 0;
}

.checkbox-row__input[checked] ~ .checkbox-row__visual,
.checkbox-row__input:checked ~ .checkbox-row__visual {
  border-color: #eb2127;
}

.checkbox-row--radio .checkbox-row__input ~ .checkbox-row__visual {
  box-shadow: 0 0 0 1px #6e6f72;
  background-color: transparent;
  opacity: 1;
}

.checkbox-row--radio .checkbox-row__input[checked] ~ .checkbox-row__visual,
.checkbox-row--radio .checkbox-row__input:checked ~ .checkbox-row__visual {
  box-shadow: 0 0 0 1px #6e6f72;
  background-color: #eb2127;
  opacity: 1;
}

.checkbox-row--radio .checkbox-row__input[checked] ~ .checkbox-row__visual:before,
.checkbox-row--radio .checkbox-row__input:checked ~ .checkbox-row__visual:before {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  opacity: 1;
}

.checkbox-row--ckeckbox .checkbox-row__input[checked] ~ .checkbox-row__visual:before,
.checkbox-row--ckeckbox .checkbox-row__input:checked ~ .checkbox-row__visual:before {
  background-color: #eb2127;
  opacity: 1;
}

.checkbox-row--ckeckbox .checkbox-row__input[checked] ~ .checkbox-row__visual,
.checkbox-row--ckeckbox .checkbox-row__input:checked ~ .checkbox-row__visual {
  background-color: #eb2127;
  opacity: 1;
  box-shadow: 0 0 0 1px #eb2127 inset;
}

.check-list--row .check-list__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -16px;
}

.check-list--row .check-list__item {
  padding: 16px 16px;
}

.check-list__search-label {
  display: block;
  margin-bottom: 18px;
  position: relative;
}

.check-list__search-input {
  padding-right: 40px;
}

.check-list__search-btn {
  width: 32px;
  height: 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #2A2A2A;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.check-list__search-icon {
  width: 18px;
  height: 18px;
}

.check-list__message {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-top: 8px;
}

.check-list__color-marker {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: 48px;
  height: 32px;
  background-size: cover;
  background-position: center;
  margin-right: 12px;
  position: relative;
}

.check-list__color-marker:after {
  position: absolute;
  content: "";
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 2px;
  border: 2px solid #eb2127;
  opacity: 0;
  transition: opacity 0.25s;
}

.checkbox-row__input:checked ~ .check-list__color-marker:after {
  opacity: 1;
}

.no-touch .check-list__item:hover .check-list__color-marker:after {
  opacity: 1;
  border: 2px solid #C0C0C0;
}

.no-touch .check-list__item:hover .checkbox-row__input:checked ~ .check-list__color-marker:after {
  border: 2px solid #eb2127;
}

.no-touch .check-list__item.disabled:hover .checkbox-row__input:checked ~ .check-list__color-marker:after {
  border: none;
}

.check-list__color-marker--light {
  box-shadow: 0 0 0 1px #c1c1c1 inset;
}

.check-list__grid--type-twocolumn {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.check-list__grid--type-twocolumn .check-list__item {
  width: 50%;
  padding-right: 10px;
}

.form-error-label {
  font-size: 12px;
  line-height: 16px;
  color: #FF380D;
  font-weight: 400;
  margin-top: 4px;
}

.form-add-label {
  margin-top: 10px;
  color: #959696;
  font-size: 14px;
  line-height: 1.57;
}

@media (max-width: 1239px) {
  .text-input--short {
    width: 90px;
  }
}
@media (max-width: 999px) {
  .check-list__item {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.field__elem {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  margin-top: 16px;
}

.field__elem-main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.field__elem-remove {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
  color: #959696;
  transition: color 0.25s;
  position: relative;
}

.field__elem-remove:before,
.field__elem-remove:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1.5px;
  background-color: #959696;
  top: 50%;
  left: 50%;
  transition: background-color 0.15s;
}

.field__elem-remove:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.field__elem-remove:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.no-touch .field__elem-remove:hover:before,
.no-touch .field__elem-remove:hover:after {
  background-color: #2A2A2A;
}

.field__wrap {
  width: 100%;
}

.field__row--flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
}

.field__row--flex .field__input {
  width: 50%;
}

.form-add-label {
  width: 50%;
  padding-left: 32px;
  margin: 0;
}

.field__input {
  position: relative;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.field__add {
  color: #eb2127;
  font-size: 14px;
  line-height: 22px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 8px;
}

.field__add-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
}

.field__add-icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.field__label {
  color: #2A2A2A;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 14px;
  display: block;
}

.field__more {
  display: inline-block;
  margin-top: 9px;
  cursor: pointer;
  font-size: 13px;
  line-height: 22px;
}

@media (max-width: 639px) {
  .field__row--flex {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: stretch;
            align-items: stretch;
  }

  .field__row--flex .field__input {
    width: 100%;
  }

  .form-add-label {
    padding-left: 0;
    width: 100%;
    font-size: 12px;
  }
}
.select {
  display: inline-block;
  position: relative;
  vertical-align: top;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.25s, z-index 0s ease 0.25s;
  z-index: 1;
  outline: none;
  min-width: 96px;
}

.select--color {
  min-width: 64px;
}

.select--block {
  display: block;
  width: 100%;
}

.select--small {
  width: 130px;
}

.select__btn {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  box-shadow: 0 0 0 1px #cdcdcd inset;
  color: #2A2A2A;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  position: relative;
  transition: 0.25s, height 0s;
  outline: none;
  vertical-align: top;
}

.field--w-placeholder .select__btn {
  padding: 20px 16px 0;
}

.select--color .select__btn {
  padding: 4px;
  height: 36px;
}

.select__btn::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-bottom: 1.2px solid #959696;
  border-left: 1.2px solid #959696;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.select--color .select__btn::after {
  top: 14px;
  right: 14px;
  width: 6px;
  height: 6px;
  border-bottom: 1.2px solid #959696;
  border-left: 1.2px solid #959696;
}

.select.disabled,
.select:disabled {
  cursor: default;
}

.select select {
  display: none;
}

.select:focus::after {
  opacity: 1;
}

.select__chevron.select__chevron {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 14px;
  margin: -7px 2px 0 0;
  transition: 0.25s, color 0s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.select__close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 15px;
  width: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  transition: 0.25s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  color: inherit;
  background: transparent;
}

.select__close .svg-icon {
  width: 10px;
  height: 10px;
}

.select.open.open {
  z-index: 20;
  transition: 0.25s, z-index 0s;
}

.select.open .select__chevron.select__chevron {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.select__value,
.select__placeholder {
  max-width: 100%;
  overflow: hidden;
  pointer-events: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.25s, color 0s, font 0s;
  display: inline-block;
  vertical-align: middle;
}

.select__value {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.select__list {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  padding: 20px;
  text-align: left;
  background: #ffffff;
  color: #2A2A2A;
  box-shadow: 0 2px 14px rgba(21, 22, 22, 0.15);
  border-radius: 6px;
  overflow: hidden;
  cursor: default;
  word-wrap: break-word;
  word-break: break-word;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  transition: 0.25s, left 0s;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.select--color .select__list {
  width: 222px;
  left: auto;
  right: 0;
}

.select.open .select__list {
  opacity: 1;
  visibility: visible;
}

.select__list-body {
  max-height: calc(80vh - 64px);
  overflow-y: auto;
  padding: 5px 16px;
  margin: -21px;
}

.select--color .select__list-body {
  max-height: 175px;
  padding: 18px 16px;
}

.select__list-note,
.select__option {
  display: block;
  padding: 5px 16px;
  margin: 0 -16px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #959696;
  cursor: pointer;
  background: #ffffff;
  transition: 0.25s;
  outline: none;
  position: relative;
}

.select__option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.no-touch .select__option.disabled:hover {
  background: transparent;
  color: #959696;
}

.select--color .select__option {
  display: -webkit-flex;
  display: flex;
  line-height: 18px;
}

.select__option-text {
  display: inline-block;
  margin-top: 5px;
}

.select--color .select__list-note,
.select--color .select__option {
  padding: 8px 16px;
}

.select__list-note {
  cursor: default;
}

.select__option:first-child {
  margin-top: -5px;
}

.select__option:last-child {
  margin-bottom: -5px;
}

.no-touch .select__option:hover,
.select.placeholder-state .select__option.active:hover {
  color: #2A2A2A;
  outline: none;
  background: #F6F6F6;
}

.select__option.active,
.no-touch .select__option.active:hover {
  background: #ededed;
  color: #eb2127;
}

.select__option-color {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

.select__option-color--light {
  box-shadow: 0 0 0 1px #c1c1c1 inset;
}

@media (max-width: 999px) {
  .select--color .select__list {
    left: 0;
    right: auto;
  }
}
.price {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
}

.price--weak {
  color: #959696;
}

.price--nowrap.price--nowrap {
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: baseline;
          align-items: baseline;
}

.price--nowrap .price__group--old {
  margin-left: -6px;
}

.price--left {
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.price--right {
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.price__group {
  display: inline-block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}

.price__group--new {
  color: #eb2127;
}

.price__group--black {
  color: #2A2A2A;
}

.price__group--discont {
  color: #eb2127;
}

.price--weak .price__group--new:only-child {
  color: #959696;
}

.price__group--new .price__prefix {
  font-size: 13px;
  line-height: 13px;
}

.price--large .price__group--new .price__prefix {
  font-size: 20px;
  line-height: 20px;
}

.price__group--weak .price__prefix {
  font-size: 16px;
  line-height: 24px;
}

/*.price--small .price__group--new .price__prefix {
  font-size: 20px;
  line-height: 20px;
}*/
.price__group--new .price__value {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.price__group--new .price__currency {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.price--small .price__group--new .price__currency {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}

.price--alt .price__group--new .price__value {
  font-size: 16px;
  line-height: 18px;
}

.price--large .price__group--new .price__value {
  font-size: 26px;
  line-height: 20px;
}

.price--large .price__group--new .price__currency {
  font-size: 26px;
  line-height: 20px;
}

.price--weak .price__group--new .price__value {
  font-size: 16px;
  line-height: 24px;
}

.price--small .price__group--new .price__value {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}

.price--alt .price__group--new .price__currency {
  font-size: 14px;
  line-height: 14px;
}

.price__group--weak .price__currency {
  font-size: 16px;
  line-height: 24px;
}

.price--small .price__group--new .price__currency {
  font-size: 13px;
  line-height: 13px;
}

.ios .price__currency,
.ios .price__additional-currency {
  font-family: "San Francisco", "Helvetica Neue", sans-serif;
}

.price__group--old {
  color: #9E9E9E;
  position: relative;
  font-size: 18px;
  line-height: 36px;
  position: relative;
  top: -12px;
}

.price__group--old:after {
  content: "";
  position: absolute;
  top: 23%;
  left: -4px;
  width: calc(100% + 10px);
  height: 60%;
  background: url(/local/images/line-through-light.svg) center/100% 100% no-repeat;
  pointer-events: none;
  opacity: 0.75;
}

.price__group--old .price__prefix {
  font-size: 14px;
  line-height: 14px;
}

.price--small .price__group--old .price__prefix {
  font-size: 14px;
  line-height: 14px;
}

.price__group--old .price__value {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #9E9E9E;
}

.price--small .price__group--old .price__value {
  font-size: 14px;
  line-height: 16px;
}

.price--large .price__group--old .price__value {
  font-size: 16px;
  line-height: 20px;
}

.price--largest .price__group--new .price__value,
.price--largest .price__group--new .price__currency {
  font-size: 30px;
  line-height: 38px;
}

.price__group--old .price__currency {
  font-size: 14px;
  line-height: 14px;
}

.price--small .price__group--old .price__currency {
  font-size: 14px;
  line-height: 14px;
}

.price__additional-group {
  margin-left: 8px;
  margin-top: 2px;
}

.price__additional-prefix {
  font-size: 13px;
  line-height: 18px;
  color: #959696;
}

.price__additional-value {
  font-size: 13px;
  line-height: 18px;
  color: #959696;
}

.price__additional-postfix {
  font-size: 13px;
  line-height: 18px;
  color: #959696;
}

.price__additional-currency {
  font-size: 12px;
  line-height: 16px;
  color: #959696;
}

@media (max-width: 999px) {
  .price--nowrap {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .products-slider .price__group--new .price__value {
    font-size: 20px;
    line-height: 18px;
  }

  .price--nowrap .price__group--old {
    margin-left: 0;
  }

  .price--nowrap .price__group--old .price__value {
    font-size: 14px;
    line-height: 18px;
  }

  .product-slider .price__group.price__group--old .price__value,
.product-slider .price__group.price__group--old .price__currency {
    font-size: 10px;
    line-height: normal;
  }

  .price__additional-group {
    margin-left: 0;
    margin-top: 2px;
  }

  .price--left {
    max-height: 40px;
  }
}
.radio-block__grid {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% + 50px);
  margin: -25px -25px 0;
}

.radio-block__col {
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 25px;
  width: 140px;
}

.radio-block__item {
  position: relative;
}

.radio-block__label {
  display: block;
  min-width: 90px;
  height: 98px;
  position: relative;
  cursor: pointer;
}

.radio-block__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.radio-block__visual {
  height: 98px;
  padding: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  border: 1px solid transparent;
  transition: border 0.25s;
  border-radius: 6px;
  z-index: -1;
}

.radio-block__input:checked ~ .radio-block__visual {
  border: 1px solid #2A2A2A;
}

.no-touch .radio-block__label:hover .radio-block__input:not(:checked) ~ .radio-block__visual {
  border: 1px solid #cdcdcd;
}

.radio-block__image {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.radio-block__text {
  display: block;
  color: #2A2A2A;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

@media (max-width: 999px) {
  .radio-block__grid {
    width: calc(100% + 30px);
    margin: -25px -15px 0;
  }

  .radio-block__col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.rich-form {
  position: relative;
}

.rich-form__title-sub {
  margin: 16px 0;
  font-size: 16px;
  line-height: 28px;
  color: #6e6f72;
}

.rich-form__group {
  margin-top: 28px;
}

.rich-form__group-intro {
  margin-top: 16px;
}

.rich-form__row {
  margin-top: 24px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}

.rich-form__group.open .rich-form__group-body {
  display: block;
}

.rich-form__group-body {
  padding-top: 0;
}

.rich-form__group-body-layout {
  margin: 0 -12px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.rich-form__group-title {
  margin: 0;
}

.rich-form__group-title--small {
  font-size: 16px;
  line-height: 24px;
}

.rich-form__group-subtitle {
  color: #959696;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: none;
}

.rich-form__group-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
}

.rich-form__group-btn::before,
.rich-form__group-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 10px;
  background-color: #959696;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.rich-form__group-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
}

.rich-form__group.open .rich-form__group-btn::after {
  opacity: 0;
}

.rich-form__action {
  margin-top: 32px;
}

.rich-form__action-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.rich-form__action-left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 24px;
}

.modal-window--small .rich-form__action-left,
.modal-window--small .rich-form__action-btn {
  width: 100%;
}

.rich-form__action-right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  color: #959696;
}

.rich-form__action-note {
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 30px;
}

.rich-form__narrow-action {
  display: -webkit-flex;
  display: flex;
  margin-top: 32px;
}

.rich-form__narrow-btn {
  padding-left: 16px;
  padding-right: 16px;
}

.rich-form__narrow-btn:not(:first-child) {
  margin-left: 24px;
}

.rich-form__big-action-btn {
  height: 52px;
  width: 312px;
  margin-top: 32px;
}

.rich-form__big-action-content {
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
}

.rich-form__add-link {
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
  display: block;
  margin-top: 16px;
}

.rich-form__simple-btn {
  margin-top: 16px;
}

.rich-form__form--horizontal {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.rich-form__footnote {
  margin: 13px 0;
  font-size: 12px;
  line-height: 20px;
  color: #959696;
  width: 100%;
}

.rich-form__message {
  color: #FF380D;
  font-size: 14px;
  line-height: 22px;
  margin-top: 15px;
}

.rich-form__success-message {
  margin-top: 15px;
}

.rich-form__col--shaking {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@media (max-width: 999px) {
  .rich-form__row {
    width: 100% !important;
  }

  .rich-form__row--separator {
    display: none;
  }
}
/* --- modal --- */
.modal__surface {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  background: rgba(21, 22, 22, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 3000;
  overflow-x: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  transition: 0.25s;
}

.modal__container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px;
  min-height: 0;
  min-width: 0;
}

.modal--lg .modal-window {
  max-width: 1500px;
}

.modal--md .modal-window {
  max-width: 566px;
}

.modal--2md .modal-window {
  max-width: 1072px;
}

.modal--sm .modal-window {
  max-width: 484px;
}

.modal__content-slot {
  margin: auto;
  min-width: 0;
}

.modal--gallery .modal__content-slot {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
}

.modal--gallery .modal__container {
  padding: 0;
}

.state--modal-open .modal__surface {
  opacity: 1;
  visibility: visible;
}

/* --- modal window --- */
.modal-window {
  background: #ffffff;
  padding: 40px;
  width: 566px;
  max-width: 100%;
  border-radius: 6px;
  position: relative;
}

.modal-window__body {
  width: 100%;
}

.modal-window__slider {
  margin: 0 auto;
}

.modal-window--big {
  width: 1072px;
  padding: 52px 40px;
}

.modal-window--larger {
  width: 696px;
}

.modal-window--quick-view {
  width: 1500px;
  padding: 20px 0 40px;
}

.modal-window--wide {
  width: 1500px;
  padding: 0;
}

.modal-window--video {
  max-width: 1250px;
  width: 85vw;
  padding: 48px;
}

.modal-window--slider {
  max-width: 982px;
  width: 85vw;
  padding: 65px 50px 50px;
}

.modal-window--video .modal-window__nav {
  top: 0;
}

.modal-window--video .modal-window__close {
  margin: 0 0 0 auto;
}

.modal-window--smaller-paddings {
  padding-left: 48px;
  padding-right: 48px;
}

.modal-window--small {
  width: 540px;
}

.modal-window__image {
  width: 100%;
}

.modal-window--no-paddings {
  padding: 0;
}

.modal-window--smaller-paddings .modal-window__nav {
  top: 0;
}

.modal-window--smaller-paddings .modal-window__close {
  margin: 0 0 0 auto;
}

.modal-window__nav {
  position: absolute;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  top: 4px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.modal-window__close {
  display: block;
  margin: 0 7px 0 auto;
  cursor: pointer;
  transition: 0.15s;
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
}

.modal-window__close:before,
.modal-window__close:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1.5px;
  background-color: #959696;
  top: 50%;
  left: 50%;
  transition: background-color 0.3s ease;
}

.modal-window__close--white:before,
.modal-window__close--white:after {
  background-color: #ffffff;
}

.modal-window__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal-window__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-window__close:hover:before,
.modal-window__close:hover:after {
  background-color: #2A2A2A;
}

.modal-window__header {
  word-break: break-word;
}

.modal-window__footer {
  margin-top: 20px;
}

.modal-window__title {
  margin: 16px 0;
}

.modal-window__subtitle {
  margin: 16px 0;
  font-size: 16px;
  line-height: 28px;
  color: #959696;
}

.modal-window__video {
  position: relative;
  width: 100%;
}

.modal-window__video::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.modal-window__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.no-touch .modal-window__close:hover {
  color: #2A2A2A;
}

.modal-window--instalment {
  max-width: 668px;
  width: 668px;
  padding: 32px;
}

.modal-window--instalment .modal-window__close {
  width: 35px;
  height: 38px;
}

@media (max-width: 999px) {
  .modal-window {
    width: 100%;
    min-height: 100%;
    padding: 20px;
  }

  .modal-window--small {
    padding: 20px;
  }

  .modal-window--bottom {
    padding: 0;
    width: 100%;
    height: auto;
    min-height: 10px;
    position: absolute;
    top: auto;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .modal-window--no-paddings {
    padding: 0;
  }

  .modal--no-paddings .modal-window {
    padding: 0;
  }

  .modal-window__image:first-child {
    margin-top: 60px;
  }

  .modal__container {
    padding: 0;
    display: -webkit-flex;
    display: flex;
    min-height: 100%;
  }

  .modal__content-slot {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0;
  }

  .modal-window__nav {
    top: 0;
    position: fixed;
    z-index: 11;
  }

  .modal-window__close {
    width: 47px;
    height: 64px;
    margin-right: 0;
  }

  .modal-window__close:before,
.modal-window__close:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transition: background-color 0.15s;
  }

  .modal-window__form {
    padding-bottom: 24px;
  }

  .modal-window--video {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
            align-items: center;
  }

  .modal-window__simple-form {
    padding: 24px 15px;
  }

  .modal__surface {
    padding: 0;
  }

  .modal--basket-add-success .modal__content-slot {
    margin: auto;
    min-width: 0;
  }

  .modal-window--small,
.modal-window--basket-add-success {
    position: fixed;
    left: 5px;
    right: 5px;
    bottom: 0;
    width: calc(100% - 10px);
    min-height: 0;
    border-radius: 6px 6px 0px 0px;
    z-index: 1000;
  }

  .modal-window--instalment {
    max-width: calc(100% - 10px);
    width: calc(100% - 10px);
    padding: 12px 12px 32px;
    margin: 5px;
  }

  .modal-window--instalment .modal-window__close {
    width: 58px;
    height: 58px;
  }

  .modal-window--instalment .modal-window__close:before,
.modal-window--instalment .modal-window__close:after {
    width: 24px;
  }
}
.lazy-component__template {
  display: none;
}

/* --- slick slider (lib) --- */
.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-slider--flex-start .slick-track {
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  display: -webkit-flex;
  display: flex;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
  outline: none;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.slick-slide {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-vertical .slick-track {
  display: block;
}

/* --- slick slider --- */
.slick-default-arrows:hover .slick-arrow {
  -webkit-transform: translate(0px);
          transform: translate(0px);
}

.slick-default-arrows .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 80px;
  min-width: 80px;
  /*color: rgba(200, 200, 200, 0.7);*/
  color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
  z-index: 10;
}

.slick-default-arrows .slick-arrow.slick-prev {
  left: 0;
  width: calc((100% - 1548px) / 2 + 22px);
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding-right: 30px;
}

.slick-default-arrows .slick-arrow.slick-next {
  left: auto;
  right: 0;
  width: calc((100% - 1548px) / 2 + 22px);
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  padding-left: 30px;
}

.slick-default-arrows .slick-arrow .svg-icon {
  width: 11px;
  height: 15px;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.slick-default-arrows .slick-prev {
  left: 0;
}

.slick-default-arrows .slick-next {
  right: 0;
}

.no-touch .slick-default-arrows .slick-arrow:hover {
  background: transparent;
  color: #eb2127;
}

.slick-default-arrows:active .slick-arrow:not(:active),
.slick-default-arrows .slick-slider:active .slick-arrow:not(:active) {
  pointer-events: none;
}

.slick-default-arrows .slick-arrow.slick-disabled.slick-disabled {
  cursor: default;
  background: rgba(246, 246, 246, 0.2);
  color: rgba(42, 42, 42, 0.6);
}

.slick-default-dots .slick-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  margin: -5px;
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  cursor: default;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}

.slick-round-dots .slick-dots {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: auto;
  bottom: 10px;
  max-width: 100%;
  margin: -4px;
  font-size: 0;
}

.slick-default-dots .slick-dots.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 8px;
}

.slick-round-dots .slick-dots.slick-dots li {
  margin: 4px;
}

.slick-dots.slick-dots li:only-child,
.slick-default-dots .slick-dots.slick-dots li:only-child,
.slick-round-dots .slick-dots.slick-dots li:only-child {
  display: none;
}

.slick-default-dots .slick-dots button {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 2px;
  color: #EDEDED;
  background-color: rgba(200, 200, 200, 0.7);
  border-radius: 1px;
  border: none;
  padding: 0;
  position: relative;
  transition: 0.25s;
  cursor: default;
}

.slick-round-dots .slick-dots button {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.slick-default-dots .slick-dots button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #eb2127;
  -webkit-transform: translate3d(0, 0, 0) scaleX(0);
          transform: translate3d(0, 0, 0) scaleX(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.slick-default-dots .slick-dots .slick-active button {
  color: #F4A603;
}

.slick-round-dots .slick-dots .slick-active button {
  background-color: #fff;
}

.slick-default-dots .slick-dots .slick-active button::before {
  -webkit-animation: slick-dot-progress 6.4s linear;
          animation: slick-dot-progress 6.4s linear;
}

.no-touch .slick-default-dots .slick-dots button:hover {
  color: #F4A603;
}

.no-touch .slick-default-dots .slick-dots button:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.text-guide .slick-dots li {
  padding: 0;
}

.text-guide .slick-dots li::before {
  display: none;
}

.slick-default-arrows--offset:not(.slick-slidable) {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1500px) {
  .slick-default-arrows .slick-arrow.slick-prev {
    left: calc((100% - 1548px) / 2 + 35px);
  }

  .slick-default-arrows .slick-arrow.slick-next {
    left: auto;
    right: calc((100% - 1548px) / 2 + 35px);
  }
}
@media (max-width: 1367px) {
  .slick-default-arrows .slick-arrow.slick-prev {
    left: 0;
  }

  .slick-default-arrows .slick-arrow.slick-next {
    left: auto;
    right: 0;
  }
}
@-webkit-keyframes slick-dot-progress {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scaleX(0);
            transform: translate3d(0, 0, 0) scaleX(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleX(1);
            transform: translate3d(0, 0, 0) scaleX(1);
  }
}
@keyframes slick-dot-progress {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scaleX(0);
            transform: translate3d(0, 0, 0) scaleX(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleX(1);
            transform: translate3d(0, 0, 0) scaleX(1);
  }
}
.cookies {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 16px 26px;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 4px 16px rgba(143, 143, 143, 0.25);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #fff;
}

.cookies__content {
  margin-right: 40px;
  font-size: 16px;
  line-height: 22px;
  max-width: 700px;
}

.cookies__btn {
  padding: 9px 35px;
  background: #fff;
  border: none;
  outline: none;
  color: #000;
  border-radius: 4px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
}

@media (max-width: 759px) {
  .cookies {
    -webkit-flex-direction: column;
            flex-direction: column;
    padding: 20px 23px;
  }

  .cookies__content {
    margin-right: 0;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 19px;
  }
}
.pnlm-container {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: default;
  width: 100%;
  height: 100%;
  font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
  background: #f4f4f4 url("/local/images/markup-images/pannellum/background.svg") repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: 0;
  line-height: 1.4;
  contain: content;
}

.pnlm-container * {
  box-sizing: content-box;
}

.pnlm-ui {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pnlm-grab {
  cursor: -webkit-grab;
  cursor: grab;
  cursor: url("/local/images/markup-images/pannellum/grab.svg") 12 8, default;
}

.pnlm-grabbing {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  cursor: url("/local/images/markup-images/pannellum/grabbing.svg") 12 8, default;
}

.pnlm-sprite {
  background-image: url("/local/images/markup-images/pannellum/sprites.svg");
}

.pnlm-container:-webkit-full-screen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pnlm-container:-moz-full-screen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pnlm-container:-ms-fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pnlm-container:fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}

.pnlm-render-container {
  cursor: inherit;
  /* Fix display bug in Safari 7 */
  position: absolute;
  height: 100%;
  width: 100%;
}

.pnlm-controls {
  margin-top: 4px;
  background-color: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  cursor: pointer;
  z-index: 2;
  /* Fix Safari fullscreen bug */
  -webkit-transform: translateZ(9999px);
          transform: translateZ(9999px);
}

.pnlm-control:hover {
  background-color: #f8f8f8;
}

.pnlm-controls-container {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 1;
}

.pnlm-zoom-controls {
  width: 26px;
  height: 52px;
}

.pnlm-zoom-in {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  border-radius: 3px 3px 0 0;
}

.pnlm-zoom-out {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background-position: 0 -26px;
  border-top: 1px solid #ddd;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.pnlm-fullscreen-toggle-button, .pnlm-orientation-button, .pnlm-hot-spot-debug-indicator {
  width: 26px;
  height: 26px;
}

.pnlm-hot-spot-debug-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  display: none;
}

.pnlm-orientation-button-inactive {
  background-position: 0 -156px;
}

.pnlm-orientation-button-active {
  background-position: 0 -182px;
}

.pnlm-fullscreen-toggle-button-inactive {
  background-position: 0 -52px;
}

.pnlm-fullscreen-toggle-button-active {
  background-position: 0 -78px;
}

.pnlm-panorama-info {
  position: absolute;
  bottom: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 3px 3px 0;
  padding-right: 10px;
  color: #fff;
  text-align: left;
  display: none;
  z-index: 2;
  /* Fix Safari fullscreen bug */
  -webkit-transform: translateZ(9999px);
          transform: translateZ(9999px);
}

.pnlm-title-box {
  position: relative;
  font-size: 20px;
  display: table;
  padding-left: 5px;
  margin-bottom: 3px;
}

.pnlm-author-box {
  position: relative;
  font-size: 12px;
  display: table;
  padding-left: 5px;
}

.pnlm-load-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: none;
  color: #fff;
}

.pnlm-load-box p {
  margin: 20px 0;
}

.pnlm-lbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  display: none;
}

.pnlm-loading {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-name: pnlm-mv;
          animation-name: pnlm-mv;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  height: 10px;
  width: 10px;
  background-color: #fff;
  position: relative;
}

@-webkit-keyframes pnlm-mv {
  from {
    left: 0;
    top: 0;
  }
  25% {
    left: 10px;
    top: 0;
  }
  50% {
    left: 10px;
    top: 10px;
  }
  75% {
    left: 0;
    top: 10px;
  }
  to {
    left: 0;
    top: 0;
  }
}

@keyframes pnlm-mv {
  from {
    left: 0;
    top: 0;
  }
  25% {
    left: 10px;
    top: 0;
  }
  50% {
    left: 10px;
    top: 10px;
  }
  75% {
    left: 0;
    top: 10px;
  }
  to {
    left: 0;
    top: 0;
  }
}
.pnlm-load-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 100px;
  margin: -50px 0 0 -100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: table;
  color: #fff;
  cursor: pointer;
}

.pnlm-load-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.pnlm-load-button p {
  display: table-cell;
  vertical-align: middle;
}

.pnlm-info-box {
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: #000;
  border-radius: 3px;
  display: table;
  text-align: center;
  color: #fff;
  table-layout: fixed;
}

.pnlm-info-box a, .pnlm-author-box a {
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pnlm-info-box p {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px 0 5px;
}

.pnlm-error-msg {
  display: none;
}

.pnlm-about-msg {
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  padding: 5px 8px 5px 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  position: absolute;
  top: 50px;
  left: 50px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.pnlm-about-msg a:link, .pnlm-about-msg a:visited {
  color: #fff;
}

.pnlm-about-msg a:hover, .pnlm-about-msg a:active {
  color: #eee;
}

.pnlm-hotspot-base {
  position: absolute;
  visibility: hidden;
  cursor: default;
  vertical-align: middle;
  top: 0;
  z-index: 1;
}

.pnlm-hotspot {
  height: 26px;
  width: 26px;
  border-radius: 13px;
}

.pnlm-hotspot:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.pnlm-hotspot.pnlm-info {
  background-position: 0 -104px;
}

.pnlm-hotspot.pnlm-scene {
  background-position: 0 -130px;
}

div.pnlm-tooltip span {
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  max-width: 200px;
  padding: 5px 10px;
  margin-left: -220px;
  cursor: default;
}

div.pnlm-tooltip:hover span {
  visibility: visible;
}

div.pnlm-tooltip:hover span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}

.pnlm-compass {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 4px;
  bottom: 4px;
  border-radius: 25px;
  background-image: url("/local/images/markup-images/pannellum/compass.svg");
  cursor: default;
  display: none;
}

.pnlm-world {
  position: absolute;
  left: 50%;
  top: 50%;
}

.pnlm-face {
  position: absolute;
  -webkit-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
}

.pnlm-dragfix, .pnlm-preview-img {
  position: absolute;
  height: 100%;
  width: 100%;
}

.pnlm-preview-img {
  background-size: cover;
  background-position: center;
}

.pnlm-lbar {
  width: 150px;
  margin: 0 auto;
  border: #fff 1px solid;
  height: 6px;
}

.pnlm-lbar-fill {
  background: #fff;
  height: 100%;
  width: 0;
}

.pnlm-lmsg {
  font-size: 12px;
}

.pnlm-fade-img {
  position: absolute;
  top: 0;
  left: 0;
}

.pnlm-pointer {
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown__btn {
  cursor: pointer;
}

.dropdown__body {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  transition: 0.25s;
  width: 240px;
  overflow: hidden;
  border-radius: 6px;
  padding: 0 15px 15px;
  margin: 0 -15px -15px;
  /*visibility: visible;
  opacity: 1;
  z-index: 1000;
  transform: translateY(0);*/
}

.dropdown__body--wide {
  width: 490px;
}

.dropdown__body--upper {
  top: auto;
  bottom: 100%;
  padding: 0 15px 15px;
  margin: 0 -15px 0;
}

.dropdown__body--pushed {
  left: -20px;
}

.dropdown__body--narrow {
  width: 270px;
}

.dropdown__body--right {
  left: auto;
  right: 0;
}

.dropdown.open .dropdown__body {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dropdown__content {
  background-color: #ffffff;
  position: relative;
  margin-top: 20px;
  color: #2A2A2A;
  border-radius: 6px;
  max-height: 660px;
  overflow: auto;
  box-shadow: 0 2px 14px rgba(21, 22, 22, 0.15);
  padding: 21px 18px;
}

.dropdown__body::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 38px;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
  z-index: 1;
  box-shadow: 0 0 10px 0 rgba(21, 22, 22, 0.15);
}

.dropdown__body--upper::after {
  top: auto;
  bottom: 9px;
}

.dropdown__body::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 16px;
  top: 20px;
  left: 28px;
  background-color: #fff;
  z-index: 2;
}

.dropdown__body--upper::before {
  top: auto;
  bottom: 16px;
}

.dropdown__body--filters {
  width: 290px;
}

.dropdown__body--filters::after {
  left: 35px;
  right: auto;
}

.dropdown__body--filters::before {
  left: 30px;
}

.dropdown__body--right::after {
  left: auto;
  right: 50px;
}

.dropdown__body--right::before {
  right: 44px;
  left: auto;
}

@media (max-width: 999px) {
  .dropdown__body {
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transform: none;
            transform: none;
    border-radius: 0;
  }

  .dropdown__content {
    margin-top: 0;
    border-radius: 0;
  }

  .dropdown__body--narrow {
    width: 270px;
  }

  .dropdown__body--right {
    left: auto;
    right: 0;
  }

  .dropdown__body--mob-user {
    position: fixed;
    top: 80px;
    left: 15px;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    height: 100%;
    max-height: 100%;
  }

  .dropdown__body::before {
    display: none;
  }

  .dropdown__body--mob-user .dropdown__content {
    border: 1px solid #cdcdcd;
    height: calc(100% - 80px);
    max-height: calc(100% - 80px);
  }
}
.open-catalog-menu .catalog-menu {
  display: -webkit-flex;
  display: flex;
}
.open-catalog-menu .catalog-menu__overlay {
  display: block;
}

.catalog-menu {
  position: fixed;
  top: 100px;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 110;
  background-color: #ffffff;
  padding-top: 36px;
  padding-bottom: 48px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.08) inset;
  color: #2A2A2A;
  border-radius: 0 0 10px 10px;
  display: none;
}

.catalog-menu__wrapper {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  overflow-y: auto;
}

.catalog-menu__overlay {
  position: absolute;
  top: 100%;
  height: 100vh;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s, visibility 0.4s, z-index 0.4s;
  display: none;
}

.catalog-menu__list {
  position: relative;
  width: 100%;
}

.catalog-menu__item {
  width: 25%;
}
.catalog-menu__item:not(:last-child) {
  margin-bottom: 30px;
}
.catalog-menu__item.active .catalog-menu__toggle {
  background: #eb2127;
}
.catalog-menu__item.active .catalog-menu__sub {
  display: -webkit-flex;
  display: flex;
}

.catalog-menu__toggle {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 10px;
  border-radius: 6px;
  transition-duration: 300ms;
  cursor: pointer;
  color: #2A2A2A;
}
.catalog-menu__toggle:hover {
  background: #f4f4f4;
}
.catalog-menu__toggle::after {
  content: "";
  border-right: 2px solid #7f7f7f;
  border-bottom: 2px solid #7f7f7f;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 8px;
  height: 8px;
  margin-left: auto;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.catalog-menu__show-more {
  color: #eb2127;
}

.catalog-menu__sub-body-item.js-hidden-item {
  display: none;
}

.catalog-menu__toggle-text {
  margin-right: 15px;
}

li.catalog-menu__item.js-catalog-menu__item.active .catalog-menu__toggle-text {
  color: white;
}

.catalog-menu__toggle-icon {
  width: 58px;
  height: 56px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  background: #fff;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-right: 12px;
}

.catalog-menu__toggle-icon img {
  max-width: 60px;
  max-height: 61px;
  object-fit: contain;
}

.catalog-menu__sub {
  position: absolute;
  top: 0;
  left: 27%;
  right: 0;
  bottom: 0;
  display: none;
}

.catalog-menu__sub-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
}

.catalog-menu__sub-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.catalog-menu__sub-container-left {
  scrollbar-width: thin;
  scrollbar-color: transparent #e9e9e9;
}
.catalog-menu__sub-container-left::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
.catalog-menu__sub-container-left::-webkit-scrollbar-thumb {
  -webkit-appearance: none;
          appearance: none;
  background-color: #e9e9e9;
}
.catalog-menu__sub-container-left::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.catalog-menu__sub-container-left::-webkit-scrollbar-corner {
  background-color: transparent;
}

.catalog-menu__sub-container-left-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding-bottom: 36px;
  background-color: #ffffff;
  z-index: 10;
}

.catalog-menu__sub-list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  max-height: 100%;
}

.catalog-menu__sub-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
}

.catalog-menu__sub-body-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-top: 12px;
}

.catalog-menu__sub-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #2A2A2A;
}

.catalog-menu__sub-body-item {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #2A2A2A;
}
.catalog-menu__sub-body-item:not(:last-child) {
  margin-bottom: 8px;
}

.catalog-menu__sub-container-right {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 318px;
  margin-left: 20px;
  scrollbar-width: thin;
  scrollbar-color: transparent #e9e9e9;
}
.catalog-menu__sub-container-right::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
.catalog-menu__sub-container-right::-webkit-scrollbar-thumb {
  -webkit-appearance: none;
          appearance: none;
  background-color: #e9e9e9;
}
.catalog-menu__sub-container-right::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.catalog-menu__sub-container-right::-webkit-scrollbar-corner {
  background-color: transparent;
}
.catalog-menu__sub-container-right .simple-banner {
  max-width: 100%;
  height: 242px;
  object-fit: cover;
  padding: 0;
  border-radius: 8px;
}

.catalog-menu__sub-container-footer {
  overflow: hidden;
}

.catalog-menu__sub-container-footer-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 28px;
}

.catalog-menu__sub-container-tags-wrap {
  margin: -6px -6px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.catalog-menu__sub-container-tags-cell {
  padding: 6px;
}
.catalog-menu__sub-container-tags-cell .tag-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A2A2A;
  padding: 6px 10px;
  min-height: 36px;
  height: auto;
}

@media (max-width: 1239px) {
  .catalog-menu__sub-container-right {
    display: none;
  }
}
.page-header {
  background-color: #ffffff;
  padding-top: 12px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-header__container {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.page-header__top {
  display: -webkit-flex;
  display: flex;
}

.page-header__logo {
  display: block;
  width: 179px;
  height: 50px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 20px;
  margin-left: 8px;
}

.page-header__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 56px;
}

.page-header__right-top {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  min-height: 13px;
}

.page-header__right-bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 13px;
}

.page-header_catalog-menu-toggle .svg-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.page-header_catalog-menu-toggle {
  height: 44px;
  font-size: 14px;
  line-height: 18px;
}

.page-header__catalog-btn {
  margin-right: 23px;
}

.page-header__catalog-close {
  display: none;
}

.open-catalog-menu .page-header__catalog-open {
  display: none;
}
.open-catalog-menu .page-header__catalog-close {
  display: block;
}

.page-header__search-wrap {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 5%;
}

.page-header__info {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.page-header__bottom {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  border-top: 1px solid #e9e9e9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.page-header__bottom:hover .page-header__overlay {
  opacity: 1;
  visibility: visible;
  z-index: -1;
}

.page-header__overlay.page-header__overlay:hover {
  opacity: 0;
  visibility: hidden;
  z-index: -200;
}

.page-header__menu-wrap {
  width: 100%;
}

.page-header__cells {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 443px;
          flex: 0 0 443px;
  -webkit-justify-content: space-around;
          justify-content: space-around;
}

.page-header__cell {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-items: center;
          align-items: center;
}

.page-header__cell:last-child {
  border-right: 0;
}

.page-header__link {
  padding: 0 18px;
  font-size: 16px;
  line-height: 22px;
  color: #2A2A2A;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-items: center;
          align-items: center;
  transition: color 0.25s;
  cursor: pointer;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}

.page-header__cell:last-child .page-header__link {
  padding-right: 0;
}

.page-header__link--dropdown-btn {
  position: relative;
  padding-right: 34px;
}

.page-header__link--dropdown-btn:after {
  content: "";
  position: absolute;
  top: auto;
  left: auto;
  bottom: 9px;
  right: 18px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #2A2A2A;
  border-left: 1px solid #2A2A2A;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.page-header__icon-wrap {
  position: relative;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: #2A2A2A;
}

.page-header__icon-wrap:not(:first-child) {
  margin-left: 11px;
}

.no-touch .page-header__link:hover {
  color: #eb2127;
}

.page-header__link .svg-icon {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.page-header__link-text {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.page-header__link .svg-icon + .page-header__link-text {
  margin-left: 8px;
}

.page-header__link-currency {
  font-size: 15px;
  font-weight: 400;
}

.page-header__search-menu-wrap {
  -webkit-flex: 0 1 584px;
          flex: 0 1 584px;
}

.page-header__counter {
  border-radius: 10px;
  background-color: #eb2127;
  font-size: 9px;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  position: absolute;
  top: -2px;
  right: -3px;
  height: 14px;
  min-width: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.page-header .price__group--new .price__value {
  font-size: 16px;
  line-height: 22px;
}

.page-header .price__group--new .price__currency {
  font-size: 13px;
}

@media (max-width: 1540px) {
  .page-header__link-text {
    display: none;
  }
}
@media (max-width: 1239px) {
  .page-header__link {
    padding: 0 14px;
  }

  .page-header__cell {
    border-right: 0;
  }

  .page-header__cells {
    -webkit-flex-basis: auto;
            flex-basis: auto;
    margin-left: 14px;
  }

  .page-header__cell--compare,
.page-header__cell--basket {
    -webkit-flex-basis: auto;
            flex-basis: auto;
    margin-top: -5px;
  }

  .page-header__right-top {
    min-height: unset;
  }

  .page-header__link--dropdown-btn:after {
    display: none;
  }

  .page-header__logo {
    margin-top: 8px;
  }
}
@media (max-width: 999px) {
  .page-header {
    display: none;
  }

  .page-header__link {
    padding: 0 4px;
  }
}
.main-menu {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  overflow: hidden;
}

.main-menu__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0 -30px;
}

.main-menu__item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 30px;
}

.main-menu__item.open {
  overflow: visible;
}

.main-menu__link {
  display: -webkit-flex;
  display: flex;
  height: 42px;
  -webkit-align-items: center;
          align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
  padding: 3px 0;
  color: #2A2A2A;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: border 0.25s, color 0.25s;
  position: relative;
}

.main-menu__link--active {
  color: #eb2127;
}

.main-menu__link--discount {
  padding: 4px 10px;
  background: #2A2A2A;
  border-radius: 8px;
  color: #ffffff;
  -webkit-align-self: center;
          align-self: center;
  height: auto;
  margin-right: 11px;
}

.main-menu__link--discount.action {
  background: #eb2127;
}

.main-menu__link.main-menu__link--discount.action:hover {
  color: #2A2A2A;
}

.main-menu__link--discount .main-menu__link-icon {
  right: -11px;
  top: -4px;
  position: absolute;
  z-index: 10;
}

.main-menu__link-icon {
  width: 23px;
  height: 23px;
}

.main-menu__list-more {
  display: none;
  height: 42px;
  -webkit-align-items: center;
          align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
  padding: 3px 0;
  color: #2A2A2A;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: border 0.25s, color 0.25s;
  margin-left: 40px;
  cursor: pointer;
}

.no-touch .main-menu__link:hover,
.main-menu__link.active {
  border-bottom: 2px solid #eb2127;
  color: #eb2127;
}

.main-menu__sub {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  overflow: auto;
  z-index: -1;
  transition: visibility 0.25s, opacity 0.25s, z-index 0.25s;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-top: 1px solid #e9e9e9;
  display: none;
  box-shadow: 0px 6px 38px rgba(46, 46, 46, 0.15);
  border-radius: 0px 0px 4px 4px;
}

.main-menu__sub.active {
  display: block;
}

.position-left {
  left: auto;
  right: 0;
}

.main-menu__sub-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.main-menu__item.open .main-menu__sub {
  z-index: 30;
}

.main-menu__sub-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
  position: relative;
  max-width: 365px;
}

.main-menu__sub-item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 365px;
}

.main-menu__sub-container-right {
  border-left: 1px solid #e9e9e9;
  padding: 32px 24px 32px;
  max-width: 533px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.main-menu__sub-item.open .main-menu__sub-2 {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.main-menu__sub-item.open .main-menu__sub-link {
  background: #f1f1f1;
}

.main-menu__sub-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #2A2A2A;
  padding: 10px 16px;
  position: relative;
  background-color: transparent;
  border-radius: 6px;
  transition: color 0.25s, background-color 0.25s;
  cursor: pointer;
}

.main-menu__sub-link:hover .main-menu__sub-link-text,
.main-menu__sub-link:hover .main-menu__sub-link-icon {
  color: #eb2127;
}

a.main-menu__sub-link .main-menu__sub-link-text {
  font-size: 18px;
  line-height: 26px;
  color: #2a2a2a;
  font-weight: 400;
}

.main-menu__sub-body {
  display: none;
}

.main-menu__sub-body-wrap {
  display: -webkit-flex;
  display: flex;
  padding: 10px 16px;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.main-menu__sub-link-icon {
  margin-right: 0;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 19px;
  height: 19px;
  transition: 0.5s;
  color: #7f7f7f;
  margin-left: 25px;
}

img.main-menu__sub-link-icon {
  display: none;
}

.main-menu__sub-item.open .main-menu__sub-link-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #000;
}

.main-menu__sub-body-item {
  font-size: 18px;
  line-height: 26px;
  color: #2A2A2A;
  margin-bottom: 8px;
}

.main-menu__sub-body-item:last-child {
  margin-bottom: 0px;
}

.no-touch .main-menu__sub-link:hover {
  color: #eb2127;
}

.main-menu__sub-item--has-sunmenu .main-menu__sub-link:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 18px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-left: 1.5px solid #959696;
  border-bottom: 1.5px solid #959696;
  width: 8px;
  height: 8px;
  transition: border 0.25s;
}

.no-touch .main-menu__sub-link:hover:after {
  border-left: 1.5px solid #eb2127;
  border-bottom: 1.5px solid #eb2127;
}

.main-menu__sub-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 300px;
  padding: 32px 24px 24px;
  opacity: 0;
  background-color: #ffffff;
  overflow: auto;
  visibility: hidden;
  z-index: -1;
  transition: visibility 0.25s, opacity 0.25s, z-index 0.25s;
}

.main-menu__sub-item--has-sunmenu .main-menu__sub-2.open {
  opacity: 1;
}

.main-menu__sub-2-item {
  margin-top: 6px;
}

.main-menu__sub-2-link {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-top: 10px;
}

.main-menu__info {
  display: -webkit-flex;
  display: flex;
  padding: 40px 40px 40px 24px;
  background-color: #ffffff;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  border-bottom-right-radius: 6px;
}

.main-menu__info-param {
  margin-top: 12px;
}

.main-menu__info-param-title {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #2A2A2A;
  font-weight: 600;
}

.main-menu__info-param-values {
  margin: 10px 0 28px;
}

.main-menu__info-param-value {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-top: 10px;
  padding-right: 15px;
}

.main-menu__info-left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.main-menu__info-right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.main-menu__item-icon {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 8px;
  width: 32px;
  height: 32px;
}

.main-menu__sub-container-top {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  max-height: 570px;
  width: 100%;
}

.main-menu__sub-container-footer {
  padding: 0;
  position: relative;
}

.main-menu__sub-container-tags-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -16px -8px 0;
}

.mob-header-falorites.tab-labels {
  box-shadow: 0 3px 6px rgba(21, 22, 22, 0.1) !important;
  background-color: #ffffff !important;
}

.main-menu__sub-container-tags-cell {
  padding: 0 8px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 16px;
}

@media (max-width: 1500px) {
  .main-menu__list {
    margin: 0 -15px;
  }

  .main-menu__item {
    padding: 0 15px;
  }
}
@media (max-width: 1239px) {
  .main-menu__sub-container-top {
    display: block;
  }
}
@media (max-width: 999px) {
  .main-menu__list-mobile {
    display: -webkit-flex;
    display: flex;
  }
}
.header-menu--right {
  margin-left: auto;
}

.header-menu__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin: 0 -12px;
}

.header-menu__item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 13px;
  line-height: 20px;
  color: #676767;
  padding-left: 12px;
  padding-right: 12px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.header-menu__item.dropdown {
  cursor: pointer;
}

.header-menu__link {
  font-size: 13px;
  line-height: 1;
  color: #676767;
}

.header-menu__link-icon {
  margin-left: 8px;
}

.header-menu__link.dropdown__btn {
  padding-right: 15px;
  position: relative;
}

.header-menu__link.dropdown__btn:after {
  content: "";
  position: absolute;
  top: 6px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #676767;
  border-left: 1px solid #676767;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header-menu__link--accent {
  color: #F4A603;
}

.no-touch a.header-menu__link:hover,
a.header-menu__link:focus {
  color: #eb2127;
}

.header-menu__submenu {
  left: -5px;
}

.header-menu__item-sub {
  margin-top: 5px;
}

.header-menu__link-sub {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #676767;
}

.no-touch .header-menu__link-sub:hover {
  color: #151616;
}

.page-section--default {
  margin: 32px 0;
}

.page-section--medium {
  margin: 52px 0;
}

.page-section--large {
  margin-bottom: 32px;
}

.page-section--largest {
  margin: 80px 0 80px;
}

.page-section--m0 {
  margin: 0;
}

.page-section--mt0 {
  margin-top: 0;
}

.page-section--mt40 {
  margin-top: 40px;
}

.page-section--mt24 {
  margin-top: 24px;
}

.page-section--mb24 {
  margin-bottom: 24px;
}

.page-section--mb80 {
  margin-bottom: 80px;
}

.page-section__main {
  margin-top: 32px;
  border-radius: 6px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin-bottom: 70px;
}

.text-guide .page-section__main {
  padding: 0;
}

.page-section__main--block {
  display: block;
}

@media (min-width: 1470px) {
  .page-section--large.product-card__related {
    margin-top: 32px !important;
  }
}
@media (max-width: 999px) {
  .page-section--default {
    margin: 24px 0;
  }

  .page-section--medium {
    margin: 40px 0;
  }

  .page-section--large {
    margin: 0 0 32px 0;
  }

  .page-section--largest {
    margin: 40px 0;
  }

  .page-section--mt0 {
    margin-top: 0;
  }

  .page-section--mb80 {
    margin-bottom: 40px;
  }

  .page-section__main {
    margin-top: 24px;
    padding: 15px;
  }

  .text-guide .page-section__main {
    padding: 0;
  }
}
.cell-contact {
  margin-left: 14px;
}

.cell-contact__dropdown-btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #2A2A2A;
  position: relative;
  padding-right: 15px;
  transition: color 0.25s;
}

.cell-contact__dropdown-btn-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 8px;
}
.cell-contact__dropdown-btn-wrap .page-header__icon-wrap {
  width: 16px;
  height: 16px;
  -webkit-justify-content: center;
          justify-content: center;
}

.no-touch .cell-contact__dropdown-btn:hover {
  color: #eb2127;
}

.cell-contact__dropdown-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #2A2A2A;
  border-left: 1px solid #2A2A2A;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.cell-contact__body {
  left: auto;
  right: -15px;
  width: 270px;
}

.cell-contact__body.dropdown__body::before {
  right: 15px;
  left: auto;
}

.cell-contact__body.dropdown__body::after {
  right: 28px;
  left: auto;
}

.cell-contact__body--shift {
  left: 8px;
}

.cell-contact__contact {
  display: -webkit-flex;
  display: flex;
  margin-top: 9px;
  -webkit-align-items: center;
          align-items: center;
}

.cell-contact__contact .svg-icon {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 10px;
}

.cell-contact__phone {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #2A2A2A;
}

.no-touch a.cell-contact__phone:hover {
  color: #eb2127;
}

.cell-contact__name {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 5px;
}

.cell-contact__email {
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
}

.cell-contact__link {
  font-size: 14px;
  line-height: 22px;
}

.no-touch .cell-contact__email:hover {
  color: #7F7F7F;
}

.cell-contact__action {
  margin-top: 14px;
}

.cell-contact__btn {
  margin-top: 16px;
}

@media (max-width: 1239px) {
  .cell-contact__body--shift {
    display: none;
  }
}
@media (max-width: 999px) {
  .cell-contact__body {
    left: 0;
    width: 100%;
  }

  .cell-contact__title {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    font-size: 16px;
    line-height: 22px;
    padding: 0 15px;
    height: 64px;
    box-shadow: 0 3px 6px rgba(21, 22, 22, 0.1);
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-align-items: center;
            align-items: center;
    background-color: #fff;
    z-index: 10;
  }

  .cell-contact__wrap {
    padding: 24px 15px;
  }

  .cell-contact {
    margin-left: 0;
  }
}
.geo-button {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}

.geo-button__btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: #7F7F7F;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
}

.geo-button__btn:hover {
  color: #eb2127;
}

.geo-button__icon {
  width: 10px;
  height: 10px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.geo-button__text {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 10px;
}

.h4 .geo-button__text,
h4 .geo-button__text {
  margin-left: 7px;
}

.geo-button__dropdown-body {
  width: 310px;
}

@media (max-width: 759px) {
  .geo-button__text {
    margin-left: 0;
  }
}
.search-menu {
  border-radius: 4px;
  width: auto;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.search-menu__wrap {
  height: 44px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.search-menu__field-wrap {
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  position: relative;
}

.search-menu__field-wrap .field--search .field__input {
  margin-top: 0;
}

.search-menu__check-row-wrap {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 82px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 2px;
}

.search-menu__check-row-wrap .field__input {
  margin-top: 0;
}

.search-menu__wrap .field--search .text-input {
  background-color: #f4f4f4;
  border-radius: 6px;
}

.search-menu__wrap .search-menu__field-wrap {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.search-menu__wrap--has-focus .field--search .text-input {
  background-color: #EDEDED;
  color: #2A2A2A;
}

.search-menu__btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 10;
  padding: 0;
  background-color: #eb2127;
  border-radius: 4px;
  color: #ffffff;
  border: 2px solid #eb2127;
}

.search-menu__btn:hover {
  background-color: #d21319;
  color: #ffffff;
}

.search-menu__btn:active {
  background-color: transparent;
  color: #eb2127;
}

.search-menu__icon {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.25s;
}

.search-menu__btn:hover .search-menu__icon {
  color: #ffffff;
}

.search-menu__btn:active .search-menu__icon {
  color: #ffffff;
}

.search-menu__wrap .search-menu__btn:hover .search-menu__icon {
  color: #ffffff;
}

.search-menu__wrap .search-menu__btn:active .search-menu__icon {
  color: #eb2127;
}

.search-menu__wrap .search-menu__icon {
  color: #ffffff;
}

.search-menu__wrap--has-focus .search-menu__icon {
  color: #ffffff;
}

.search-menu__cross {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 62px;
  cursor: pointer;
}

.search-menu__cross::before,
.search-menu__cross::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #969696;
  top: 50%;
  left: 50%;
  transition: background-color 0.25s;
}

.search-menu__cross::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.search-menu__cross::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.search-menu__wrap--has-focus .search-menu__cross:hover::before,
.search-menu__wrap--has-focus .search-menu__cross:hover::after {
  background-color: #2A2A2A;
}

.search-menu--auth .text-input-label {
  display: block;
}

.search-menu__message,
.search-menu__result-message {
  padding: 18px 24px;
  font-size: 14px;
  line-height: 22px;
  color: #959696;
}

.search-menu__top {
  padding: 18px 24px;
  background-color: #F6F6F6;
}

.search-menu__products {
  border-top: 1px solid #ECECEC;
}

.search-menu__more {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  height: 58px;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 16px;
  line-height: 22px;
  z-index: 1;
}

.search-menu__message,
.search-menu__result {
  width: 100%;
  background-color: #fff;
  margin-top: 2px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 28px;
  color: #959696;
}

.search-menu__result {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 604px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 2px 14px rgba(21, 22, 22, 0.15);
  z-index: 3;
}

.search-menu__suggestion {
  font-size: 14px;
  line-height: 28px;
  color: #959696;
  margin-top: 10px;
}

.search-menu__query {
  font-weight: 700;
  color: #3D7AB6;
}

.no-touch .search-menu__query:hover {
  color: #3D7AB6;
  text-decoration: underline;
}

.search-menu__item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  padding: 20px;
}

.no-touch .search-menu__item:hover .search-menu__name {
  color: #eb2127;
}

.search-menu__item:not(:first-child) {
  border-top: 1px solid #ececec;
}

.search-menu__item-left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-right: 16px;
}

.search-menu__image {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  max-width: 100%;
}

.search-menu__image:nth-child(2) {
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}

.search-menu__item-main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.search-menu__price-wrap {
  margin-top: -7px;
}

.search-menu__item-right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.search-menu__name {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: #2A2A2A;
  margin-right: 5px;
  transition: color 0.25s;
}

.search-menu__status-wrap {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 2px;
}

.search-menu__status {
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  margin-right: 10px;
}

.search-menu__params {
  margin-top: 4px;
}

.search-menu__model {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #959696;
  white-space: nowrap;
}

.search-menu__param {
  font-size: 13px;
  line-height: 20px;
  margin-top: 4px;
}

.search-menu__param-name {
  display: inline;
  color: #959696;
}

.search-menu__param-value {
  display: inline;
  color: #2A2A2A;
}

.search-menu__arrow-link {
  width: 50px;
  height: 42px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #2A2A2A;
  cursor: pointer;
  margin-left: 16px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #eb2127;
  transition: all 0.25s;
}

.no-touch .search-menu__arrow-link:hover {
  background-color: #2A2A2A;
  color: #eb2127;
}

.search-menu__arrow-icon {
  width: 22px;
  height: 22px;
}

.search-menu__wrap:not(.search-menu__wrap--has-focus) .checkbox-row__text {
  color: #2A2A2A;
}

.search-menu__cathegory {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
}

.search-menu__cathegory-link {
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
  display: inline-block;
}

.search-menu__quantity {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-left: 8px;
}

.search-menu__link-more {
  line-height: 18px;
}

.search-menu__btn-more {
  border-radius: 0;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  height: 58px;
  font-size: 16px;
  line-height: 22px;
  z-index: 1;
}

@media (max-width: 999px) {
  .search-menu__title {
    font-size: 16px;
    line-height: 22px;
    padding: 0 15px;
    height: 64px;
    box-shadow: 0 3px 6px rgba(21, 22, 22, 0.1);
    display: -webkit-flex;
    display: flex;
    width: calc(100% + 40px);
    -webkit-align-items: center;
            align-items: center;
    background-color: #ffffff;
    z-index: 10;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin: -20px -20px 0;
  }

  .search-menu__wrap {
    margin: 24px 0;
    width: auto;
    height: auto;
  }

  .search-menu__wrap .field--search .text-input {
    background-color: #F3F3F3;
    height: 44px;
    box-shadow: none;
  }

  .search-menu__btn {
    height: 40px;
    width: 40px;
  }

  .search-menu__result {
    border-radius: 0;
    box-shadow: none;
    max-height: initial;
    margin: 0 -20px;
    padding: 0 20px 20px;
    width: auto;
  }

  .search-menu__top {
    background-color: #ffffff;
    padding: 18px 0;
  }

  .search-menu__item {
    overflow: hidden;
    position: relative;
  }

  .search-menu__item:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 100%;
    top: 0;
    left: auto;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
  }

  .search-menu__item-main {
    display: block;
  }

  .search-menu .price--right {
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }

  .search-menu__result-message {
    padding: 18px 0;
  }

  .search-menu__cross::after,
.search-menu__cross::before {
    background-color: #2A2A2A;
  }
}
.page-footer {
  background-color: #F4F4F4;
  border-top: 4px solid #eb2127;
  padding-top: 58px;
  /* for sticky footer */
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  visibility: hidden;
  /* Изначально скрыты */
}

.page-footer__top {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 50px;
}

.page-footer__bottom {
  display: -webkit-flex;
  display: flex;
  border-top: 1px solid #E9E9E9;
  padding-top: 26px;
  padding-bottom: 56px;
}

.page-footer__contacts {
  width: 20%;
  padding-right: 20px;
  -webkit-flex: 0 0 20%;
          flex: 0 0 20%;
}

.page-footer__middle {
  width: 40%;
}

.page-footer__additional {
  width: 20%;
  padding-right: 20px;
}

.page-footer__right {
  width: 20%;
}

.page-footer__icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  color: #353535;
  transition: color 0.25s;
}

.page-footer__soc-icons {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 32px;
}

.page-footer__soc-icon {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  transition: background-color 0.25s;
}

.page-footer__soc-icon:hover {
  background-color: #f6f6f6;
}

.page-footer__icon-img {
  width: 20px;
  height: 20px;
}

.no-touch .page-footer__soc-icon:hover .page-footer__icon {
  color: #fff;
}

.footer-menu__heading {
  color: #2A2A2A;
}

.footer-menu__body {
  margin-top: 8px;
}

.page-footer__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #2A2A2A;
}

.page-footer__contact-phones {
  margin-top: 0px;
}

.page-footer__contact-phone {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-top: 8px;
  color: #ffffff;
}

.no-touch .page-footer__contact-phone:hover,
.page-footer__contact-phone:active {
  color: #959696;
}

.page-footer__contact-links {
  margin-top: 10px;
}

.page-footer__contact-link {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #959696;
}

.no-touch .page-footer__contact-link:hover,
.page-footer__contact-link:active {
  color: #ffffff;
}

.page-footer__info {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.page-footer__info-left {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 780px;
  margin-right: 20px;
}

.page-footer__info-right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page-footer__info-text {
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
  margin-top: 12px;
}

.page-footer__developer {
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
}

.page-footer__nav-link {
  color: #7F7F7F;
}

.page-footer__reviews-wrap {
  margin-top: 40px;
}

.page-footer__contacts-wrap {
  margin-top: 12px;
}

.page-footer__text {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-top: 12px;
}

.page-footer__btn {
  margin-top: 12px;
}

@media (max-width: 1239px) {
  .page-footer__top {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .page-footer__contacts {
    width: 33.3333%;
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .page-footer__additional {
    width: 33.3333%;
    margin-top: 30px;
  }

  .page-footer__middle {
    width: 66.6666%;
  }

  .page-footer__right {
    width: 33.3333%;
    margin-top: 30px;
  }

  .page-footer__reviews-wrap {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-footer__info-left {
    max-width: 100%;
    margin-right: 40px;
  }
}
@media (max-width: 759px) {
  .page-footer__soc-icons {
    margin-top: 15px;
  }

  .page-footer__reviews-wrap {
    margin-top: 32px;
  }

  .page-footer__top {
    display: block;
    padding-bottom: 30px;
  }

  .page-footer__bottom {
    padding-top: 20px;
    padding-bottom: 54px;
  }

  .page-footer__info {
    display: block;
  }

  .page-footer__info-left {
    margin-right: 0;
  }

  .page-footer__info-right {
    margin-top: 20px;
  }

  .page-footer__developer,
.page-footer__info-text {
    font-size: 12px;
    line-height: 18px;
    margin: 10px 0;
  }

  .page-footer__middle {
    width: 100%;
  }

  .page-footer__contacts {
    padding-right: 0;
    width: 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 20px;
  }

  .page-footer__additional {
    padding-right: 0;
    width: 100%;
  }
}
.footer-menu {
  width: 100%;
}

.footer-menu__cells {
  width: 100%;
  display: -webkit-flex;
  display: flex;
}

.footer-menu__cell {
  padding-right: 20px;
  width: 50%;
  position: relative;
}

.footer-menu__list-item {
  margin-top: 2px;
}

.footer-menu__heading {
  display: inline-block;
  color: #2A2A2A;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

/* Скрыт по задаче AGR-763 */
.footer-menu__link {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: #959696;
}

.no-touch .footer-menu__link:hover {
  color: #eb2127;
}

@media (max-width: 759px) {
  .page-footer {
    padding-top: 40px;
  }

  .page-footer__soc-icons {
    width: 100%;
  }

  .page-footer__title {
    font-size: 14px;
    line-height: 20px;
  }

  .page-footer__contact-phone {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .page-footer__contact-link {
    font-size: 13px;
  }

  .footer-menu__cells {
    display: block;
    margin: 0;
  }

  .footer-menu__cell {
    padding: 0;
    width: 100%;
    border-top: 1px solid #353535;
  }

  .footer-menu__cell:last-child {
    border-bottom: 1px solid #353535;
  }

  .footer-menu__body {
    display: none;
  }

  .footer-menu__heading {
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    position: relative;
    font-size: 14px;
    line-height: 20px;
  }

  .footer-menu__heading-btn {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: 1;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }

  .footer-menu__heading-btn:before,
.footer-menu__heading-btn:after {
    content: "";
    position: absolute;
    background-color: #2A2A2A;
  }

  .footer-menu__heading-btn:before {
    right: 10px;
    top: calc(50% - 6px);
    width: 1px;
    height: 12px;
    transition: 0.25s;
  }

  .footer-menu__cell.open .footer-menu__heading-btn:before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .footer-menu__heading-btn:after {
    right: 5px;
    top: calc(50% - 1px);
    width: 12px;
    height: 1px;
  }

  .footer-menu__body {
    margin-top: 0;
    padding-bottom: 20px;
  }

  .footer-menu__list-item {
    margin-top: 10px;
    line-height: 20px;
  }

  .footer-menu__link {
    font-size: 13px;
    line-height: 20px;
  }

  .page-footer__right {
    margin-top: 32px;
    width: 100%;
  }

  .page-footer__reviews-wrap,
.page-footer__subscription-form-wrap {
    width: 100%;
  }
}
.subscription-form {
  position: relative;
}

.subscription-form__title {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.subscription-form .text-input {
  height: 36px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.subscription-form .text-input:focus {
  box-shadow: none;
}

.subscription-form .field__input {
  margin-top: 0;
}

.subscription-form__main {
  display: -webkit-flex;
  display: flex;
  margin-top: 16px;
}

.subscription-form__main .field {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.subscription-form__submit {
  width: 39px;
  height: 36px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0;
}

.subscription-form__submit-icon {
  width: 18px;
  height: 13px;
}

.subscription-form__message {
  color: #959696;
  margin-top: 5px;
  font-size: 13px;
  line-height: 20px;
}

@media (max-width: 999px) {
  .subscription-form__title {
    font-size: 14px;
    line-height: 20px;
  }

  .subscription-form__main {
    margin-top: 12px;
  }
}
.reviews__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: baseline;
          align-items: baseline;
}

.reviews__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.no-touch .reviews__title:hover {
  color: #959696;
}

.reviews__user-review {
  margin-top: 14px;
}

.reviews__title-counter {
  font-size: 17px;
  line-height: 22px;
}

.reviews__rating {
  margin-top: 15px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.reviews__rating-num {
  margin-left: 12px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
}

.reviews__no-reviews-message {
  font-size: 15px;
  line-height: 25px;
  color: #C0C0C0;
  margin-top: 13px;
}

.reviews__no-reviews-caption {
  font-size: 17px;
  line-height: 22px;
  color: #2A2A2A;
  margin-top: 10px;
}

.reviews__btn {
  height: 40px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  color: #eb2127;
}

.reviews__no-reviews {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 20px;
}

.reviews__items {
  position: relative;
  margin-top: 20px;
}

.reviews__item {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.reviews__cell {
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  position: relative;
}

.reviews--alt .reviews__cell {
  padding: 24px 0;
  margin-top: 0;
}

.reviews--alt .reviews__cell:first-child {
  border-top: 1px solid #eb2127;
  margin-top: 5px;
}

.reviews--alt .reviews__cell {
  border-bottom: 1px solid #eb2127;
}

.reviews__item-review {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 74px;
}

.reviews__item-footer {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.reviews__item-footer--right {
  display: block;
  min-width: 340px;
  margin-left: 64px;
}

.reviews__item-footer--right .reviews__marks {
  display: block;
  margin-left: 0;
  margin-top: 12px;
}

.reviews__item-footer--right .reviews__mark {
  margin-left: 0;
  margin-right: 0;
  margin-top: 7px;
}

.reviews__marks {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-left: 16px;
  font-size: 64px;
  line-height: 74px;
}

.reviews__marks--alt {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-left: 0;
  margin-top: 40px;
}

.reviews__rating-label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  background-color: #ff0;
  padding-left: 4px;
  padding-right: 20px;
  color: #2A2A2A;
  line-height: 20px;
  height: 40px;
  position: relative;
  border-radius: 4px;
  margin-left: 15px;
  width: 92px;
}

.reviews__rating-label:before {
  content: "";
  position: absolute;
  left: -14px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background-color: #ff0;
  border-radius: 4px;
  top: 20px;
}

.special-open .reviews__rating-label,
.special-open .reviews__rating-label:before {
  background-color: #fff;
}

.reviews__mark {
  margin-left: 24px;
  margin-right: 24px;
}

.reviews__mark-value {
  display: inline-block;
  position: relative;
  margin-left: 46px;
}

.reviews__mark-ico {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 100%;
  margin-right: 8px;
}

.reviews__footer {
  margin-top: 7px;
}

.reviews__btn-more {
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  height: 30px;
  font-size: 13px;
  line-height: 17px;
  color: #959696;
}

.reviews__sorting {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-right: 10px;
}

.reviews__sorting-header {
  font-size: 13px;
  line-height: 17px;
  color: #2A2A2A;
  border-bottom: 1px solid #eb2127;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.reviews__sorting-header:after {
  content: "";
  position: absolute;
  top: 49%;
  left: auto;
  right: 0;
  width: 6px;
  height: 6px;
  border-left: 1px solid #eb2127;
  border-bottom: 1px solid #eb2127;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.reviews__sorting-dropdown {
  background: #fff;
  right: -15px;
  left: auto;
  top: 100%;
  min-width: 110px;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.15);
  padding: 14px 0;
  margin-top: 7px;
}

.reviews__action {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 22px;
}

.reviews__sorting-list {
  font-size: 13px;
  line-height: 17px;
  color: #2A2A2A;
  padding: 2px 0;
}

.reviews__sorting-item {
  position: relative;
  white-space: nowrap;
  display: block;
  padding: 7px 10px 7px 28px;
  cursor: pointer;
}

.reviews__sorting-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #eb2127;
  margin-right: 6px;
  opacity: 0;
  transition: opacity 0.25s;
}

.reviews__sorting-item.active:after {
  opacity: 1;
}

.reviews__note {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

@media (max-width: 999px) {
  .reviews__title {
    font-size: 14px;
    line-height: 20px;
  }
}
/* --- rating --- */
.rating {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.rating--input {
  display: block;
}

.rating__label {
  font-size: 15px;
  line-height: 22px;
  color: #2A2A2A;
  margin-bottom: 10px;
}

.rating__layout {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.rating__note {
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-left: 10px;
  color: #C0C0C0;
  font-size: 14px;
  line-height: 24px;
  transition: 0.25s;
  white-space: nowrap;
}

.rating__row {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.rating--input .rating__row {
  display: block;
  width: 100%;
}

.rating__grid {
  display: -webkit-flex;
  display: flex;
}

.rating--input .rating__item {
  cursor: pointer;
}

.rating__item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  color: #ECECEC;
  position: relative;
  transition: color 0.1s;
  padding-left: 4px;
  padding-right: 4px;
}

.rating__item:first-child {
  margin-left: -3px;
}

.rating__item--checked {
  color: #eb2127;
}

.rating__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.rating__item .svg-icon {
  width: 20px;
  height: 19px;
}

.rating--small .rating__item {
  padding-left: 2px;
  padding-right: 2px;
}

.rating--small .rating__item .svg-icon {
  width: 15px;
  height: 14px;
}

.rating--middle .rating__item {
  padding-left: 2px;
  padding-right: 2px;
}

.rating--middle .rating__item .svg-icon {
  width: 15px;
  height: 14px;
}

.rating__layer--checked {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__layer--input {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.rating--big .rating__item .svg-icon {
  width: 20px;
  height: 19px;
}

.rating--link,
.rating--link .rating__item {
  cursor: pointer;
}

.rating--link .rating__note {
  text-decoration: underline;
  color: #eb2127;
}

.no-touch .rating--link:hover .rating__note {
  text-decoration: none;
}

.blackout .rating__note {
  color: #ffffff;
}

.blackout .rating__item:not(.rating__item--checked) {
  color: #ffffff;
}

.no-touch .blackout .rating--link:hover .rating__note {
  color: #ffffff;
}

/* --- rating-list --- */
.rating-list__item {
  margin-bottom: 10px;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  color: #959696;
}

.rating-list__item:last-child {
  margin-bottom: 0;
}

.rating-list__item-label {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 20px;
}

.rating-list__item-value {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: auto;
}

.rating-list--horizontal .rating-list__grid {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  margin: -10px -30px;
  width: calc(100% + 60px);
}

.rating-list--horizontal .rating-list__item {
  display: inline-block;
  vertical-align: top;
  margin: 10px 30px;
  width: auto;
}

.rating-list--horizontal .rating-list__item-label {
  margin: 0 0 5px;
}

.rating-list--horizontal .rating-list__item-value {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  line-height: 0;
}

.rating__integrated-label {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
}

.rating__caption {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-left: 8px;
  white-space: nowrap;
}

@media (max-width: 1239px) {
  .rating-list__item-label {
    margin-right: 10px;
  }

  .rating-list--break .rating-list__grid {
    margin: -5px -15px;
    width: calc(100% + 30px);
  }

  .rating-list--break .rating-list__item {
    margin: 5px 15px;
    width: 220px;
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .rating-list--break .rating-list__item-label {
    margin: 0 10px 0 0;
  }

  .rating-list--break .rating-list__item-value {
    margin-left: auto;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
/* --- rating input --- */
.rating-input {
  cursor: default;
}

.rating-input__row {
  display: -webkit-flex;
  display: flex;
  margin: 12px 0;
}

.rating-input__row--head {
  margin: 18px 0 12px;
}

.rating-input__row-label {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  width: 250px;
  padding-right: 20px;
  font-size: 64px;
  line-height: 74px;
  max-width: 100%;
}

.rating-input__row-label:only-child {
  width: auto;
  padding-right: 0;
}

.rating-input__row-label-icon {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 8px;
}

.rating-input__row-label-icon .svg-icon {
  width: 20px;
  height: 20px;
}

.rating-input__row-label-text {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.rating-input__row-main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.rating-input__row-main .rating-stars {
  margin-top: 3px;
}

.rating-input__row-main .price-badge {
  margin-left: -4px;
  margin-top: -4px;
  padding-right: 20px;
  min-width: 106px;
}

.rating-input__row-check {
  -webkit-flex-wrap: 0 0 auto;
          flex-wrap: 0 0 auto;
  margin-left: 10px;
}

/* --- rating stars --- */
.rating-stars,
.rating-stars__stars {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.rating-stars__stars {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 0;
}

.rating-stars__value {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 28px;
}

.rating-stars__item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 2px;
}

.rating-stars__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: top;
}

.rating-stars__path {
  fill: #ffffff;
  stroke: #2A2A2A;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
  transition: 0.25s;
}

.rating-stars__item.active .rating-stars__path {
  fill: #eb2127;
  stroke: #eb2127;
}

.rating-stars--input .rating-stars__item {
  cursor: pointer;
}

.no-touch .rating-stars--input .rating-stars__stars:hover .rating-stars__path {
  fill: #eb2127;
  stroke: #eb2127;
}

.no-touch .rating-stars--input .rating-stars__item:hover ~ .rating-stars__item .rating-stars__path {
  fill: #ffffff;
  stroke: #2A2A2A;
}

@media (max-width: 1367px) {
  /* --- rating input --- */
  .rating-input__row-label {
    font-size: 16px;
    line-height: 24px;
  }

  .rating-input__row-main .price-badge {
    margin-top: 2px;
    padding-right: 12px;
    min-width: 74px;
  }

  .rating-input__row-main .price-badge__icon {
    width: 16px;
    height: 16px;
  }

  .rating-input__row-main .price-badge__value {
    font-size: 16px;
  }
}
@media (max-width: 999px) {
  .rating__layer--input {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }

  .rating__layer--input .rating__grid {
    margin-left: 20px;
  }
}
@media (max-width: 759px) {
  /* --- rating input --- */
  .rating-input__row {
    display: block;
    margin: 15px 0;
  }

  .rating-input__row-label {
    width: auto;
  }

  .rating-input__row--head {
    display: -webkit-flex;
    display: flex;
  }

  .rating-input__row--head .rating-input__row-label,
.rating-input__row--head .rating-input__row-main {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .rating-input__row-check {
    margin: 4px 0 0;
  }

  /* --- rating stars --- */
  .rating-stars__value {
    margin-left: 18px;
  }
}
.mini-banner {
  width: 100%;
  display: block;
  max-width: 460px;
  min-height: 200px;
  margin-top: 24px;
  border-radius: 6px;
  overflow: hidden;
}

.no-touch .mini-banner:hover .mini-banner__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.mini-banner--flex {
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.mini-banner__wrap {
  display: -webkit-flex;
  display: flex;
  height: 100%;
}

.mini-banner__left {
  width: 60%;
  padding: 20px 24px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.mini-banner__right {
  width: 40%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.mini-banner__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #2A2A2A;
  max-width: 235px;
  min-height: 140px;
  overflow: hidden;
}

.mini-banner--blackout .mini-banner__title {
  color: #ffffff;
}

.mini-banner__caption {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
}

.mini-banner--blackout .mini-banner__caption {
  color: #ffffff;
}

.mini-banner__image {
  display: block;
  margin-right: 24px;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.mini-banner--alt .mini-banner__left {
  padding: 30px 40px 40px;
}

.mini-banner--alt .mini-banner__image {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mini-banner--alt .mini-banner__title {
  max-width: 245px;
}

@media (max-width: 1239px) {
  .mini-banner__left {
    width: 100%;
    padding: 16px 24px 20px;
  }

  .mini-banner__right {
    display: none;
  }

  .mini-banner--alt .mini-banner__left {
    padding: 16px 24px 20px;
  }
}
@media (max-width: 999px) {
  .mini-banner__title {
    font-size: 14px;
    line-height: 20px;
    max-height: 80px;
  }
}
.main-slider {
  margin-top: 54px;
}

.main-slider--content {
  margin: 0;
}

.main-slider__main--narrow {
  max-width: 465px;
}

.main-slider--mb40 {
  margin-bottom: 40px;
}

.main-slider--mt0 {
  margin-top: 0;
}

.main-slider__slider {
  border-radius: 6px;
  overflow: hidden;
}

.main-slider__slider--rectangular {
  border-radius: 0;
}

.main-slider__slider.js-main-slider:not(.slick-initialized) {
  height: 480px;
  overflow: hidden;
}

.main-slider--small .main-slider__slider.js-main-slider:not(.slick-initialized) {
  height: 260px;
  overflow: hidden;
}

.main-slider__slide {
  height: 424px;
  position: relative;
  background-color: #ffffff;
}

.main-slider__slide--blackout .main-slider__title,
.main-slider__slide--blackout .main-slider__text {
  color: #ffffff;
}

.main-slider__slide-image.main-slider__slide-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

.main-slider__slide:after {
  display: none;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.8;
  z-index: 0;
}

.main-slider--small .main-slider__slide {
  height: 260px;
}

.main-slider--small .main-slider__slide-image.main-slider__slide-image {
  height: 260px;
  object-fit: cover;
}

.main-slider__content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 52px;
  position: relative;
  z-index: 1;
}

.main-slider--small .main-slider__content {
  padding: 32px 54px;
}

.main-slider__video-action {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.main-slider__video-action:before {
  position: absolute;
  content: "";
  width: 96px;
  height: 96px;
  top: 50%;
  left: 71%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(22, 22, 22, 0.7);
  transition: background-color 0.25s;
}

.main-slider__video-action:hover:before {
  background-color: rgba(22, 22, 22, 0.9);
}

.main-slider__video-action:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #ffffff;
  top: 50%;
  left: calc(71% + 3px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.main-slider__title {
  color: #2A2A2A;
  max-width: 508px;
}

.main-slider__title--big {
  font-size: 42px;
  line-height: 50px;
}

.main-slider__title--short {
  max-width: 428px;
}

.main-slider--small .main-slider__title {
  overflow: hidden;
}

.main-slider--small .main-slider__text {
  max-height: 66px;
  overflow: hidden;
}

.main-slider__text {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  margin-top: 35px;
  max-width: 432px;
}

.main-slider--small .main-slider__text {
  font-size: 14px;
  line-height: 22px;
  margin-top: 8px;
}

.main-slider-arrow {
  display: block;
  padding: 0;
  position: absolute;
  bottom: 52px;
  left: auto;
  width: 48px;
  height: 48px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.75);
}

.main-slider-arrow:hover:before,
.main-slider-arrow:hover:after {
  border-color: #eb2127;
}

.main-slider--small .main-slider-arrow {
  width: 36px;
  height: 36px;
  bottom: 32px;
}

.main-slider-arrow:after {
  position: absolute;
  display: block;
  content: "";
  top: 17px;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid #2A2A2A;
  border-bottom: 1.5px solid #2A2A2A;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  transition: border-color 0.25s;
}

.main-slider--small .main-slider-arrow:after {
  width: 8px;
  height: 8px;
  top: 12px;
}

.main-slider-arrow--prev {
  left: auto;
  right: 105px;
}

.main-slider-arrow--prev-left {
  left: 24px;
  right: auto;
  bottom: 98px;
}

.main-slider--small .main-slider-arrow--prev {
  right: 71px;
}

.main-slider-arrow--prev:after {
  left: 21px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-slider--small .main-slider-arrow--prev:after {
  left: 14px;
}

.main-slider-arrow--next {
  right: 52px;
}

.main-slider-arrow--next-left {
  left: 77px;
  right: auto;
  bottom: 98px;
}

.main-slider--small .main-slider-arrow--next {
  right: 32px;
}

.main-slider-arrow--next:after {
  left: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.main-slider--small .main-slider-arrow--next:after {
  left: 10px;
}

.main-slider-arrow--small {
  width: 36px;
  height: 36px;
  left: 24px;
  bottom: 24px;
}

.main-slider-arrow--small.main-slider-arrow--next {
  left: 68px;
}

.main-slider-arrow--small:after {
  top: 14px;
}

.main-slider-arrow--small.main-slider-arrow--prev::after {
  left: 14px;
}

.main-slider-arrow--small.main-slider-arrow--next::after {
  left: 11px;
}

.main-slider__counter {
  font-size: 48px;
  line-height: 48px;
  color: #7F7F7F;
}

.main-slider__counter-caption {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
}

@media (max-width: 1239px) {
  .main-slider__text {
    max-width: 300px;
  }

  .main-slider__title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 999px) {
  .main-slider {
    margin-top: 0;
  }

  .main-slider--small .main-slider__content {
    padding: 20px 24px 32px;
  }

  .main-slider--mb40 {
    margin-bottom: 16px;
  }

  .main-slider__container {
    padding: 0;
  }

  .main-slider__slider.js-main-slider:not(.slick-initialized) {
    height: 305px;
  }

  .main-slider__slide {
    height: auto;
    min-height: 200px;
  }

  .main-slider--small .main-slider__slide {
    min-height: 0;
    height: auto;
  }

  .main-slider__action {
    margin-top: 20px;
  }

  .main-slider__slider {
    border-radius: 6px;
  }

  .main-slider__slide:after {
    display: block;
  }

  .main-slider__slide--no-gradient::after {
    display: none;
  }

  .main-slider__title {
    color: #ffffff !important;
  }

  .main-slider__title,
.main-slider__title--big {
    font-size: 26px;
    line-height: 34px;
  }

  .main-slider__content {
    padding: 20px 24px 92px;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }

  .main-slider-arrow {
    width: 36px;
    height: 36px;
    bottom: 32px;
  }

  .main-slider-arrow:after {
    top: 11px;
  }

  .main-slider-arrow--prev:after {
    left: 13px;
  }

  .main-slider-arrow--next {
    right: 32px;
  }

  .main-slider-arrow--next:after {
    left: 9px;
  }

  .main-slider-arrow--prev {
    left: 24px;
    right: auto;
  }

  .main-slider-arrow--next {
    left: 64px;
    right: auto;
  }

  .main-slider__slider {
    border-radius: 0;
  }

  .main-slider--banner .main-slider__title {
    font-size: 24px;
    line-height: 34px;
  }

  .main-slider--banner .main-slider__content {
    padding-bottom: 40px;
  }

  .main-slider__content--alt-mob {
    padding: 20px 20px 20px;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }

  .main-slider--alt-mob .main-slider__slide,
.main-slider--alt-mob .main-slider__slider.js-main-slider:not(.slick-initialized) {
    height: auto;
  }

  .main-slider__slide-image-wrap.main-slider__slide-image-wrap.hidden-sm {
    display: none;
  }

  .main-slider__slide-image-wrap.main-slider__slide-image-wrap.visible-sm {
    display: block;
  }

  .main-slider__slide-image.main-slider__slide-image {
    position: static;
    height: auto;
    object-fit: initial;
  }

  .main-slider__content {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .main-slider__text {
    color: #ffffff !important;
  }

  .main-slider--small .main-slider-arrow {
    display: none !important;
  }
}
@media (max-width: 759px) {
  .main-slider__slide-image-wrap {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100%;
  }

  .main-slider__text {
    display: none;
  }
}
@media (max-width: 639px) {
  .main-slider__slide-image.main-slider__slide-image {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: auto;
    height: 100%;
  }

  .main-slider--small .main-slider__slide-image.main-slider__slide-image {
    width: 100%;
    height: 100%;
  }

  .main-slider--small .main-slider-arrow {
    display: none !important;
  }
}
.video-slider {
  margin-top: 54px;
}

.video-slider__slider {
  border-radius: 6px;
  overflow: hidden;
}

.video-slider__slider:not(.slick-initialized) {
  height: 480px;
  overflow: hidden;
}

.video-slider__slide {
  height: 480px;
  position: relative;
}

.video-slider__slide-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eb2127;
}

.video-slider__slide-image-wrap.hidden {
  display: none;
}

.video-slider__slide:after {
  display: none;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.8;
  z-index: 0;
}

.video-slider__content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 52px;
  position: relative;
  z-index: 1;
}

.video-slider__video-action {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-slider__video-action:before {
  position: absolute;
  content: "";
  width: 96px;
  height: 96px;
  top: 50%;
  left: 71%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(22, 22, 22, 0.7);
  transition: background-color 0.25s;
}

.video-slider__video-action:hover:before {
  background-color: rgba(22, 22, 22, 0.9);
}

.video-slider__video-action:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #ffffff;
  top: 50%;
  left: calc(71% + 3px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-slider__title {
  font-size: 42px;
  line-height: 50px;
  color: #2A2A2A;
  max-width: 508px;
}

.video-slider--narrow .video-slider__title {
  max-width: 460px;
}

.video-slider__text {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  margin-top: 35px;
  max-width: 432px;
}

.video-slider--narrow .video-slider__text {
  max-width: 320px;
}

.video-slider .main-slider-arrow {
  display: block;
  padding: 0;
  position: absolute;
  bottom: 52px;
  left: auto;
  width: 48px;
  height: 48px;
  z-index: 1;
}

.video-slider .main-slider-arrow:after {
  position: absolute;
  display: block;
  content: "";
  top: 19px;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid #2A2A2A;
  border-bottom: 1.5px solid #2A2A2A;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.video-slider .main-slider-arrow--prev {
  left: auto;
  right: 105px;
}

.video-slider .main-slider-arrow--prev:after {
  left: 21px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.video-slider .main-slider-arrow--next {
  right: 52px;
}

.video-slider .main-slider-arrow--next:after {
  left: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media (max-width: 1239px) {
  .video-slider__title {
    font-size: 36px;
    line-height: 44px;
  }

  .video-slider__text {
    max-width: 300px;
  }
}
@media (max-width: 999px) {
  .video-slider__slide {
    height: auto;
  }

  .video-slider__title {
    font-size: 26px;
    line-height: 34px;
  }

  .video-slider__content {
    padding: 20px 16px 32px;
    background-color: #eb2127;
  }

  .video-slider__text {
    display: none;
  }

  .video-slider__action {
    margin-top: 20px;
  }

  .video-slider__slide-image {
    position: static;
    height: 235px;
  }

  .video-slider__slider:not(.slick-initialized) {
    height: auto;
  }

  .video-slider__video-action {
    top: 100%;
    bottom: -100%;
    height: 235px;
  }

  .video-slider__video-action:before {
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .video-slider__video-action:after {
    left: 50.1%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 46.6%;
    border-width: 8px 0 8px 15px;
  }

  .video-slider__slide-image-wrap.hidden-sm {
    display: none;
  }

  .video-slider__slide-image-wrap.visible-sm {
    display: block;
  }
}
@media (max-width: 759px) {
  .video-slider__title {
    color: #ffffff;
  }
}
.features__row {
  margin: 0;
  width: 100%;
}

.features__col {
  padding: 0;
}

.features__item {
  position: relative;
  background-color: #ffffff;
  padding: 24px;
  border-right: 1px solid #ffffff;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -webkit-flex-direction: column;
          flex-direction: column;
  box-shadow: 0 0 0 0 transparent;
  z-index: 0;
  transition: box-shadow 0.25s, z-index 0.25s;
}

.no-touch a.features__item:hover {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
  z-index: 5;
}

.features__item:last-child {
  border-right: 1px solid #ffffff;
}

.features__image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.features__title {
  font-size: 20px;
  line-height: 28px;
  margin-top: 13px;
  color: #2A2A2A;
}

.features__text {
  font-size: 13px;
  line-height: 20px;
  margin-top: 12px;
  color: #7F7F7F;
  max-width: 310px;
}

@media (max-width: 1239px) {
  .features__col {
    border-bottom: 1px solid #F6F6F6;
  }
}
@media (max-width: 999px) {
  .features__text {
    display: none;
  }

  .features__item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: row;
            flex-direction: row;
    padding: 8px 16px;
  }

  .features__image {
    display: block;
    width: 40px;
    height: 40px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 12px;
  }

  .features__title {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }

  .features__action {
    margin-left: auto;
  }

  .favorites .product-grid-list .product-grid__list-item:first-child .product-list-item {
    border-top: 0 !important;
  }
}
.features-slider .slick-list {
  margin: -15px -12px;
  padding: 15px 0;
}

.features-slider .slick-track {
  -webkit-align-items: stretch;
          align-items: stretch;
}

.features-slider__slide {
  padding: 0 12px;
}

.features-slider--banner {
  padding-bottom: 44px;
  padding-top: 44px;
}

.features-slider--banner .features-slider__slider {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -24px -12px 0;
}

.features-slider--banner .features-slider__slide {
  width: 20%;
  margin-top: 24px;
}

.features-slider__item {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  height: 100%;
  z-index: 0;
  transition: box-shadow 0.25s, z-index 0.25s;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
}

.no-touch a.features-slider__item:hover {
  z-index: 5;
}

.features-slider__image-wrap {
  max-height: 275px;
  overflow: hidden;
}

.features-slider__image {
  display: block;
  width: 100%;
  max-height: 275px;
  object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
}

.features-slider__content {
  padding: 24px;
}

.features-slider__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #2A2A2A;
}

.small-slider-arrow {
  position: absolute;
  padding: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #FFFFFF30;
  box-shadow: 0 3px 8px rgba(42, 42, 42, 0.16);
  border-radius: 16px;
  z-index: 2;
  transition: background-color 0.25s;
}

.small-slider-arrow.disabled {
  display: none;
}

.small-slider-arrow:after {
  position: absolute;
  display: block;
  content: "";
  top: 17px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #2A2A2A;
  border-bottom: 2px solid #2A2A2A;
  transition: border 0.25s;
}

.small-slider-arrow:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  background-color: #2A2A2A;
  transition: background-color 0.25s;
}

.small-slider-arrow:hover:after {
  border-left: 2px solid #eb2127;
  border-bottom: 2px solid #eb2127;
}

.small-slider-arrow:hover:before {
  background-color: #eb2127;
}

.small-slider-arrow--prev {
  left: -24px;
}

.small-slider-arrow--prev:after {
  left: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.small-slider-arrow--next {
  left: auto;
  right: -24px;
}

.small-slider-arrow--next:after {
  left: 19px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.features-slider__text {
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
  margin-top: 6px;
}

.features-slider__caption {
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
  margin-top: 6px;
  font-weight: 600;
}

@media (max-width: 999px) {
  .features-slider__title {
    font-size: 14px;
    line-height: 20px;
  }

  .features-slider__content {
    padding: 12px 16px;
  }

  .features-slider--banner {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}
@media (max-width: 759px) {
  .features-slider__slider {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .features-slider__slider::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .features-slider--banner .features-slider__slide {
    width: auto;
  }

  .features-slider__image-wrap {
    height: 258px;
  }

  .features-slider__image {
    height: 258px;
    width: auto;
  }

  .features-slider--banner .features-slider__slider {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
@media (max-width: 479px) {
  .features-slider .slick-list {
    padding-right: 50px;
  }

  .features-slider__slide {
    padding: 0 5px;
  }

  .features-slider .slick-list {
    margin: 0 -5px;
  }

  .features-slider--banner .features-slider__slider {
    margin: -10px -5px 0;
  }

  .features-slider--banner .features-slider__slide {
    margin-top: 10px;
  }
}
.reviews-banner {
  margin-top: 32px;
}

.reviews-banner__wrap {
  display: -webkit-flex;
  display: flex;
  background-color: #ffffff;
}

.reviews-banner__left {
  border-right: 1px solid #ffffff;
  padding: 24px;
  width: 290px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.reviews-banner__header {
  display: -webkit-flex;
  display: flex;
}

.reviews-banner__star {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin-right: 24px;
  color: #eb2127;
}

.reviews-banner__num {
  font-size: 42px;
  line-height: 50px;
  font-weight: 600;
}

.reviews-banner__text {
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
}

.reviews-banner__rating-text {
  font-size: 16px;
  line-height: 24px;
  color: #959696;
  margin-left: 24px;
  max-width: 274px;
}

.reviews-banner__caption {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 16px;
}

.reviews-banner__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
}

.reviews-banner__right--column {
  -webkit-flex-direction: column;
          flex-direction: column;
}

.reviews-banner__review-wrap {
  padding: 24px;
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
}

.reviews-banner__review-wrap:first-child {
  border-right: 1px solid #ffffff;
}

.reviews-banner__review-wrap--alt {
  border-right: 0;
  width: 100%;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.reviews-banner__review-wrap--alt:first-child {
  margin-top: 0;
}

.reviews-banner__review-wrap--alt .review__text {
  max-width: 100%;
}

.reviews-banner__action {
  margin-top: 20px;
}

.reviews-banner__review-wrap--alt .review {
  padding-top: 24px;
}

.reviews-banner__review-wrap--alt:not(:first-child) .review,
.reviews-banner__spoiler .reviews-banner__review-wrap--alt .review {
  border-top: 1px solid #ffffff;
}

.review-banner__link-more-wrap {
  padding: 24px 0 60px;
  border-top: 1px solid #ffffff;
  margin: 0 24px 0;
}

.reviews-banner__spoiler {
  display: none;
}

@media (max-width: 999px) {
  .reviews-banner {
    margin-top: 14px;
  }

  .reviews-banner__star {
    width: 43px;
    height: 41px;
    margin-right: 12px;
  }

  .reviews-banner__num {
    font-size: 36px;
    line-height: 44px;
  }

  .reviews-banner__text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .reviews-banner__left {
    padding: 26px 16px;
    width: 100%;
  }

  .reviews-banner__wrap {
    display: block;
  }

  .reviews-banner__right {
    display: block;
    padding-bottom: 40px;
  }

  .review-banner__link-more-wrap {
    padding-bottom: 0;
  }

  .reviews-banner__review-wrap {
    width: 100%;
  }
}
.review__header {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.text-guide .review__avatar, .review__avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  object-fit: cover;
}

.review__info {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.review__name {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
}

.review__rating-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 6px;
}

.review__rating {
  margin-right: 12px;
  line-height: 0;
}

.review__date {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.review__text {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  max-width: 480px;
  margin-top: 20px;
}

.review__text--wide {
  max-width: 100%;
}

.text-guide .review__images, .review__images {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 16px;
}

.text-guide .review__image, .review__image {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  height: 80px;
  margin: 0 8px 0 0;
  object-fit: cover;
  border-radius: 6px;
  overflow: hidden;
}

.review__answer-wrap {
  margin-top: 24px;
  display: -webkit-flex;
  display: flex;
}

.review__answer {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-top: 8px;
}

@media (max-width: 999px) {
  .text-guide .review__avatar, .review__avatar {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .review__text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 15px;
    max-width: 100%;
  }

  .review__rating-wrap {
    display: block;
  }

  .review__rating {
    margin-right: 0;
  }

  .review__date {
    margin-top: 10px;
  }
}
.section-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
}

.section-caption {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-left: 6px;
  font-weight: 400;
}

.section-link {
  font-size: 15px;
  line-height: 23px;
  color: #7B7B7B;
  border-bottom: 0;
}

.no-touch a.section-link:hover {
  color: #eb2127;
  border-bottom: 0;
}

.section-header__main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.section-header__main .link-back {
  margin-bottom: 24px;
}

.section-header__aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.section-header__aside-caption {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
}

@media (max-width: 999px) {
  .section-header__aside {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.news-line {
  margin-top: 32px;
}

.news-line__wrap {
  display: -webkit-flex;
  display: flex;
}

.news-line__grid {
  width: 60%;
  -webkit-flex: 0 0 60%;
          flex: 0 0 60%;
}

.news-line__banner-wrap {
  width: 40%;
  -webkit-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-left: 24px;
}

.news-line__row {
  margin: 0 -12px;
  width: calc(100% + 24px);
  display: -webkit-flex;
  display: flex;
  height: 100%;
}

.news-line__col {
  padding: 0 12px;
  width: 33.3333%;
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  display: -webkit-flex;
  display: flex;
}

.news-line__item {
  height: 100%;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 1239px) {
  .news-line__grid {
    width: 70%;
    -webkit-flex: 0 0 70%;
            flex: 0 0 70%;
    margin: 0 -5px;
  }

  .news-line__banner-wrap {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 999px) {
  .news-line {
    overflow: auto;
  }

  .news-line__wrap {
    min-width: 930px;
  }

  .news-line__grid {
    margin: 0 -5px;
  }

  .news-line__banner-wrap {
    padding-left: 10px;
  }

  .news-line__row {
    margin: 0 -5px;
    width: calc(100% + 10px);
  }

  .news-line__col {
    padding: 0 5px;
  }
}
.card-link {
  display: block;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

.card-link__image-wrap {
  overflow: hidden;
}

.card-link__image {
  display: block;
  max-height: 150px;
  width: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
}

.card-link:hover .card-link__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.card-link__main {
  padding: 16px 24px 20px;
}

.card-link__date {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.card-link__text {
  font-size: 14px;
  line-height: 20px;
  color: #2A2A2A;
  font-weight: 600;
  margin-top: 8px;
  max-height: 80px;
  overflow: hidden;
}

@media (max-width: 999px) {
  .card-link__main {
    padding: 16px;
  }

  .card-link__text {
    margin-top: 6px;
    max-height: 60px;
  }
}
.location-prompt--inline {
  display: inline;
}

.location-promp__header {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
}

.location-prompt__action {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.location-prompt__action-btn {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.location-prompt__action-link {
  margin-left: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7F7F7F;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
}

.no-touch .location-prompt__action-link:hover {
  color: #2A2A2A;
}

.location-prompt__action {
  margin-top: 14px;
}

.location-prompt__inline-btn {
  color: #eb2127;
  position: relative;
  padding-right: 20px;
  display: inline;
  cursor: pointer;
}

.location-prompt--small .location-prompt__inline-btn {
  padding-right: 18px;
}

.location-prompt__inline-btn:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 14px;
  right: 0;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid #eb2127;
  border-left: 1.5px solid #eb2127;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

h4 .location-prompt__inline-btn::after,
.h4 .location-prompt__inline-btn::after {
  bottom: 10px;
}

.location-prompt--small .location-prompt__inline-btn:after {
  top: 10px;
  bottom: 9px;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #eb2127;
  border-left: 1px solid #eb2127;
}

@media (max-width: 1239px) {
  .location-prompt__inline-btn:after {
    top: 10px;
    right: 3px;
  }
}
@media (max-width: 999px) {
  .location-prompt--small {
    padding: 0;
  }

  .location-promp__header {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 759px) {
  .location-prompt--inline {
    display: block;
    margin-top: 16px;
    margin-left: 0;
  }
}
.geolocation-search {
  position: relative;
}

.geolocation-search .field__int-label {
  padding-left: 45px;
}

.field--w-placeholder:not(.field--placeholder-state) .geolocation-search .field__int-label {
  padding-left: 45px;
}

.geolocation-search__btn {
  position: absolute;
  top: 6px;
  left: 4px;
  color: #2A2A2A;
  width: 36px;
  height: 36px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  z-index: 1;
}

.geolocation-search__icon {
  width: 17px;
  height: 17px;
}

.geolocation-search .text-input {
  padding-left: 45px;
}

.geolocation-search__label {
  box-shadow: 0px 0px 10px rgba(21, 22, 22, 0.1);
}

@media (max-width: 999px) {
  .geolocation-search__btn {
    top: 5px;
  }
}
.location-select__text {
  margin-top: 8px;
  margin-bottom: 26px;
}

.location-select__suggestions-grid {
  display: -webkit-inline-flex;
  display: inline-flex;
  width: calc(100% + 16px);
  margin: 12px -8px -3px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.location-select__suggestions-cell {
  width: 50%;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 8px;
  margin-top: 18px;
}

.location-select__suggestions {
  position: relative;
}

.location-select__suggestion {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s;
}

.no-touch .location-select__suggestion:hover,
.location-select__suggestion:focus {
  color: #eb2127;
}

.location-select__message {
  font-size: 16px;
  line-height: 24px;
  margin-top: 30px;
}

.location-select__input {
  position: relative;
  z-index: 0;
}

@media (max-width: 999px) {
  .modal .location-select {
    margin: -20px -20px 0;
  }

  .location-select__title {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    font-size: 16px;
    line-height: 22px;
    padding: 0 15px;
    height: 64px;
    box-shadow: 0px 3px 6px rgba(21, 22, 22, 0.1);
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-align-items: center;
            align-items: center;
    background-color: #ffffff;
    z-index: 10;
  }

  .location-select__text {
    font-size: 13px;
    line-height: 20px;
    color: #7F7F7F;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
    margin-bottom: 24px;
  }

  .location-select__input {
    padding-left: 15px;
    padding-right: 15px;
  }

  .location-select__suggestions {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .location-select__suggestions-grid {
    padding: 0;
    margin: 0 -15px;
    width: calc(100% + 15px);
  }

  .location-select__suggestions-cell {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .location-select__suggestion {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding: 13px 30px;
    border-bottom: 1px solid #EDEDED;
    text-align: left;
  }

  .location-select__suggestion:first-child {
    border-top: 1px solid #EDEDED;
  }
}
.mob-header {
  display: none;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 110;
}

.mob-header__wrap {
  height: 64px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  padding: 12px 8px;
  box-shadow: 0 3px 6px rgba(21, 22, 22, 0.1);
  background-color: #ffffff;
  z-index: 2;
}

body:has(.mob-header .hamburger.open) .mob-header__search-menu-wrap {
  display: block;
}

body:has(.mob-header .hamburger.open) .mob-header__wrap,
body:has(.mob-header .hamburger.open) .mob-header {
  height: 127px;
}

.mob-header__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
  margin-left: 15px;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.mob-header__search-menu-wrap {
  padding: 10px 8px;
  width: 100%;
  display: none;
}

.mob-header__wrap-basket-small {
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.mob-header__phone .svg-icon {
  width: 22px;
  height: 22px;
}

.mob-header__phone {
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}

.mob-header-falorites {
  display: none;
}

@media (max-width: 999px) {
  .mob-header {
    display: block;
  }

  .mob-header .search-menu__wrap {
    margin: 0;
  }

  body:has(.catalog) .mob-header__search-menu-wrap {
    display: block;
    margin-top: 11px;
  }

  body:has(.catalog) .mob-header,
body:has(.catalog) .mob-header__wrap {
    height: 70px;
  }

  body:has(.favorites) .mob-header__wrap {
    height: 70px;
  }

  body:has(.favorites) .mob-header__wrap .mob-header__search-menu-wrap {
    display: none;
  }

  .mob-header-falorites {
    display: block;
  }

  .mob-header__wrap-basket-small {
    margin-left: 8px;
  }

  .mob-header-falorites.tab-labels {
    position: relative;
  }

  .mob-header-falorites.tab-labels::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 2px;
    z-index: 1;
    background-color: #DBDBDB;
  }

  .mob-header-falorites.tab-labels a {
    border-radius: 0;
    background: transparent;
  }

  .mob-header-falorites.tab-labels .main-tabs__text {
    text-transform: uppercase;
  }

  .mob-header-falorites .main-tabs__border {
    background-color: transparent;
    border-bottom: 3px solid #E92530;
    box-shadow: none;
    border-radius: 0;
    z-index: 3;
  }

  .mob-header-falorites.tab-labels .main-tabs__text {
    color: #000000;
    font-family: "Open Sans", Roboto, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 15px;
  }

  .mob-header-falorites .main-tabs__label:hover {
    box-shadow: none !important;
  }

  .mob-header-falorites.tab-labels .main-tabs__text {
    color: #000000;
    font-family: "Open Sans", Roboto, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 15px;
  }

  .mob-header-falorites .main-tabs__label:hover .main-tabs__text {
    color: #eb2127 !important;
  }

  .mob-header-falorites .open.main-tabs__label .main-tabs__text {
    color: #000000 !important;
  }

  .mob-header-falorites.tab-labels {
    margin-left: 15px;
    margin-top: 10px;
    box-shadow: none !important;
    background-color: transparent !important;
  }

  .mob-header__right {
    margin-left: 0;
  }

  .mob-logo {
    width: 35px;
    height: 35px;
  }
}
.hamburger {
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 2px;
}

.hamburger__icon {
  width: 24px;
  height: 1.5px;
  position: relative;
  background-color: #2A2A2A;
  border-radius: 0.75px;
}

.hamburger__icon:before,
.hamburger__icon:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1.5px;
  background-color: #2A2A2A;
  border-radius: 0.75px;
  transition: all 0.25s;
}

.hamburger__icon:before {
  top: -8px;
}

.hamburger__icon:after {
  top: 8px;
}

.hamburger.open .hamburger__icon {
  background-color: transparent;
}

.hamburger.open .hamburger__icon:before,
.hamburger.open .hamburger__icon:after {
  width: 110%;
  top: 0;
  left: 50%;
}

.hamburger.open .hamburger__icon:before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.hamburger.open .hamburger__icon:after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.hamburger-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 65px;
  background-color: #ffffff;
  z-index: 1;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  height: calc(100vh - 64px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 20px;
}

.ios .hamburger-menu {
  padding-bottom: 80px;
}

.hamburger-menu .location-prompt {
  padding: 0;
}

.hamburger-menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 100%;
}

.hamburger-menu__item {
  width: 100%;
  min-height: 48px;
}

.hamburger-menu__item--main {
  -webkit-flex: 1 1 20%;
          flex: 1 1 20%;
  display: -webkit-flex;
  display: flex;
}

.hamburger-menu__simple-item {
  width: 100%;
}

.hamburger-menu__link-simple {
  color: #7F7F7F;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  padding: 16px 16px 0 16px;
  width: 100%;
  display: block;
}

.hamburger-menu__simple-item:last-child {
  margin-bottom: 40px;
}

.hamburger-menu__list-wrap {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  padding: 0 16px 0 16px;
  row-gap: 8px;
  margin-bottom: 30px;
}

.hamburger-menu__svg-icon {
  width: 16px;
  height: 16px;
  color: #2A2A2A;
}

.hamburger-menu__comparison-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 14px 15px;
  gap: 4px;
  width: 100%;
}

.hamburger-menu__link-text {
  color: #2A2A2A;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.hamburger-menu__arrow-right {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-left: 1.5px solid #7F7F7F;
  border-bottom: 1.5px solid #7F7F7F;
  width: 8px;
  height: 8px;
  transition: border 0.15s;
  margin: 0 22px 0 auto;
}

.hamburger-menu__img {
  height: 60px;
  min-width: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  background: #ffffff;
  border-radius: 7px;
  overflow: hidden;
}

.hamburger-menu__img img {
  object-fit: contain;
}

.hamburger-menu__svg {
  max-height: none;
  max-width: 60px;
  width: 60px;
  height: auto;
}

.hamburger-menu__sub-list .hamburger-menu__link-mobile-text {
  max-width: none;
  text-align: start;
}

.hamburger-menu__item--bottom {
  border-bottom: 1px solid #EDEDED;
  border-top: 1px solid #EDEDED;
}

.hamburger-menu__item-wrap {
  padding: 0 15px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin-bottom: 12px;
}

.hamburger-menu__footer-wrap .cell-contact__contact {
  margin-bottom: 5px;
}

.hamburger-menu__footer-wrap {
  padding: 0 16px;
}

.hamburger-menu__footer-media {
  padding-top: 20px;
  padding-left: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  gap: 10px;
}

.hamburger-menu__item-body {
  display: none;
}

.hamburger-menu__item .main-menu__sub-link-icon {
  color: #000;
}

.hamburger-menu__item.open .main-menu__sub-link-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.hamburger-menu__item-drop {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 0px 15px;
}

.hamburger-menu__item-link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #7F7F7F;
  margin-bottom: 12px;
}

.hamburger-menu__item-link:last-child {
  margin-bottom: 20px;
}

.hamburger-menu__item-drop .hamburger-menu__link {
  padding: 0;
}

.hamburger-menu__item-drop .main-menu__sub-link-icon {
  width: 14px;
  height: 14px;
}

.hamburger-menu__item--alt {
  min-height: 1px;
  border-bottom: 0;
}

.hamburger-menu__link--margin {
  margin-top: 12px;
}

.hamburger-menu__item--gray {
  background-color: #ffffff;
}

.hamburger-menu__link {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  min-height: 48px;
  -webkit-align-items: center;
          align-items: center;
  padding: 12px 30px 12px 15px;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #2A2A2A;
  cursor: pointer;
}

.hamburger-menu__link--big {
  border-radius: 10px;
  background: #F1F3F6;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  color: #2A2A2A;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 107.8%;
  letter-spacing: 0.24px;
  padding: 0 10px 10px 10px;
  height: 100%;
}

.hamburger-menu__link--alt {
  padding: 7px 15px;
  min-height: 1px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #7F7F7F;
}

.hamburger-menu__link--strong {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
}

.hamburger-menu__item:has(.hamburger-menu__link--strong) {
  margin-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}

.hamburger-menu__link--strong-alt {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #F4A603;
}

.hamburger-menu__link--main {
  color: #eb2127;
}

.hamburger-menu__item--has-sunmenu > .hamburger-menu__link:after {
  content: "";
  position: absolute;
  top: 19px;
  right: 18px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-left: 1.5px solid #959696;
  border-bottom: 1.5px solid #959696;
  width: 8px;
  height: 8px;
  transition: border 0.15s;
}

.hamburger-menu__list-wrap .hamburger-menu__item--has-sunmenu > .hamburger-menu__link:after {
  display: none;
}

.hamburger-menu__link-icon {
  margin-right: 6px;
  width: 16px;
}

.hamburger-menu__sub-list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  background-color: #ffffff;
  height: 200%;
  z-index: 1;
  overflow: hidden;
}

.hamburger-menu__link.open + .hamburger-menu__sub-list {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.hamburger-menu__item-back {
  display: block;
  min-height: 48px;
  background-color: #ffffff;
  width: 100%;
}

.hamburger-menu__btn-back {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  min-height: 48px;
  -webkit-align-items: center;
          align-items: center;
  color: #7F7F7F;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 30px 12px 15px;
}

.hamburger-menu__btn-back .svg-icon--arrow-back {
  margin-right: 12px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.hamburger-menu__submenu-title {
  display: block;
  text-decoration: none;
  color: #EB2127;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  padding: 10px 28px 16px 28px;
}

.hamburger-menu__btn-back-text {
  text-align: left;
  color: #2A2A2A;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.28px;
  cursor: pointer;
}

.hamburger-submenu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.hamburger-submenu__item,
.hamburger-submenu .hamburger-submenu__item {
  width: 100% !important;
}

.hamburger-submenu .hamburger-menu__link--big,
.hamburger-submenu .hamburger-submenu__item .hamburger-menu__link--big {
  -webkit-flex-direction: row !important;
          flex-direction: row !important;
  gap: 12px !important;
  -webkit-justify-content: left !important;
          justify-content: left !important;
}

.hamburger-submenu .hamburger-menu__img,
.hamburger-submenu .hamburger-submenu__item .hamburger-menu__img {
  max-height: 60px;
  max-width: 60px;
  width: 60px;
  height: auto;
}

.hamburger-submenu .hamburger-menu__link--big {
  padding: 4px 17px 4px 12px;
  font-size: 14px;
}

.hamburger-submenu__item.hamburger-menu__simple-item {
  height: 68px;
  padding: 4px;
  border-radius: 10px;
  background-color: #F1F3F6;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.hamburger-submenu__item.hamburger-menu__simple-item .hamburger-menu__link-simple {
  gap: 12px;
  -webkit-justify-content: left;
          justify-content: left;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  color: #2A2A2A;
}

.hamburger-submenu__item.hamburger-menu__simple-item .hamburger-menu__img {
  max-height: none;
  max-width: 60px;
  width: 60px;
  height: auto;
}

.hamburger-menu__dropdown-body {
  background-color: #ffffff;
  position: absolute;
  top: -64px;
  left: 0;
  right: auto;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: 0.25s;
  width: 100vw;
  height: 100vw;
  overflow: hidden;
  border-radius: 6px;
}

.hamburger-menu__dropdown.open .hamburger-menu__dropdown-body {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger-menu__social .cell-contact__contact {
  margin: 0;
}

.hamburger-menu__social .cell-contact__phone {
  width: 48px;
  height: 48px;
  margin: 0 3px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}

.hamburger-menu__social .svg-icon {
  width: 34px;
  height: 34px;
}

.hamburger-menu__social .svg-icon--skype {
  width: 30px;
  height: 30px;
}

.hamburger-menu__social {
  padding: 0 15px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 20px;
}

.hamburger-menu__contacts .cell-contact__contact {
  margin-bottom: 15px;
}

.hamburger-menu__contacts {
  margin-top: 20px;
  padding: 0 15px;
}

.hamburger-menu__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

div.hamburger-menu__item.hamburger-menu__item--has-sunmenu {
  width: 50%;
}

.hamburger-menu__list-wrap div.hamburger-menu__item.hamburger-menu__item--has-sunmenu {
  width: auto;
}

div.hamburger-menu__item.hamburger-menu__item--has-sunmenu .hamburger-menu__link.js-hamburger-menu__link,
.hamburger-menu__link--big {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  padding: 4px;
  height: 68px;
}

.hamburger-menu__img--link {
  max-height: 95px;
}

.mob-logo {
  width: 35px;
  height: 35px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 10px;
  margin-top: 7px;
}

.mob-logo__img,
.mob-logo img {
  display: block;
  object-fit: contain;
  height: 100%;
}

.search-btn {
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.shopping-cart-btn {
  width: 48px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
}

.shopping-cart-btn__counter {
  border-radius: 10px;
  background-color: #7F7F7F;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  position: absolute;
  top: 4px;
  right: 2px;
  height: 20px;
  min-width: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 2px;
}

@media (max-width: 999px) {
  .shopping-cart-btn,
.no-touch .shopping-cart-btn:hover {
    color: #2A2A2A;
  }
}
.breadcrumbs {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 22px;
}

.breadcrumbs__list {
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

.breadcrumbs__item {
  position: relative;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #787878;
  font-size: 12px;
  line-height: 18px;
  padding: 3px 8px;
  background: #f2f2f2;
  border-radius: 4px;
}

.breadcrumbs__link {
  color: #959696;
  font-size: 13px;
  line-height: 18px;
}

.breadcrumbs__item:after {
  content: "";
  position: absolute;
  border-left: 2px solid #959696;
  border-bottom: 2px solid #959696;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  right: -10px;
  top: 8px;
}

.breadcrumbs__item:last-child:after {
  display: none;
}

.no-touch a.breadcrumbs__link:hover {
  color: #eb2127;
}

@media (max-width: 999px) {
  .breadcrumbs {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .breadcrumbs__item {
    display: none;
  }

  .breadcrumbs__item:after {
    display: none;
  }

  .breadcrumbs__item:nth-last-child(2) {
    display: block;
    position: relative;
  }

  .breadcrumbs__item:nth-last-child(2):before {
    content: "";
    position: absolute;
    border-left: 2px solid #959696;
    border-bottom: 2px solid #959696;
    display: block;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    left: -10px;
    top: 8px;
  }

  .breadcrumbs__item {
    max-width: 200px;
  }
}
.mob-links {
  display: none;
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
}

.mob-links__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -22px;
}

.mob-links__item {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-top: 22px;
}

.mob-links__link {
  padding-left: 20px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #2A2A2A;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.mob-links__icon-wrap {
  width: 30px;
  height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 8px;
}

.mob-links__icon {
  max-width: 100%;
  max-height: 30px;
  display: block;
  object-fit: contain;
}

.mob-links__svg {
  max-width: 30px;
  max-height: 30px;
}

@media (max-width: 999px) {
  .mob-links {
    display: block;
  }
}
.catalog {
  margin-bottom: 80px;
}

.catalog--private-orders {
  margin: -40px -52px -52px;
}

.text-guide .catalog {
  margin-bottom: 0;
}

.catalog--small-products {
  margin-bottom: 0;
}

.catalog__container {
  position: relative;
}

.catalog__header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.catalog__header-left {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-align-items: baseline;
          align-items: baseline;
}

.catalog__header-right {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.catalog__subtitle {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-left: 12px;
}

.catalog__main {
  margin-top: 22px;
  border-radius: 6px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.catalog__inner-main {
  margin-top: 10px;
}

.catalog__small-links + .catalog__main {
  margin-top: 24px;
}

.catalog__left {
  width: 318px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  border-right: 1px solid #ffffff;
  padding: 0 20px 40px 0;
  z-index: 2;
}

.catalog--no-filter .catalog__left {
  display: none;
}

.catalog__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.catalog--no-filter .catalog__right {
  padding-bottom: 0;
}

.catalog__list-item {
  margin-top: 24px;
}

.catalog__list-link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  padding: 2px 12px;
  border-radius: 6px;
}

.catalog__list-link.active {
  background-color: #EDEDED;
}

.catalog__list-item-level-2 {
  margin-left: 12px;
}

.catalog__list-link-level-2 {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-top: 2px;
  padding: 6px 12px;
  border-radius: 6px;
}

.catalog__list-link-level-2.active {
  background-color: #EDEDED;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #2A2A2A;
}

.catalog__filter-wrap {
  padding: 26px 0 0;
}

.catalog__filter-wrap:first-child {
  padding-top: 0;
}

.catalog__panel {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.catalog__sorting-wrap {
  margin-top: 5px;
  min-height: 31px;
}

.catalog__tabs {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 20px;
}

.catalog__list-status {
  margin-top: 10px;
}

.catalog__products-wrap {
  margin-top: 25px;
}

.catalog__pagination {
  padding: 0 24px;
  margin-top: 20px;
}

.catalog__seotext {
  padding: 0 24px;
  margin-top: 60px;
}

.catalog__series-wrap {
  padding: 24px 24px 0;
}

.catalog__category {
  margin-bottom: 20px;
}

.catalog__category-name {
  display: inline-block;
  color: #2A2A2A;
}

.catalog__series-name {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-left: 6px;
}

.catalog__small-links {
  margin: 0 -12px;
  display: inline-block;
  margin-top: 24px;
}

.catalog__small-links-item {
  padding: 0 12px;
  display: inline-block;
}

.catalog__small-link {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
}

.catalog__inner-wrap {
  position: relative;
  padding: 52px;
}

.catalog__inner-wrap--small-paddings {
  padding: 24px;
}

.catalog__inner-wrap--no-paddings {
  padding: 0;
}

.catalog__inner-products {
  margin-top: 38px;
}

.catalog__page-nav-wrap {
  padding: 0 24px;
}

.catalog__message {
  padding: 72px 24px 50px;
  text-align: center;
  width: 100%;
}

.catalog__message-title {
  text-align: center;
}

.catalog__message-text {
  text-align: center;
  margin-top: 15px;
}

.catalog__message-btn {
  margin-top: 15px;
}

.compare__body {
  position: relative;
}

.catalog__compare {
  margin-top: 25px;
}

.catalog__compare-body {
  border-top: 1px solid #e9e9e9;
  margin-top: 25px;
  padding-top: 24px;
}

.catalog__text {
  background-color: yellow;
  padding: 5px 16px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  border-radius: 6px;
}

@media (max-width: 1239px) {
  .catalog__left {
    width: 250px;
  }
}
@media (max-width: 999px) {
  .catalog {
    margin-bottom: 50px;
  }

  .catalog__header {
    margin-bottom: 15px;
  }

  .catalog--private-orders {
    margin: -24px -15px 50px;
  }

  .text-guide .catalog {
    margin-bottom: 0;
  }

  .catalog__left {
    display: none;
  }

  .catalog__subtitle {
    font-size: 24px;
    line-height: 34px;
  }

  .catalog__subtitle {
    display: none;
  }

  .catalog__main {
    margin-top: 0;
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
  }

  .catalog__main-tabs-wrap {
    min-width: 100%;
    overflow: auto;
  }

  body:has(.catalog) .catalog__main-tabs-wrap {
    position: relative;
    z-index: 3;
    width: 100vw;
  }

  .catalog__panel {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 15px;
  }

  .catalog__tabs {
    margin-left: 0;
  }

  .catalog__list-status {
    margin-top: 15px;
    padding: 0 15px;
  }

  .catalog__sorting-wrap {
    margin-top: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

  .catalog__sorting-wrap:only-child {
    margin-top: 0;
  }

  .catalog__mob-filter {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: visible;
    z-index: 200;
    opacity: 1;
    transition: visibility 0.25s, z-index 0.25s, opacity trs-overlay;
    overflow: auto;
    background-color: #ffffff;
  }

  .catalog__mob-filter-header {
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    width: 100%;
    z-index: 11;
    box-shadow: 0 3px 6px rgba(21, 22, 22, 0.1);
    height: 64px;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
  }

  .catalog__mob-filter-reset {
    width: 47px;
    height: 64px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    cursor: pointer;
  }

  .catalog__mob-filter-reset-icon {
    width: 24px;
    height: 24px;
    color: #959696;
  }

  .catalog__mob-filter-close {
    display: block;
    cursor: pointer;
    transition: 0.15s;
    position: relative;
    width: 47px;
    height: 64px;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .catalog__mob-filter-close:before,
.catalog__mob-filter-close:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 1.5px;
    background-color: #959696;
    top: 50%;
    left: 50%;
    transition: background-color 0.15s;
  }

  .catalog__mob-filter-close:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }

  .catalog__mob-filter-close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }

  .catalog__mob-filter-action {
    position: fixed;
    padding: 16px 15px;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .catalog__mob-filter-action-btn {
    padding: 15px 16px;
  }

  .catalog__pagination {
    padding: 0 15px;
    margin-top: 15px;
  }

  .catalog__seotext {
    margin-top: 32px;
    padding: 0 15px;
  }

  .catalog__series-wrap {
    padding: 15px;
  }

  .catalog__small-links {
    margin: 0 -10px;
    margin-top: 20px;
  }

  .catalog__small-links-item {
    padding: 0 10px;
  }

  .catalog__mob-filter .check-list--row .check-list__item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .catalog__mob-filter .filter__checkrow {
    padding: 0 15px;
    height: 50px;
    -webkit-align-items: center;
            align-items: center;
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }

  .filter__checkrow .check-list__item {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .catalog__mob-filter .filter__checkrow .checkbox-row {
    padding-left: 0;
  }

  .catalog__mob-filter .filter__checkrow .checkbox-row__visual {
    left: auto;
    right: 0;
  }

  .catalog__mob-filter .check-list--row .check-list__grid {
    margin-left: 0;
    margin-right: 0;
  }

  .catalog__inner-wrap {
    padding: 40px 15px 40px;
  }

  .catalog__inner-wrap--no-paddings {
    padding: 0;
  }

  .catalog__inner-products {
    margin-top: 24px;
  }
}
.main-tabs {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 15px;
}

.main-tabs--mt0 {
  margin-top: -15px;
}

.main-tabs--null {
  margin: -12px 0 0;
}

.main-tabs__label {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  margin-top: 12px;
  margin-right: 12px;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  height: 30px;
  padding: 6px 15px;
  font-size: 14px;
  max-width: 100%;
  box-shadow: 0 0 0 1px #D4D4D4 inset;
  border-radius: 6px;
  background: #ffffff;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: none;
  text-align: center;
  outline: none;
  transition: color 0.25s ease-out, box-shadow 0.25s ease-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #959696;
}

.main-tabs__icon {
  max-height: 40px;
  max-width: 40px;
  object-fit: contain;
  margin-right: 8px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.main-tabs__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.main-tabs__border {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  box-shadow: 0 0 0 2px #eb2127 inset;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.25s;
}

.main-tabs__input:checked ~ .main-tabs__border,
.main-tabs__label.open .main-tabs__border {
  opacity: 1;
}

.no-touch .main-tabs__label:hover {
  opacity: 1;
  box-shadow: 0 0 0 1px #eb2127 inset;
}

.main-tabs__input:checked ~ .main-tabs__text,
.main-tabs__label.open,
.no-touch .main-tabs__label:hover {
  color: #eb2127;
}

@media (max-width: 999px) {
  .main-tabs {
    margin-top: 0;
  }

  body:has(.catalog) .main-tabs {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body:has(.catalog) .main-tabs::-webkit-scrollbar {
    display: none;
  }

  .main-tabs--null {
    margin: 0;
  }

  .main-tabs__label {
    font-size: 14px;
    line-height: 20px;
    height: 36px;
    margin-top: 0;
    margin-right: 5px;
    box-shadow: none;
    padding: 10px 14px;
    background: #F3F3F3;
  }

  .main-tabs__label:last-child {
    margin-right: 20px;
  }

  .main-tabs__icon {
    max-width: 28px;
    max-height: 28px;
  }
}
.filter__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2A2A2A;
}

.filter__range-wrap {
  margin-top: 18px;
}

.filter__item {
  margin-top: 28px;
  position: relative;
}

.filter__item:first-child .filter__placeholder {
  margin-top: -22px;
}

.filter__item--select.filter__item--select:first-child {
  margin-top: 28px;
}

.filter__check-list {
  margin-top: 18px;
}

.filter__panel {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1;
  margin: 28px 0 0;
  padding-bottom: 0;
}

.filter__panel-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.filter__panel-title {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.filter__panel-info {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #2A2A2A;
  font-weight: 600;
}

.filter__panel-right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.filter__panel-reset {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #eb2127;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0;
}

.filter__mob-item {
  background-color: #ffffff;
  border-bottom: 1px solid #EDEDED;
  cursor: pointer;
}

.filter__mob-wrap {
  padding-bottom: 100px;
}

.filter__mob-item-dropdown {
  position: relative;
}

.filter__mob-btn-text {
  font-size: 16px;
  line-height: 20px;
  padding: 22px 40px 22px 15px;
  color: #7F7F7F;
}

.filter__mob-btn-text--small {
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 0;
}

.filter__mob-btn-caption {
  font-size: 16px;
  line-height: 22px;
  color: #2A2A2A;
  margin: 0 15px;
}

.filter__mob-btn-captions {
  margin-bottom: 6px;
}

.filter__mob-item-body {
  display: -webkit-flex;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  background: rgba(21, 22, 22, 0.5);
  overflow: hidden;
}

.filter__mob-item-dropdown.open .filter__mob-item-body {
  visibility: visible;
  opacity: 1;
  z-index: 103;
}

.filter__mob-item-dropdown-content {
  width: 100%;
  background-color: #fff;
  overflow: auto;
  position: absolute;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: 0;
  bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: top 0.25s, opacity 0.25s, visibility 0.25s;
}

.filter__mob-item-dropdown.open .filter__mob-item-dropdown-content {
  visibility: visible;
  opacity: 1;
  top: auto;
}

.filter__mob-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 0 0 15px;
}

.filter__filter-btn-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 15px;
}

.filter__mob-filter-close {
  display: block;
  cursor: pointer;
  transition: 0.15s;
  position: relative;
  width: 47px;
  height: 64px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.filter__mob-filter-close:before,
.filter__mob-filter-close:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.5px;
  background-color: #959696;
  top: 50%;
  left: 50%;
  transition: background-color 0.15s;
}

.filter__mob-filter-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.filter__mob-filter-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.filter__currency {
  font-weight: 400;
}

.filter__mob-field-wrap {
  padding: 5px 15px 15px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}

.filter__mob-item-action {
  position: -webkit-sticky;
  position: sticky;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  border-top: 1px solid #EDEDED;
  height: 48px;
  font-size: 16px;
  line-height: 20px;
  padding: 0 15px;
}

.filter__checklist-image {
  margin-top: 11px;
}

.filter__select {
  margin-top: 11px;
}

.filter__checkrow {
  position: relative;
  display: inline-block;
  -webkit-align-items: center;
          align-items: center;
}

.filter__link {
  margin-top: 12px;
  display: inline-block;
}

.filter__wrap--molding {
  margin-top: 30px;
}

.filter__item--molding {
  margin-top: 8px;
}

.filter__group-title {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  overflow: hidden;
  margin-top: 15px;
  display: block;
  width: 100%;
}

.filter__group-title-text {
  display: inline-block;
  position: relative;
}

.filter__group-title-text::after {
  content: "";
  position: absolute;
  top: 11px;
  left: calc(100% + 15px);
  width: 1000px;
  height: 1px;
  background-color: #EDEDED;
}

.filter__wrap--molding {
  margin-bottom: 30px;
}

.filter__wrap--molding-box,
.filter__wrap--molding-platband,
.filter__wrap--molding-findings {
  margin-top: 20px;
}

.filter__radiolist-tab {
  margin-top: 16px;
}

@media (max-width: 999px) {
  .filter__checkrow .field {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .filter--mob .text-input--short {
    height: 48px;
    font-size: 16px;
    line-height: 18px;
  }

  .filter--mob .field--range .input-group__prefix {
    font-size: 16px;
    line-height: 18px;
  }

  .filter--mob .field--range .input-group {
    display: block;
  }

  .filter--mob .field--range .input-group__cell {
    margin-left: 0;
  }

  .filter--mob .field--range .input-group__cell:not(:first-child) {
    margin-top: 10px;
  }

  .filter--mob .field--range .input-group__prefix {
    top: 14px;
  }

  .filter--mob .field--range .input-group__label {
    width: 100%;
  }

  .filter--mob .text-input--short {
    width: 100%;
  }

  .filter--mob .range-input-options {
    display: none;
  }
}
.sorting__items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -12px;
  margin-left: -13px;
  margin-right: -13px;
}

.sorting__item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  margin-top: 12px;
}

.sorting__label {
  padding: 5px 13px;
  cursor: pointer;
  position: relative;
}

.sorting__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.sorting__text {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  transition: color 0.25s;
}

.no-touch .sorting__label:hover .sorting__text {
  color: #2A2A2A;
}

.sorting__input:checked ~ .sorting__text {
  color: #2A2A2A;
}

.sorting__btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
  height: 36px;
  border-radius: 6px;
  padding: 0 42px 0 12px;
  box-shadow: 0 0 0 1px #C0C0C0;
  position: relative;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  transition: box-shadow 0.25s;
  white-space: nowrap;
}

.sorting__btn-text {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-touch .sorting__btn:hover {
  box-shadow: 0 0 0 1px #2A2A2A;
}

.sorting__btn:after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 9px;
  right: 12px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #2A2A2A;
  border-left: 1px solid #2A2A2A;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sorting__mob-item-body {
  display: -webkit-flex;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  background: rgba(21, 22, 22, 0.5);
  overflow: hidden;
}

.sorting__mob-item-body.open {
  visibility: visible;
  opacity: 1;
  z-index: 200;
}

.sorting__mob-item-dropdown-content {
  width: 100%;
  background-color: #fff;
  overflow: auto;
  position: absolute;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: 0;
  bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: top 0.25s, opacity 0.25s, visibility 0.25s;
}

.sorting__mob-item-body.open .sorting__mob-item-dropdown-content {
  visibility: visible;
  opacity: 1;
  top: auto;
}

.sorting__mob-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 0 0 15px;
}

.sorting__sorting-btn-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 15px;
}

.sorting__mob-sorting-close {
  display: block;
  cursor: pointer;
  transition: 0.15s;
  position: relative;
  width: 47px;
  height: 64px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.sorting__mob-sorting-close:before,
.sorting__mob-sorting-close:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.5px;
  background-color: #959696;
  top: 50%;
  left: 50%;
  transition: background-color 0.15s;
}

.sorting__mob-sorting-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.sorting__mob-sorting-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.sorting__currency {
  font-weight: 400;
}

.sorting__mob-field-wrap {
  padding: 5px 15px 15px;
}

@media (max-width: 999px) {
  .sorting {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    margin-left: 20px;
  }
}
@media (max-width: 479px) {
  .sorting__btn {
    max-width: 145px;
  }
}
.tabs {
  display: -webkit-flex;
  display: flex;
}

.tabs__item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
}

.tabs__item.active .tabs__tab {
  background-color: #eb2127;
}

.tabs__tab {
  padding: 0 16px;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  color: #959696;
  transition: color 0.25s, background-color 0.25s;
  font-size: 14px;
  line-height: 18px;
  height: 36px;
  border: 1px solid #eb2127;
}

span.tabs__tab {
  cursor: default;
}

.tabs__item:first-child .tabs__tab {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.tabs__item:last-child .tabs__tab {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.tabs__item.active .tabs__tab {
  color: #2A2A2A;
}

.no-touch .tabs__tab:hover {
  color: #2A2A2A;
}

.no-touch .tabs__item.active .tabs__tab:hover {
  background-color: #d21319;
}

.tabs__icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

@media (max-width: 999px) {
  .tabs__item {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
}
.status-list {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.status-list--pushed {
  top: 24px;
  right: 24px;
}

.status-list--left {
  top: -8px;
  left: -8px;
  right: auto;
}

.status-list--horizontal {
  right: 22px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.status-list__item {
  border-radius: 5px;
  position: relative;
  margin-top: 8px;
  padding: 1px 7px;
  white-space: nowrap;
  text-align: center;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 10px;
  line-height: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

.status-list--horizontal .status-list__item {
  margin-top: 0;
  margin-left: 8px;
}

.status-list__bg {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  opacity: 0.8;
  top: 0;
  left: 0;
  z-index: -1;
  box-shadow: 0 1px 4px rgba(21, 22, 22, 0.25);
}

.status-list__bg--new {
  background-color: #53AB1D;
}

.status-list__bg--new + .status-list__text {
  color: #ffffff;
}

.status-list__text--small {
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.status-list__item--blackout .status-list__text {
  color: #ffffff;
}

.status-list__icon {
  width: 30px;
  height: 30px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  object-fit: contain;
}

.status-list__icon--small {
  width: 24px;
  height: 17px;
}

@media (max-width: 999px) {
  .product-list-item__left-wrap .status-list .status-list__item,
.product-list-item__left .status-list .status-list__item {
    display: -webkit-flex;
    display: flex;
    padding: 3px 8px;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    border-radius: 4px;
    margin: 0 3px 0 0;
  }

  .product-list-item__left--mobile .status-list {
    position: static;
  }
}
@media (max-width: 759px) {
  .status-list__item {
    height: auto;
    white-space: initial;
  }
}
.tooltip {
  position: relative;
  z-index: 10;
}

.tooltip:hover {
  cursor: pointer;
}

.tooltip .tooltiptext {
  width: 120px;
  visibility: hidden;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 100;
  bottom: 135%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: break-spaces;
}

.tooltip .tooltiptext.detail {
  width: auto;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.active-filters__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -12px -6px 0;
}

.active-filters__item {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 6px;
  margin-top: 12px;
}

.active-filters__btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  background-color: #eb2127;
  border-radius: 14px;
  font-size: 13px;
  line-height: 13px;
  color: #ffffff;
  padding: 7px 28px 8px 12px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.25s;
}

.active-filters__unit {
  font-size: 12px;
}

.active-filters__btn:before,
.active-filters__btn:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #ffffff;
  top: 14px;
  right: 5px;
  transition: background-color 0.15s;
}

.active-filters__btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.active-filters__btn:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.active-filters__btn:hover,
.active-filters__btn:active {
  background-color: #d21319;
}

.active-filters__link {
  font-size: 13px;
  line-height: 18px;
  margin-left: 5px;
  color: #7F7F7F;
  cursor: pointer;
}

.no-touch button.active-filters__link:hover {
  color: #eb2127;
}

.product-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-grid__item {
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  display: -webkit-flex;
  display: flex;
}

.catalog--no-filter .product-grid__item {
  -webkit-flex: 0 0 20%;
          flex: 0 0 20%;
  width: 20%;
}

@media (max-width: 1367px) {
  .product-grid__item {
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    width: 33.3333%;
  }

  .catalog--no-filter .product-grid__item {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    width: 25%;
  }
}
@media (max-width: 759px) {
  .product-grid__item {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }

  .catalog--no-filter .product-grid__item {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
}
@media (max-width: 1860px) {
  .catalog--no-filter .product-grid__item:nth-child(5n+1) .product__visual-right {
    -webkit-order: -1;
            order: -1;
    position: relative;
    margin-top: -20px;
    padding-top: 20px;
  }

  .catalog--no-filter .product-grid__item:nth-child(5n+1) .product__visual {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    left: 0;
    right: auto;
  }

  .catalog--no-filter .product-grid__item:nth-child(5n+1) .status-list {
    left: 57%;
    top: 0;
    right: auto;
  }
}
@media (max-width: 1367px) {
  .catalog--no-filter .product-grid__item:nth-child(5n+1) .product__visual-right {
    -webkit-order: initial;
            order: initial;
    position: relative;
    margin-top: 0;
    padding-top: 0;
  }

  .catalog--no-filter .product-grid__item:nth-child(5n+1) .product__visual {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    left: auto;
    right: 0;
  }

  .catalog--no-filter .product-grid__item:nth-child(5n+1) .status-list {
    left: auto;
    top: 22px;
    right: 72px;
  }

  .catalog--no-filter .product-grid__item:nth-child(4n+1) .product__visual-right {
    -webkit-order: -1;
            order: -1;
    position: relative;
    margin-top: -20px;
    padding-top: 20px;
  }

  .catalog--no-filter .product-grid__item:nth-child(4n+1) .product__visual {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    left: 0;
    right: auto;
  }

  .catalog--no-filter .product-grid__item:nth-child(4n+1) .status-list {
    left: 57%;
    top: 0;
    right: auto;
  }
}
@media (max-width: 1239px) {
  .catalog--no-filter .product-grid__item:nth-child(5n+1) .status-list,
.catalog--no-filter .product-grid__item:nth-child(4n+1) .status-list {
    top: 0;
    right: 15px;
  }
}
@media (max-width: 999px) {
  .catalog--no-filter .product-grid__item:nth-child(4n+1) .product__visual-right {
    -webkit-order: initial;
            order: initial;
    position: relative;
    margin-top: 0;
    padding-top: 0;
  }

  .catalog--no-filter .product-grid__item:nth-child(4n+1) .product__visual {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    left: auto;
    right: 0;
  }

  .catalog--no-filter .product-grid__item:nth-child(4n+1) .status-list {
    left: auto;
    top: 0;
    right: 15px;
  }
}
.series-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -12px;
}

.series-grid__item {
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  width: 33.3333%;
  display: -webkit-flex;
  display: flex;
  padding: 0 12px 0;
}

.product {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 390px;
  position: relative;
  z-index: 1;
  transition: z-index 0.25s;
}

.product--list-item,
.product--slider-item {
  height: auto;
}

.product--simple {
  height: 384px;
}

.product--search-menu-item {
  height: auto;
}

.product--search-menu-item:not(:first-child) {
  border-top: 1px solid #EDEDED;
}

.product--big {
  height: 460px;
}

.product--middle {
  height: auto;
}

.product--basket-item {
  padding-top: 32px;
  padding-bottom: 53px;
  border-top: 1px solid #EDEDED;
  height: auto;
}

.product--kit .product--basket-item {
  padding-bottom: 0;
}

.product--kit .product__basket-item {
  margin-top: 35px;
}

.product--kit .product--basket-item,
.product--kit {
  border-top: 0;
  padding-top: 0;
}

.product--molding,
.product--canvas-item {
  height: auto;
}

.product__canvas-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 24px 0 32px;
}

.product__canvas-item-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #151616;
  margin-top: 25px;
}

.product__canvas-item-image {
  display: block;
  max-width: 80px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 16px;
}

.product--canvas-item .product__params {
  margin-top: 5px;
}

.product--canvas-item .product__title {
  margin-top: 0;
}

.product__canvas-item-left {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.product__canvas-item-right {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-align-items: center;
          align-items: center;
}

.product--small {
  height: 250px;
}

.product:hover {
  z-index: 20;
}

.product--search-menu-item:hover {
  z-index: 1;
}

.product__visual {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 32px 24px 32px 24px;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  background-color: #ffffff;
  border-radius: 6px;
  transition: box-shadow 0.25s, width 0.25s;
}

.no-touch .product__visual:hover {
  width: calc(100% + 66px);
  height: auto;
  overflow: visible;
}

.product--normal .product__params {
  opacity: 0;
  transition: opacity 0.25s;
}

.no-touch .product--normal .product__visual:hover .product__params {
  opacity: 1;
}

.no-touch .product--simple .product__visual:hover {
  width: auto;
}

.no-touch .product--simple-main .product__visual:hover {
  width: 100%;
}

.no-touch .product__visual--wide:hover {
  width: calc(100% + 118px);
}

.no-touch .product__visual--narrow:hover {
  width: 100%;
}

.product__small-visual {
  display: block;
  padding: 15px 20px;
  height: 240px;
  transition: box-shadow 0.25s;
}

.product__small-visual:hover {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
}

.product__small-image-wrap {
  height: 148px;
  display: block;
  z-index: 3;
  position: relative;
}

.product__small-image {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: contain;
  margin: 0 auto;
}

.product__small-image--no-photo {
  width: 74px;
  height: 148px;
}

.product__small-title {
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product__small-title::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%);
}

.product__frame {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 6px;
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 0.25s, width 0.25s;
}

.no-touch .product__visual:hover .product__frame {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
  height: auto;
}

.product__visual-left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66px;
  opacity: 0;
  transition: opacity 0.25s;
  display: -webkit-flex;
  display: flex;
}

.no-touch .product__visual--wide .product__visual-left {
  width: 118px;
}

.no-touch .product__visual--narrow .product__visual-left {
  display: none;
}

.product__visual-right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.product__visual-right--wide {
  width: 100%;
}

.touch .product__visual-right {
  width: 100%;
}

.no-touch .product__visual:hover .product__visual-left {
  opacity: 1;
  z-index: 3;
}

.product__images-column {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product__images-column-item {
  width: 42px;
  height: 48px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  box-shadow: 0 0 0 1px transparent;
  border-radius: 2px;
  transition: box-shadow 0.25s;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.no-touch .product__images-column-item:hover,
.product__images-column-item.active {
  box-shadow: 0 0 0 1px #C0C0C0;
}

.product__images-column-image.product__images-column-image {
  display: block;
  height: 38px;
  max-width: 38px;
  object-fit: contain;
  margin: 0;
  width: auto;
  border-radius: 0;
}

.product__image-wrap {
  display: block;
  height: 250px;
  z-index: 3;
  position: relative;
}

.product__image-wrap--double {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.product__image-wrap--double .product__image.product__image {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  margin: 0;
}

.product__image-wrap--double .product__image.product__image:first-child {
  margin-right: 8px;
}

.product__image-wrap--double .product__image.product__image:last-child {
  margin-left: 8px;
}

.product__image-wrap--double .product__image.product__image:only-child {
  margin: 0;
}

.product--big .product__image-wrap {
  height: 320px;
}

.product__quick-view-btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  height: 36px;
  color: #2A2A2A;
  font-size: 13px;
  line-height: 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.no-touch .product__image-wrap:hover .product__quick-view-btn {
  opacity: 1;
}

.product__image.product__image {
  display: block;
  height: 250px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0;
}

.product--big .product__image.product__image {
  height: 320px;
}

.product__image.product__image--no-photo {
  width: 74px;
  height: 250px;
}

.product__price {
  margin-top: 24px;
}

.product__title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  margin-top: 5px;
  width: 100%;
  overflow: hidden;
  position: relative;
  min-width: 250px;
}

.product__visual-right .product__image-wrap + .product__title {
  margin-top: 22px;
}

.product--basket-item .product__title {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0;
}

.product__title:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%);
}

.product--basket-item .product__title:after {
  display: none;
}

.product__name {
  font-size: 16px;
  line-height: 22px;
  color: #2A2A2A;
  display: inline-block;
  white-space: nowrap;
  margin-right: 8px;
}

.product--small .product__name {
  font-size: 14px;
  line-height: 22px;
}

.product--basket-item .product__name {
  font-weight: 600;
  white-space: normal;
}

.product--canvas-item .product__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.product__series {
  font-size: 13px;
  line-height: 18px;
  color: #959696;
  display: inline-block;
  white-space: nowrap;
}

.product__params {
  margin-top: 13px;
}

.product__additional-params {
  margin-top: 6px;
}

.product__param {
  margin-top: 6px;
  font-size: 13px;
  line-height: 18px;
  color: #7F7F7F;
}

.product__action {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 20px;
  position: relative;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.25s;
}

.no-touch .product__visual:hover .product__action,
.no-touch .product__middle-visual:hover .product__action {
  opacity: 1;
}

.product__action-link {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product__action-link-icon {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

.no-touch a.product__action-link:hover {
  text-decoration: none;
}

.product__compare-icon {
  width: 20px;
  height: 17px;
  color: #C0C0C0;
  transition: color 0.25s;
}

.no-touch .product__compare-btn:hover .product__compare-icon {
  color: #2A2A2A;
}

.product__basket-item {
  display: -webkit-flex;
  display: flex;
}

.product__basket-item-counter {
  margin-right: 50px;
}

.product__basket-item-left {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 148px;
  height: 148px;
  margin-right: 24px;
}

.product__basket-item-right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
}

.product__basket-item-image-wrap {
  width: 148px;
  height: 148px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product__basket-item-image {
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product__basket-item-main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product__tag-params {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 4px;
}

.product__tag-param {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 13px;
  line-height: 18px;
  color: #2A2A2A;
  padding: 4px 12px 6px;
  background-color: #F6F6F6;
  border-radius: 6px;
  margin-right: 8px;
  margin-top: 8px;
}

.product__description {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 12px;
  max-width: 640px;
}

.product__basket-item-aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.product__basket-item-recycle {
  line-height: 0;
  display: block;
  cursor: pointer;
  padding: 10px;
  margin-top: -7px;
  margin-right: -10px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 40px;
  color: #C0C0C0;
  transition: color 0.25s;
}

.no-touch .product__basket-item-recycle:hover {
  color: #eb2127;
}

.product__basket-item-recycle-icon {
  width: 24px;
  height: 24px;
}

.product__price-info {
  display: -webkit-flex;
  display: flex;
  margin-top: 10px;
}

.product__availability {
  margin-top: 4px;
}

.product__status {
  margin-top: 11px;
  line-height: 18px;
}

.product__status-item {
  font-size: 12px;
  line-height: 18px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 10px;
}

.product__kit-info {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  background-color: #F6F6F6;
  border-radius: 6px;
  padding: 7px 16px;
  margin-bottom: 40px;
}

.product__middle-visual {
  display: block;
  background-color: transparent;
  border-radius: 6px;
  padding: 32px 24px;
  height: auto;
  transition: box-shadow 0.25s, background-color 0.25s;
}

.product__middle-visual:hover {
  height: auto;
  background-color: #ffffff;
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
}

.no-touch .text-guide a.product__middle-visual:hover {
  text-decoration: none;
}

.product__middle-image-wrap {
  height: auto;
  max-height: 320px;
  display: block;
  z-index: 3;
  position: relative;
  overflow: hidden;
}

.product__middle-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.product__middle-image--no-photo {
  width: 74px;
  height: 320px;
}

.product__middle-title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  margin-top: 24px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product__middle-title::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%);
}

.product__compare-btn {
  margin-left: 13px;
}

.compare-btn--simple .compare-btn__btn {
  width: 36px;
  height: 36px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.compare-btn--simple .compare-btn__icon {
  margin-right: 0;
}

.compare-btn--simple .compare-btn__text {
  display: none;
}

.product__params-inner {
  margin-top: 6px;
}

.product__link-more {
  font-size: 13px;
  line-height: 18px;
}

@media (max-width: 759px) {
  .product__canvas-item {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .product__canvas-item-right {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 999px) {
  .product--normal {
    height: 254px;
  }

  .product__action-link {
    width: 100%;
  }

  .product--big {
    height: 272px;
  }

  .product--basket-item {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .product--simple {
    height: 272px;
  }

  .product--middle {
    height: auto;
  }

  .product:hover {
    z-index: 1;
  }

  .product__visual {
    padding: 20px 15px;
  }

  .no-touch .product__visual:hover {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .no-touch .product__visual--wide:hover {
    width: 100%;
  }

  .no-touch .product__visual:hover .product__visual-left {
    opacity: 0;
    z-index: 0;
  }

  .no-touch .product__visual:hover .product__frame {
    box-shadow: none;
    height: auto;
  }

  .no-touch .product__visual:hover .product__action {
    opacity: 1;
  }

  .no-touch .product__image-wrap:hover .product__quick-view-btn {
    opacity: 0;
  }

  .product__name {
    font-size: 14px;
    line-height: 22px;
  }

  .product__series {
    font-size: 12px;
    line-height: 18px;
  }

  .product__params {
    margin-top: 2px;
  }

  .product__param {
    font-size: 12px;
    line-height: 16px;
  }

  .product__image-wrap {
    height: 130px;
  }

  .product--big .product__image-wrap {
    height: 130px;
  }

  .product__image.product__image {
    height: 130px;
  }

  .product--big .product__image.product__image {
    height: 130px;
  }

  .product__param:not(:first-child) {
    display: none;
  }

  .product__visual-right {
    width: 100%;
  }

  .product__action {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    margin-top: 10px;
  }

  .product__middle-visual {
    padding: 24px 15px;
  }

  .product__middle-title {
    margin-top: 16px;
  }

  .product--molding {
    display: block;
  }

  .product--molding .molding__wrap {
    display: block;
  }

  .product--molding,
.product--canvas-item {
    height: auto;
  }

  .product__basket-item {
    display: block;
  }

  .product__basket-item-aside {
    margin-top: 24px;
  }

  .product__basket-item-counter {
    margin-right: 25px;
  }
}
@media (max-width: 759px) {
  .product__basket-item-right {
    margin-top: 16px;
    display: block;
  }

  .product__basket-item-recycle {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }

  .product__image-wrap--double .product__image:first-child {
    margin-right: 4px;
  }

  .product__image-wrap--double .product__image:last-child {
    margin-left: 4px;
  }

  .product__image-wrap--double .product__image:only-child {
    margin: 0;
  }

  .product__kit-info {
    margin-right: 50px;
  }

  .product__canvas-item-image {
    display: block;
    max-width: 60px;
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 10px;
  }
}
.series {
  width: 100%;
  min-height: 316px;
  position: relative;
  z-index: 1;
  transition: z-index 0.25s, box-shadow 0.25s;
}

.no-touch .series:hover {
  z-index: 20;
}

.series__wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: static;
  transition: box-shadow 0.25s, overflow 0.25s;
}

.series__spoiler {
  position: absolute;
  top: 0;
  left: -24px;
  right: -24px;
  z-index: 1;
  background-color: #ffffff;
  padding: 0 24px 32px;
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
  opacity: 0;
  transition: opacity 0.25s;
}

.series--photo-not-exists .series__spoiler::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  right: 0;
  height: 10px;
  background-color: #ffffff;
}

.no-touch .series__wrap:hover .series__spoiler {
  opacity: 1;
}

.no-touch .series__wrap:hover {
  overflow: visible;
}

.series__image-wrap {
  max-height: 240px;
  overflow: hidden;
  border-radius: 6px;
}

.series__image {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
}

.no-touch .series__wrap:hover .series__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.series__info {
  padding: 0 24px 24px;
  background-color: #ffffff;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.25s;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.no-touch .series:hover .series__image-wrap {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
}

.series__header {
  display: -webkit-flex;
  display: flex;
  padding-top: 12px;
  position: relative;
}

.series__title {
  font-size: 20px;
  line-height: 28px;
  color: #2A2A2A;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.series__price-wrap {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 20px;
}

.series__text {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  margin-top: 10px;
}

.series__btn {
  margin-top: 18px;
  opacity: 0;
}

.no-touch .series__wrap:hover .series__btn {
  opacity: 1;
}

@media (max-width: 1367px) {
  .series {
    min-height: 270px;
  }
}
@media (max-width: 1239px) {
  .series-grid__item {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }

  .series {
    min-height: 250px;
  }
}
@media (max-width: 999px) {
  .series__title {
    font-size: 16px;
    line-height: 22px;
  }

  .series__info {
    padding: 0 15px 20px;
  }

  .series__spoiler {
    padding: 0 15px 20px;
    left: -15px;
    right: -15px;
  }

  .series {
    min-height: 0;
  }
}
@media (max-width: 759px) {
  .series-grid__item {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }

  .series--photo-not-exists .series__image {
    width: auto;
    margin: 0 auto;
  }
}
.product-banner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 32px 24px;
  width: 100%;
}

.product-banner--narrow {
  margin: 32px 24px;
}

.product-banner__icon {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 auto;
}

.product-banner__title {
  font-size: 20px;
  line-height: 28px;
  margin-top: 24px;
  text-align: center;
  font-weight: 600;
  color: #2A2A2A;
}

.product-banner__subtitle {
  font-size: 14px;
  line-height: 22px;
  margin-top: 16px;
  text-align: center;
  color: #959696;
}

.product-banner__subtitle--darker {
  color: #7F7F7F;
}

.product-banner__action {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 24px;
}

@media (max-width: 999px) {
  .product-banner {
    padding: 10px;
  }

  .product-banner--narrow {
    padding: 10px;
    margin: 0;
  }

  .product-banner__title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
  }

  .product-banner__subtitle {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
  }

  .product-banner__action {
    margin-top: 16px;
  }

  .product-banner__icon {
    width: 50px;
    height: 50px;
  }
}
.page-nav__bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 24px;
}

.page-nav__info {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-top: 7px;
}

.page-nav__links button {
  cursor: pointer;
}

.page-nav__links {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  margin: 0 -2px 24px;
}

.page-nav__link {
  height: 36px;
  display: -webkit-flex;
  display: flex;
  padding: 0 14px;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  border-radius: 6px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 2px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  box-shadow: 0 0 3px rgba(21, 22, 22, 0.15);
  background-color: #ffffff;
  transition: background-color 0.25s, box-shadow 0.25s, color 0.25s;
  color: #2A2A2A;
}

.page-nav__link-spacer {
  height: 36px;
  display: -webkit-flex;
  display: flex;
  padding: 0 14px;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  border-radius: 6px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 2px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #2A2A2A;
}

.no-touch .page-nav__link:hover,
.page-nav__link.active {
  background-color: #eb2127;
  color: #ffffff;
  box-shadow: 0 0 0 transparent;
}

.page-nav__shevron-prev {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-left: 1.5px solid #2A2A2A;
  border-bottom: 1.5px solid #2A2A2A;
  width: 8px;
  height: 8px;
  transition: border 0.15s;
}

.page-nav__shevron-next {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-left: 1.5px solid #2A2A2A;
  border-bottom: 1.5px solid #2A2A2A;
  width: 8px;
  height: 8px;
  transition: border 0.15s;
}

.page-nav__link:hover .page-nav__shevron-next,
.page-nav__link:hover .page-nav__shevron-prev {
  border-left: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
}

.page-nav--hide-btn-more .btn--more {
  display: none;
}

.page-nav--hide-info .page-nav__left {
  display: none;
}

.page-nav--centered .page-nav__bottom {
  -webkit-justify-content: center;
          justify-content: center;
}

@media (max-width: 1367px) {
  .page-nav--hide-btn-more .btn--more {
    display: -webkit-flex;
    display: flex;
  }

  .page-nav--hide-btn-more .page-nav__bottom {
    display: none;
  }
}
@media (max-width: 999px) {
  .page-nav__left {
    display: none;
  }

  .page-nav--alt {
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .page-nav__left {
    display: none;
  }

  .page-nav__right {
    display: none;
  }
}
.products-slider {
  margin-top: 4px;
}

.product-slider {
  padding-top: 44px;
  padding-bottom: 24px;
  max-width: 1548px;
  margin: 0 auto;
}

.product-slider + section {
  padding-top: 32px;
}

.products-slider--sm {
  margin-top: 0;
}

.products-slider--hidden-arrows .slick-arrow {
  opacity: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out, opacity 0.25s;
}

.products-slider--hidden-arrows:hover .slick-arrow {
  opacity: 1;
}

.products-slider .slick-list {
  margin: 0 -20px;
  position: relative;
  overflow: visible;
  transition: all 0.25s;
}

.products-slider__slider {
  position: relative;
  width: 100%;
  max-width: 1500px;
  overflow: clip;
  padding: 20px;
}

.products-slider__slider:not(.slick-initialized) {
  height: 286px;
  overflow: hidden;
}

.products-slider__slider:before,
.products-slider__slider:after {
  position: absolute;
  top: 0;
  background-color: #ffffff;
  bottom: 0;
  width: 20px;
  z-index: 1;
}

.products-slider__slider:before {
  left: -20px;
}

.products-slider__slider:after {
  left: auto;
  right: -20px;
}

.products-slider .slick-list:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: -1;
}

.products-slider__slide {
  display: block;
  margin: 0 6.5px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  box-shadow: 0 0 0 transparent;
  transition: all 0.25s;
  border-radius: 9px;
  background-color: #ffffff;
  -webkit-align-self: center;
          align-self: center;
}

.products-slider .slick-track {
  background-color: transparent;
}

.products-slider__item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.no-touch .products-slider__slide:hover {
  -webkit-transform: scale(108%);
          transform: scale(108%);
  z-index: 1;
  box-shadow: 0px 0px 10px 0px rgba(130, 130, 130, 0.25);
}

.product-slider .product__action-link {
  width: 100%;
}

@media (min-width: 1470px) {
  .product-card__related .products-slider__slide:hover {
    box-shadow: none;
    z-index: 0;
  }
}
.products-slider__top-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 190px;
  padding: 20px 25px;
  position: relative;
}

.products-slider__image {
  height: 147px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.products-slider--lg .products-slider__image {
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 150px;
}

.products-slider__title {
  font-size: 14px;
  line-height: 19px;
  color: #2A2A2A;
  font-weight: 600;
}

.products-slider--lg .products-slider__title {
  color: #2A2A2A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: -webkit-flex;
  display: flex;
  line-clamp: 3;
  -webkit-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-slider__subtitle {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 3px;
  white-space: nowrap;
}

.products-slider__content {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  z-index: 2;
  width: 100%;
  padding: 0 10px 12px 10px;
}

.products-slider__heading {
  margin-bottom: 8px;
  height: 54px;
}

.products-slider--lg .products-slider__heading {
  display: -webkit-flex;
  display: flex;
}

.products-slider--lg .products-slider__content {
  display: block;
}

.products-slider--lg .products-slider__subtitle {
  margin-left: 10px;
}

.products-slider__descr {
  margin-top: 13px;
}

.products-slider__text {
  font-size: 13px;
  line-height: 18px;
  color: #7F7F7F;
  margin-top: 5px;
}

.products-slider__action {
  position: relative;
}

.products-slider__wrap-link {
  display: block;
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: calc(100% + 22px + 54px);
  top: 0;
  left: 0;
  z-index: 4;
}

.product-slider--scroll {
  background: #F2F2F2;
  padding: 20px 0 30px 0;
}

.products-slider__slider--scroll {
  display: -webkit-flex;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 20px;
}

.products-slider__slider--scroll::-webkit-scrollbar {
  width: 0;
}

.products-slider__slider--scroll .products-slider__content {
  padding: 0 20px 20px;
}

.products-slider--colored .section-title.h2,
.products-slider--colored .section-link {
  color: #ffffff;
}

.products-slider__top {
  margin-bottom: 8px;
}

.products-slider--colored a.section-link:hover {
  color: #E3E3E3;
}

.products-slider__btn-wrap {
  display: -webkit-flex;
  display: flex;
  gap: 17px;
  margin-left: auto;
}

.products-slider__btn {
  position: static;
  border-radius: 100px;
  -webkit-transform: translateY(-14px);
          transform: translateY(-14px);
  width: 38px;
  height: 38px;
  background-color: #ffffff;
}

.products-slider__btn::before {
  display: none;
}

.products-slider__btn::after {
  position: static;
  border-left-color: #000000;
  border-bottom-color: #000000;
}

.products-slider__btn.small-slider-arrow--prev::after {
  -webkit-transform: translateX(2px) rotate(45deg);
          transform: translateX(2px) rotate(45deg);
}

.products-slider__btn.small-slider-arrow--next::after {
  -webkit-transform: translateX(-2px) rotate(-135deg);
          transform: translateX(-2px) rotate(-135deg);
}

.products-slider__price-wrap .price {
  max-height: 22px;
}

.products-slider__price-wrap:has(.price__group--old) .price {
  margin-bottom: 5px;
}

.products-slider__container {
  padding-right: 0;
}

.products-slider__status-list.status-list {
  bottom: 6px;
  left: 6px;
  top: auto;
  gap: 6px;
}

.products-slider__status-list.status-list .status-list__item {
  margin-top: 0;
  padding: 2px 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
}

@media (min-width: 999px) {
  .products-slider__slide {
    width: 202px !important;
  }
}
@media (max-width: 999px) {
  .products-slider--colored .products-slider__slider {
    background-color: #ffffff;
    margin-top: 16px;
  }

  .product-slider {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .products-slider__top {
    margin-bottom: 16px;
  }

  .products-slider__slider--scroll .products-slider__slide,
.products-slider__slide {
    margin: 0 6px;
    -webkit-flex: 0 0 160px;
            flex: 0 0 160px;
  }

  .products-slider__top-wrap {
    height: 160px;
    padding: 0;
  }

  .products-slider__wrap-link {
    height: calc(100% + 20px + 46px);
  }

  .products-slider__status-list.status-list {
    gap: 4px;
    left: 6px;
    bottom: 6px;
    max-width: 70%;
  }

  .products-slider__status-list.status-list .status-list__item {
    font-size: 10px;
  }

  .catalog-compare .products-slider__item {
    padding-left: 10px;
  }

  .products-slider--lg .products-slider__content {
    padding: 0 8px 8px 8px;
  }

  .products-slider__price-wrap .price {
    max-height: 20px;
  }

  .product-slider .price__group .price__value,
.product-slider .price__group .price__currency {
    font-size: 16px;
    line-height: 20px;
  }

  .products-slider__subtitle {
    font-size: 12px;
    margin-top: 2px;
  }

  .products-slider .slick-list {
    margin: 0;
    padding: 0 50px 0 15px;
    position: relative;
  }

  .products-slider--lg .slick-list {
    padding: 0;
  }

  .products-slider__image {
    height: 102px;
  }

  .products-slider__slider:before {
    left: -15px;
    width: 15px;
  }

  .products-slider__slider:after {
    right: -15px;
    width: 15px;
  }

  .products-slider--lg .products-slider__image {
    max-height: 117.5px;
    max-width: 125.8px;
    margin: 0;
  }

  .products-slider--lg .products-slider__title {
    font-size: 12px;
    font-style: normal;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    line-height: 15px;
    max-height: 45px;
  }

  .products-slider__heading {
    min-height: auto;
    margin-bottom: 12px;
  }

  .products-slider__descr {
    margin-top: 0;
  }

  .products-slider__text {
    margin-top: 0;
  }

  .no-touch .products-slider__slide:hover {
    box-shadow: none;
  }

  .products-slider__slider--scroll {
    margin-top: 0;
  }

  .products-slider__heading {
    height: auto;
    min-height: 46px;
  }

  .products-slider__btn {
    display: none;
  }
}
.filter-btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #2A2A2A;
  height: 36px;
  cursor: pointer;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.no-touch .filter-btn:hover {
  color: #2A2A2A;
}

.filter-btn__icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
  margin-left: -5px;
}

.series-card__main {
  display: -webkit-flex;
  display: flex;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

.series-card__left {
  -webkit-flex: 0 0 60%;
          flex: 0 0 60%;
  width: 60%;
  min-width: 0;
  position: relative;
}

.series-card.series-card .status-list {
  top: 38px;
  left: auto;
  right: 38px;
}

.series-card__right {
  -webkit-flex: 0 0 40%;
          flex: 0 0 40%;
  width: 40%;
  padding: 25px 24px 32px 40px;
}

.series-card__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.series-card__header-left {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.series-card__header-right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 10px;
}

.series-card__title {
  margin-top: 8px;
}

.series-card__description {
  margin-top: 23px;
}

.series-card__anchor-link {
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
}

.series-card__anchor-link {
  display: inline-block;
  margin-top: 8px;
}

.series-card__catalog {
  background-color: #ffffff;
  padding-top: 64px;
  position: relative;
}

.series-card__catalog--pt0 {
  padding-top: 0;
}

.series-card__catalog-wrap {
  display: -webkit-flex;
  display: flex;
  margin-top: 24px;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 50px;
}

.series-card__catalog-cover {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 20px;
}

.series-card__catalog-filter-wrap {
  max-width: 484px;
  padding: 0 24px;
}

.series-card__catalog-title {
  padding: 0 24px;
}

.series-card__product {
  width: 25%;
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
}

.series-card__top-filter-wrap {
  padding: 40px 24px 28px;
  background-color: #ffffff;
}

.series-card__top-filter-wrap .checklist-image__item {
  width: 114px;
  -webkit-flex: 0 0 114px;
          flex: 0 0 114px;
}

.series-card__catalog-alt-wrap {
  display: -webkit-flex;
  display: flex;
  background-color: #ffffff;
}

.series-card__catalog-left {
  max-width: 356px;
  width: 356px;
}

.series-card__filter-btn-wrap {
  padding: 0 15px;
  margin-top: 20px;
}

@media (max-width: 1540px) {
  .series-card__product {
    width: 33.3333%;
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
}
@media (max-width: 1367px) {
  .series-card__catalog-filter-wrap {
    max-width: 350px;
  }
}
@media (max-width: 1239px) {
  .series-card__product {
    width: 50%;
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .series-card__main {
    display: block;
  }

  .series-card__left {
    width: 100%;
  }

  .series-card__right {
    padding: 25px 24px 0 24px;
    width: 100%;
  }

  .series-card.series-card .status-list {
    top: 8px;
    left: auto;
    right: 8px;
  }
}
@media (max-width: 999px) {
  .series-card__catalog-filter-wrap {
    display: none;
  }

  .series-card__product {
    width: 33.3333%;
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }

  .series-card__right {
    padding: 24px 15px;
  }

  .series-card__catalog-title {
    padding: 0 15px;
  }

  .series-card__catalog {
    padding-top: 20px;
  }

  .series-card__catalog-wrap {
    padding-bottom: 20px;
  }

  .series-card__catalog--pt0 {
    padding-top: 0;
  }

  .series-card__catalog-alt-wrap {
    display: block;
  }

  .series-card__catalog-left {
    max-width: 33.3333%;
    width: 33.3333%;
  }

  .series-card.series-card .status-list {
    top: 8px;
    left: auto;
    right: 8px;
  }
}
@media (max-width: 759px) {
  .series-card__product {
    width: 50%;
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .series-card__catalog-left {
    max-width: 50%;
    width: 50%;
  }
}
.gallery {
  height: 560px;
  position: relative;
}

.gallery--lg {
  height: 900px;
}

.gallery__wrap {
  margin-top: 24px;
}

.gallery__slider {
  min-width: 0;
}

.gallery__slider-item {
  height: 560px;
}

.gallery--lg .gallery__slider-item {
  height: 900px;
}

.gallery__slider-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__slider-image--no-photo {
  max-height: 490px;
  object-fit: contain;
}

.gallery__nav {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}

.gallery__nav-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__nav-item {
  cursor: pointer;
  border-top: 3px solid rgba(21, 22, 22, 0.5);
  border-bottom: 3px solid rgba(21, 22, 22, 0.5);
  border-left: 3px solid rgba(21, 22, 22, 0.5);
  border-right: 3px solid rgba(21, 22, 22, 0.5);
  position: relative;
  height: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.gallery__nav-item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.25s;
  z-index: 1;
  opacity: 1;
  background-color: rgba(21, 22, 22, 0.35);
}

.gallery__nav-item:hover:after {
  opacity: 0;
}

.gallery__nav-item.slick-current:after {
  opacity: 0;
}

.gallery__svg-icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.gallery .slick-dots {
  display: none !important;
}

@media (max-width: 999px) {
  .gallery {
    height: 400px;
  }

  .gallery--lg {
    height: auto;
  }

  .gallery__slider-item {
    height: 400px;
  }

  .gallery--lg .gallery__slider-item {
    height: auto;
  }
}
.link-back {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.no-touch .link-back.link-back:hover {
  text-decoration: none;
}

.link-back--shift {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.link-back--mb16 {
  margin-bottom: 16px;
}

.link-back__text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.link-back__icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media (max-width: 999px) {
  .link-back--shift {
    -webkit-transform: none;
            transform: none;
  }
}
.price-panel {
  padding: 24px;
  background: #F6F6F6;
  border-radius: 6px;
  display: -webkit-flex;
  display: flex;
  margin-top: 24px;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.price-panel__left {
  padding-right: 20px;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.price-panel__action {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media (max-width: 639px) {
  .price-panel {
    display: block;
    padding: 15px;
  }

  .price-panel__action {
    margin-top: 20px;
  }
}
.features-list__grid {
  margin: 4px -10px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.features-list__col {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 10px;
  margin-top: 20px;
}

.features-list__item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.features-list__icon-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eb2127;
  margin-right: 16px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.features-list__text {
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
}

@media (max-width: 1239px) {
  .features-list__grid {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 759px) {
  .features-list__col {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.small-tabs {
  display: -webkit-flex;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 2px #eb2127 inset;
}

.small-tabs__label {
  -webkit-flex-grow: 1;
          flex-grow: 1;
  max-width: 100%;
  cursor: pointer;
  height: 36px;
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-basis: 0;
          flex-basis: 0;
}

.no-touch .small-tabs__label:hover .small-tabs__text {
  color: #2A2A2A;
}

.small-tabs__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.small-tabs__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0;
  background-color: #eb2127;
  transition: opacity 0.25s;
}

.small-tabs__text {
  z-index: 1;
  color: #959696;
  transition: color 0.25s;
}

.small-tabs__input:checked ~ .small-tabs__bg {
  opacity: 1;
}

.small-tabs__input:checked ~ .small-tabs__text {
  color: #2A2A2A;
}

.checklist-image__items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px -10px 0;
}

.checklist-image__item {
  width: 25%;
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 6px;
  margin-top: 14px;
}

.checklist-image__label {
  display: block;
  cursor: pointer;
  position: relative;
}

.checklist-image--alt .checklist-image__label {
  height: 73px;
}

.checklist-image__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 1;
  opacity: 0;
}

.checklist-image__input[disabled] ~ .checklist-image__visual {
  display: none;
}

.checklist-image__input[disabled] ~ .checklist-image__color-marker {
  opacity: 0.4;
}

.checklist-image__input[disabled] ~ .checklist-image__color-marker:after {
  border: 1px solid #EDEDED;
}

.checklist-image__item.disabled .checklist-image__label {
  cursor: not-allowed;
  position: relative;
}

.checklist-image__item.disabled .checklist-image__label:before,
.checklist-image__item.disabled .checklist-image__label:after {
  content: "";
  position: absolute;
  width: 17px;
  height: 1px;
  background-color: #C0C0C0;
  top: 50%;
  left: 50%;
  z-index: 1;
}

.checklist-image__item.disabled .checklist-image__label:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.checklist-image__item.disabled .checklist-image__label:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.checklist-image__item.checklist-image__item.disabled .checklist-image__color-marker:after,
.no-touch .checklist-image__item.disabled:hover .checklist-image__color-marker:after {
  border: 1px solid #C0C0C0;
  opacity: 1;
}

.checklist-image__visual {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 4px;
  z-index: 1;
  background-color: #eb2127;
  opacity: 0;
  transition: opacity 0.25s;
  box-shadow: 0 0 0 1px #eb2127;
}

.checklist-image__visual:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 6px;
  transition: opacity 0.25s;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1.5px solid #2A2A2A;
  border-left: 1.5px solid #2A2A2A;
}

.no-touch .checklist-image__label:hover .checklist-image__visual {
  box-shadow: 0 0 0 1px #FEEF35;
}

.checklist-image__input:checked ~ .checklist-image__visual {
  opacity: 1;
}

.checklist-image__color-marker {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: calc(100% - 8px);
  height: 80px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 4px;
}

.checklist-image--alt .checklist-image__color-marker {
  background-size: contain;
  background-repeat: no-repeat;
}

.checklist-image--alt .checklist-image__color-marker {
  width: 55px;
  height: 63px;
}

.checklist-image__color-marker:after {
  position: absolute;
  content: "";
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 6px;
  border: 2px solid #eb2127;
  opacity: 0;
  transition: opacity 0.25s;
}

.checklist-image__input:checked ~ .checklist-image__color-marker:after {
  opacity: 1;
}

.no-touch .checklist-image__item:hover .checklist-image__color-marker:after {
  opacity: 1;
  border: 2px solid #C0C0C0;
}

.no-touch .checklist-image__item:hover .checkbox-row__input:checked ~ .checklist-image__color-marker:after {
  border: 2px solid #eb2127;
}

.checklist-image__color-marker--light:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px lightgrey inset;
}

.checklist-image__text {
  display: inline-block;
  color: #7F7F7F;
  transition: color 0.25s;
  font-size: 13px;
  line-height: 20px;
  margin-top: -2px;
  margin-left: 4px;
}

.product-card .checklist-image__text {
  display: block;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(10px);
          transform: translateX(-50%) translateY(10px);
  padding: 10px 15px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  font-size: 13px;
  width: auto;
  background-color: #ffffff;
  box-shadow: 0 2px 14px rgba(21, 22, 22, 0.15);
  white-space: nowrap;
  min-width: 50px;
  text-align: center;
  border-radius: 6px;
  margin: 0;
  transition: visibility 0.25s, z-index 0.25s, opacity 0.25s, -webkit-transform 0.25s;
  transition: visibility 0.25s, z-index 0.25s, transform 0.25s, opacity 0.25s;
  transition: visibility 0.25s, z-index 0.25s, transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

.product-card .checklist-image__text:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 16px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffffff;
  z-index: 2;
}

.product-card .checklist-image__text:after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: #ffffff;
  z-index: 1;
  box-shadow: 0 0 10px 0 rgba(21, 22, 22, 0.15);
}

.no-touch .product-card .checklist-image__label:hover .checklist-image__text {
  opacity: 1;
  z-index: 1000;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.checklist-image__status-list {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.checklist-image__status {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  color: #2A2A2A;
  border-radius: 6px;
  margin-top: 6px;
  padding: 1px 4px;
  display: block;
}

.checklist-image__status--blackout {
  color: #ffffff;
}

@media (max-width: 1540px) {
  .checklist-image__item {
    width: 33.3333%;
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
}
@media (max-width: 999px) {
  .checklist-image__items {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.features-banner {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 6px;
  margin-top: 24px;
}

.features-banner__items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px -10px 40px;
  width: calc(100% + 20px);
}

.features-banner__spoiler .features-banner__items:last-child {
  margin-bottom: 20px;
}

.features-banner__item {
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  width: 33.3333%;
  padding: 0 10px;
  margin-top: 20px;
}

.features-banner__image-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 78%;
  position: relative;
}

.features-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.features-banner__title {
  margin-top: 16px;
}

.features-banner__text {
  color: #7F7F7F;
  font-size: 14px;
  line-height: 22px;
  margin-top: 12px;
}

.features-banner__link-more {
  margin-top: 32px;
}

.features-banner__spoiler {
  display: none;
}

@media (max-width: 999px) {
  .features-banner {
    padding: 24px 15px;
  }

  .features-banner__items {
    margin: -20px -10px 10px;
  }

  .features-banner__item {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 0 10px;
  }

  .features-banner__image-wrap {
    height: 365px;
    padding: 0;
  }

  .features-banner__image {
    max-height: 365px;
    height: 365px;
  }
}
@media (max-width: 639px) {
  .features-banner__image {
    max-height: 100%;
    height: 223px;
  }

  .features-banner__image-wrap {
    height: 223px;
  }

  .features-banner__link-more {
    margin-top: 11px;
    font-size: 14px;
    line-height: 20px;
  }
}
.link-more__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.link-more__text:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 9px;
  right: -20px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #eb2127;
  border-left: 1px solid #eb2127;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 759px) {
  .link-more {
    font-size: 14px;
    line-height: 20px;
  }
}
.info-section {
  padding: 40px 24px 40px;
  background-color: #ffffff;
  border-radius: 6px;
  margin-top: 24px;
}

.info-section__top {
  display: -webkit-flex;
  display: flex;
  margin: 0 -20px;
}

.info-section__top-left {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 20px;
}

.info-section__top-right {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 20px;
}

.info-section__text {
  margin-top: 16px;
}

@media (max-width: 999px) {
  .info-section {
    padding: 24px 15px;
  }

  .info-section__top-left {
    padding: 0 15px;
  }

  .info-section__top-right {
    padding: 0 15px;
  }

  .info-section__text {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 759px) {
  .info-section__top {
    display: block;
    margin: 0 -15px;
  }

  .info-section__top-left {
    width: 100%;
  }

  .info-section__top-right {
    width: 100%;
    padding: 0 15px;
  }
}
.infographics__wrap {
  display: -webkit-flex;
  display: flex;
  margin: -40px -15px 0;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.infographics__col {
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  padding: 0 15px;
  margin-top: 40px;
}

.infographics__item {
  width: 84px;
  height: 84px;
  margin: 0 auto;
}

.infographics__diagram {
  width: 100%;
  position: relative;
  height: 0;
}

.infographics__diagram:after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  z-index: 2;
  border-radius: 50%;
}

.infographics__diagram:before {
  content: "";
  position: absolute;
  width: 80.5px;
  height: 80.5px;
  top: calc(100% + 1.5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
}

.infographics__svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: transparent;
  background: transparent;
  border-radius: 50%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.infographics__circle {
  fill: currentcolor;
  stroke: #eb2127;
  stroke-width: 50;
  stroke-dasharray: 0 0;
}

.infographics__caption {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-top: 14px;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.infographics__counter {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  position: absolute;
  top: 100%;
  width: 84px;
  height: 84px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  z-index: 3;
}

@media (max-width: 1239px) {
  .infographics__col {
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    width: 33.3333%;
  }
}
@media (max-width: 999px) {
  .infographics__col {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }

  .infographics__wrap {
    margin: -40px -15px 0;
  }

  .infographics__col {
    padding: 0 15px;
  }

  .infographics__caption {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 759px) {
  .infographics__wrap {
    margin-top: 0;
  }
}
.table-section {
  margin-top: 32px;
}

.table-section .hint {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.table-section__item {
  margin-top: 30px;
}

.table-section__grid {
  margin: 0 -20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 18px;
  overflow: auto;
}

.table-section__col {
  margin: 0 20px -1px;
  width: calc(50% - 40px);
  -webkit-flex: 0 0 calc(50% - 40px);
          flex: 0 0 calc(50% - 40px);
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

.table-section__line {
  padding: 11px 0 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.table-section__cell-left {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  font-size: 16px;
  line-height: 24px;
  color: #959696;
}

.table-section__cell-right {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  text-align: right;
}

.table-section__footer {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 18px;
}

.table-section__footer p {
  margin: 0;
}

@media (max-width: 759px) {
  .table-section__col {
    width: 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .table-section__cell-left {
    font-size: 14px;
    line-height: 22px;
    padding-right: 10px;
  }

  .table-section__cell-right {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    padding-left: 10px;
  }
}
.product-card-wrap:last-child {
  margin-bottom: 32px;
}

.product-card__container {
  margin-bottom: 32px;
}

.product-card__container:last-child {
  margin-bottom: 70px;
}

.product-card__container--no-paddings {
  padding: 0;
}

.product-card__wrap {
  display: -webkit-flex;
  display: flex;
  background-color: #ffffff;
  padding: 24px 0 0;
  position: relative;
  border-top: 1px solid #e9e9e9;
  margin-top: 25px;
}

.product-card__left {
  -webkit-flex: 0 0 424px;
          flex: 0 0 424px;
  display: -webkit-flex;
  display: flex;
  min-width: 0;
}

.product-card__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 50px;
}

.product-card__right-wrap {
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.product-card__aside-block {
  -webkit-flex: 0 0 323px;
          flex: 0 0 323px;
  max-width: 323px;
}

.product-card__aside-wrap {
  position: relative;
  background-color: #ffffff;
  border: 6px;
  padding: 28px;
  box-shadow: 0 0 20px rgba(42, 42, 42, 0.08);
}

.product-card__images-slider {
  object-fit: contain;
  margin: 0 auto;
}

.product-card__image {
  width: 424px;
  height: 424px;
  object-fit: contain;
}

.product-card__image-video {
  border-radius: 20px;
  overflow: hidden;
}

.product-card__image--video {
  opacity: 1;
}

.product-card__image-wrap .product-card__icon-play {
  width: 60px;
  height: 60px;
  color: #ffffff;
}

.product-card__images-nav {
  padding: 0 30px;
  margin: 30px auto 0;
  max-width: 424px;
}

.product-card__images-nav-arrow {
  position: relative;
}

.product-card__images-nav-arrow:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid #2a2a2a;
  border-bottom: 2px solid #2a2a2a;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  transition: border-color 0.25s;
}

.product-card__images-nav-arrow:hover:after {
  border-color: #eb2127;
}

.product-card__images-nav .slick-arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px;
  cursor: pointer;
}

.product-card__images-nav .slick-prev {
  left: 0;
  z-index: 1;
}

.product-card__images-nav .slick-next {
  left: auto;
  right: 0;
}

.product-card__images-nav .slick-prev:after {
  -webkit-transform: translateY(-50%) rotate(135deg) scaleX(-1);
          transform: translateY(-50%) rotate(135deg) scaleX(-1);
  left: 12px;
}

.product-card__images-nav .slick-next:after {
  left: 7px;
}

.product-card__image {
  display: block;
  width: 100%;
}

.product-card__thumb-wrap {
  position: relative;
  padding: 0 6px;
}

.product-card__thumb {
  display: block;
  max-width: 100%;
  width: 61px;
  height: 61px;
  object-fit: contain;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.25s;
  margin: 0 auto;
}

.product-card__thumb--video {
  opacity: 1;
}

.product-card__thumb:hover {
  border-color: #eb2127;
}

.product-card__images-sticky-cover {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
  -webkit-align-self: flex-start;
          align-self: flex-start;
  width: 100%;
  z-index: 2;
}

.product-card__main-info .status-list {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  position: static;
  margin: -8px;
  -webkit-flex-direction: row;
          flex-direction: row;
}

.product-card__main-info .status-list__item.status-list__item {
  margin: 8px 3px;
}

.product-card__main-info {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 38px;
}

.product-card__main-info-top {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.product-card__compare-btn-wrap {
  display: -webkit-inline-flex;
  display: inline-flex;
  margin-left: 20px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-card__image-wrap {
  cursor: pointer;
  position: relative;
}

.product-card__title {
  margin-top: 8px;
}

.product-card__description {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  margin-top: 11px;
  margin-bottom: 0;
}

.product-card__price-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 9px;
}

.product-card__kit-wrap {
  margin-top: 26px;
}

.product-card__action {
  margin-top: 24px;
}

.product-card__action-btns .btn {
  padding: 0 8px;
}

.product-card__action-btns .btn + .btn {
  margin-left: 4px;
}

.product-card__action-btns {
  position: relative;
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
}

.product-card__action-btn--not-clickable {
  cursor: default;
}

.no-touch .product-card__action-btn--not-clickable:hover {
  background-color: #eb2127;
}

.product-card__additional {
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
  margin-top: 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.product-card__additional:empty {
  display: none;
}

.product-card__link {
  display: block;
  margin-top: 5px;
}

.product-card__more {
  display: none;
}

.modal .product-card__more {
  width: auto;
  display: -webkit-flex;
  display: flex;
  height: 48px;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  background-color: #EDEDED;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #2A2A2A;
  text-decoration: none;
  margin: 40px 24px 0;
}

.product-card .radio-tabs__col {
  width: 100%;
}

.product-card .checklist-image__items {
  margin: -10px -5px 0;
}

.product-card .checklist-image__item {
  width: auto;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 7px;
  margin-top: 10px;
}

.product-card .checklist-image__label {
  display: block;
  cursor: pointer;
  position: relative;
  height: 40px;
}

.product-card .checklist-image__visual {
  width: 16px;
  height: 16px;
}

.product-card .checklist-image__visual:before {
  top: 4px;
  left: 4px;
}

.product-card .checklist-image__color-marker {
  height: 32px;
  width: 48px;
}

.product-card .filter__wrap--selects {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -15px;
}

.product-card .filter__wrap--selects .filter__item {
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  padding: 0 15px;
}

.product-card__price-caption {
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
  margin-top: 9px;
}

.product-card__shopping-cart-icon {
  width: 32px;
  height: 32px;
  -webkit-flex: 0 0 32px;
          flex: 0 0 32px;
  margin-right: 8px;
}

.product-card__rating-wrap {
  margin-left: 26px;
  margin-top: -2px;
}

.product-card__lens {
  position: absolute;
  border: 2px solid #616668;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 0;
  transition: opacity 0.3s, box-shadow 0.3s;
  pointer-events: none;
}

.product-card__lens.shadow {
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.2);
}

.ie .product-card__lens {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.ie .zoom-disabled .product-card__lens {
  cursor: default;
}

.zoom-active .product-card__lens.shadow {
  opacity: 1;
}

.product-card__view-zoom-note {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #333333;
  color: #fff;
  padding: 7px 15px 9px 37px;
  border-radius: 15px;
  font-size: 13px;
  line-height: 1;
  z-index: 20;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}

.product-card__zoom-icon {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  top: 50%;
  margin-top: -8px;
}

.no-touch .zoom-active .product-card__view-zoom-note {
  opacity: 1;
  visibility: visible;
}

.no-touch .zoom-disabled .product-card__view-zoom-note {
  opacity: 0;
  visibility: hidden;
}

.product-card__clean-link {
  margin-top: 20px;
}

.product-card .filter {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-card .filter__item {
  width: 100%;
}

.product-card .filter__item--select {
  width: 33.333%;
  padding-right: 24px;
  -webkit-align-self: flex-end;
          align-self: flex-end;
}

.product-card__options {
  margin-top: 28px;
}

.product-card__link-wrap {
  margin-top: 3px;
}

.product-card__brand-link {
  margin-top: 32px;
}

.product-card__sub-action {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.product-card__compare-btn {
  margin-bottom: -5px;
  margin-left: 4px;
}

.product-card__delivery {
  margin-top: 20px;
}

.product-card__delivery-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.product-card__delivery-icon {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.product-card__delivery-title {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.product-card__delivery-list {
  margin-top: 14px;
}

.product-card__delivery-list:empty {
  margin: 0;
}

.product-card__delivery-item a:hover {
  color: #eb2127;
}

.product-card__delivery-item {
  margin-top: 5px;
  font-size: 13px;
  line-height: 18px;
}

.product-card__delivery-value {
  color: #39B74D;
}

.product-card__delivery-text a {
  color: inherit;
}

.product-card__delivery-text span b {
  color: #32AC4D;
  font-weight: normal;
}

.product-card__note-block {
  padding: 0;
  gap: 8px;
  -webkit-flex: 1 1 50%;
          flex: 1 1 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-card__iframe {
  width: 100%;
  height: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-card .slick-dots {
  display: none !important;
}

.product-card__icon-play {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.product-card__images-nav .product-card__icon-play {
  color: #ffffff;
  width: 26px;
  height: 26px;
}

.product-card__warranty {
  margin-top: 13px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #eb2127;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 10px;
}

.product-card__warranty-detail {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.product-card__tooltip-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: -5px;
  display: inline-block;
}

.product-card__tooltip-wrapper:before {
  position: absolute;
  top: 20px;
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.product-card__tooltip-icon {
  display: block;
}

.product-card__delivery-tooltip {
  position: absolute;
  z-index: 1;
  left: 0;
  margin: 9px 15px 0;
  padding: 10px 15px;
  width: calc(100% - 30px);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 18px rgba(33, 40, 46, 0.15);
  transition: opacity 0.2s, visibility 0.2s;
}

.product-card__tooltip-wrapper:hover ~ .product-card__delivery-tooltip,
.product-card__tooltip-wrapper:hover:before {
  opacity: 1;
  visibility: visible;
}

.product-card__text {
  position: relative;
  margin-top: 20px;
}

.product-card__text-toggle span {
  margin-right: 20px;
}

.product-card__text-toggle i::after {
  width: 5px;
  height: 5px;
  border-left: 1px solid #eb2127;
  border-bottom: 1px solid #eb2127;
  -webkit-transform: translateY(-1px) rotate(-45deg);
          transform: translateY(-1px) rotate(-45deg);
  content: "";
}

.product-card__text--open .product-card__text-content {
  visibility: visible;
  opacity: 1;
}

.product-card__text--open .product-card__text-toggle i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-card__text-toggle i {
  transition-duration: 300ms;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #eb2127;
  padding: 0;
}

.product-card__text-toggle {
  cursor: pointer;
  padding: 12px 16px 16px 20px;
  font-size: 14px;
  line-height: 21px;
  color: #eb2127;
  border: 1.5px solid #ffdde5;
  border-radius: 6px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.product-card__text-content {
  top: calc(100% + 2px);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition-duration: 300ms;
  z-index: 10;
  padding: 16px 20px 20px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(42, 42, 42, 0.08);
  border-radius: 6px;
  font-size: 13px;
  line-height: 18px;
  color: #7f7f7f;
}

.product--active.product--active {
  z-index: 30;
}

.product-card__one-click .svg-icon {
  width: 46px;
  height: 46px;
}

.product-card__instalment {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.product-card__instalment:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-card__instalment-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: #eb2127;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: color 0.25s, background-color 0.25s;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12);
  -webkit-flex: 0 0 48px;
          flex: 0 0 48px;
}

.product-card__instalment-btn:hover {
  color: #d21319;
}

.product-card__instalment-btn.btn:hover {
  background: #EDEDED;
}

.product-card__instalment-btn:active {
  color: #d21319;
}

.product-card__instalment-btn-icon {
  height: 24px;
  width: 24px;
  margin-right: 12px;
}

.product-card__main-info .status-list__item.status-list__item {
  margin: 8px 1.5px;
  padding: 5px 10px;
  font-size: 12px;
}

.product-card__compare-btn-indentation {
  margin-right: 4px;
}

.product-card__compare-btn-indentation:last-child {
  margin-right: 0;
}

@media (min-width: 1470px) {
  .page-section--large.product-card__related {
    margin-top: 125px;
  }

  .product-card__related .products-slider__item {
    width: 178px;
    height: 317px;
    padding: 0;
    margin-right: 42px;
  }

  .product-card__related .products-slider__heading {
    height: 48px;
  }

  .product-card__related .products-slider__title {
    height: 48px;
    line-height: 16px;
    overflow: hidden;
  }

  .product-card__related .products-slider__image {
    height: 175px;
  }

  .product-card__related .products-slider__action {
    margin-top: 14px;
  }
}
@media (max-width: 1239px) {
  .product-card__wrap {
    display: block;
  }

  .product-card__right {
    padding-left: 0;
    margin-top: 40px;
  }

  .product-card__aside-block {
    max-width: unset;
  }

  .product-card__instalment-btn {
    -webkit-flex: 0 0 44px;
            flex: 0 0 44px;
    height: 44px;
  }
}
@media (max-width: 759px) {
  .product-card__aside-wrap {
    padding: 15px;
  }

  .product-card__image {
    max-height: 300px;
  }

  .product-card__iframe {
    height: 60%;
  }
}
.compare-btn {
  position: relative;
}

.compare-btn--icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}

.compare-btn--icon:before,
.compare-btn--icon:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1.5px;
  background-color: #959696;
  top: 50%;
  left: 50%;
  transition: background-color 0.3s ease;
}

.compare-btn--icon:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.compare-btn--icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.compare-btn--icon:hover:before,
.compare-btn--icon:hover:after {
  background-color: #2A2A2A;
}

.compare-btn__btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  color: #7F7F7F;
  font-size: 14px;
  line-height: 21px;
  cursor: pointer;
  transition: color 0.25s;
}

.no-touch .compare-btn__btn:hover {
  color: #eb2127;
}

.compare-btn__icon {
  display: block;
  width: 28px;
  height: 29px;
}

.compare-btn__btn .compare-btn__icon {
  color: #2A2A2A !important;
  fill: #2A2A2A !important;
}

.compare-btn__btn.active .compare-btn__icon {
  color: #eb2127 !important;
  fill: #eb2127 !important;
}

.compare-btn__btn:hover .compare-btn__icon {
  color: #eb2127 !important;
  fill: #eb2127 !important;
}

.compare-btn__btn.active .compare-btn__icon {
  color: #eb2127;
}

.review-bar {
  border: 1px solid #E0E0E0;
  padding: 16px 24px;
  border-radius: 6px;
  margin-top: 24px;
  display: -webkit-flex;
  display: flex;
}

.review-bar__left {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: flex;
}

.review-bar__icon {
  width: 32px;
  height: 31px;
  margin-right: 16px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #eb2127;
}

.review-bar__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.review-bar__text {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-top: 6px;
  margin-bottom: 0;
}

.review-bar__right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 15px;
}

.review-bar__count {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

@media (max-width: 999px) {
  .review-bar {
    padding: 0;
    border: 0;
  }

  .review-bar__title {
    font-size: 14px;
    line-height: 20px;
  }

  .review-bar__text {
    display: none;
  }
}
.availability {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  line-height: 21px;
}

.availability--small {
  font-size: 13px;
}

.availability__marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 8.5px;
}

.availability__text {
  white-space: nowrap;
}

.kit__item {
  display: -webkit-flex;
  display: flex;
  margin-top: 5px;
}

.kit__left {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
}

.kit__right {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  text-align: right;
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
}

.hint {
  display: inline-block;
  margin-left: 4px;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.hint-btn {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.hint-icon {
  display: block;
  width: 18px;
  height: 18px;
  color: #C0C0C0;
  cursor: pointer;
}

.hint-icon.hint-icon {
  overflow: visible;
}

.hint-text {
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
  text-align: left;
}

.hint--absolute {
  position: absolute;
  top: -5px;
  left: auto;
  right: -28px;
}

@media (max-width: 759px) {
  .hint .dropdown__body::before,
.hint .dropdown__body::after {
    display: block;
  }

  .hint .dropdown__body {
    left: auto;
    right: -15px;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    border-radius: 6px;
  }

  .hint .dropdown__body--wide {
    width: 280px;
  }

  .hint .dropdown__body::before {
    left: auto;
    right: 28px;
  }

  .hint .dropdown__body::after {
    left: auto;
    right: 38px;
  }
}
.product-widget {
  border-radius: 6px;
  box-shadow: 0 0 0 4px #eb2127 inset;
  padding: 24px;
  margin-top: 24px;
}

.product-widget__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.product-widget__descr {
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
  margin-top: 5px;
}

.product-widget__content {
  margin-top: 12px;
  display: -webkit-flex;
  display: flex;
}

.product-widget__image {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 130px;
  object-fit: contain;
}

.product-widget__plus {
  position: relative;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 40px;
}

.product-widget__plus:before,
.product-widget__plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 1.5px;
  background-color: #C0C0C0;
}

.product-widget__plus:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.product-widget__action {
  margin-top: 16px;
}

@media (max-width: 999px) {
  .product-widget {
    box-shadow: none;
    padding: 0;
    margin-top: 16px;
  }

  .product-widget__action {
    font-size: 13px;
    line-height: 20px;
  }
}
.field-counter {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.field-counter__btn {
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
}

.field-counter__btn--minus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 1.5px;
  background-color: #959696;
  transition: background-color 0.25s;
}

.field-counter__btn--plus:before,
.field-counter__btn--plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 1.5px;
  background-color: #2A2A2A;
  transition: background-color 0.25s;
}

.field-counter__btn--plus:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.field-counter__input {
  width: 36px;
  height: 36px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  margin: 0 7px;
  text-align: center;
  padding: 0 2px;
  font-weight: 600;
}

.field-counter--small .field-counter__btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.field-counter--small .field-counter__input {
  width: 40px;
  margin: 0;
  height: 24px;
  font-weight: 400;
}

.no-touch .field-counter__btn--minus:not([disabled]):hover:after,
.no-touch .field-counter__btn--plus:not([disabled]):hover:before,
.no-touch .field-counter__btn--plus:not([disabled]):hover:after {
  background-color: #eb2127;
}

.product-card-form {
  margin-top: 17px;
}

.product-card-form__group {
  margin: 0 -15px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-card-form__item {
  margin-top: 30px;
  width: 100%;
  padding: 0 15px;
}

.product-card-form__item--narrow {
  margin-top: 16px;
}

.product-card-form__group-title + .product-card-form__item--narrow {
  margin-top: 8px;
}

.product-card-form__label {
  display: inline-block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin-right: 10px;
}

.product-card-form__current-value {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  color: #7F7F7F;
}

.product-card-form__field {
  margin-top: 14px;
}

.product-card-form__field--mt-alt {
  margin-top: 18px;
}

.product-card-form__link {
  margin-top: 12px;
  display: inline-block;
}

.product-card-form__group {
  margin-top: 10px;
}

.product-card-form__group-title {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  overflow: hidden;
  padding-left: 15px;
  margin-top: 15px;
  display: block;
  width: 100%;
}

.product-card-form__group-title-text {
  display: inline-block;
  position: relative;
}

.product-card-form__group-title-text:after {
  content: "";
  position: absolute;
  top: 11px;
  left: calc(100% + 15px);
  width: 1000px;
  height: 1px;
  background-color: #EDEDED;
}

.product-card__catalog:not(:empty) {
  padding-top: 34px;
  position: relative;
}

.product-card .geo-button__text {
  margin-left: 0;
}

@media (max-width: 1540px) {
  .product-card-form__item {
    width: 100% !important;
  }
}
@media (max-width: 999px) {
  .product-card-form {
    margin-top: 20px;
  }

  .product-card__catalog:not(:empty) {
    padding-top: 0;
  }

  .product-card-form__label {
    font-size: 13px;
    line-height: 18px;
  }

  .product-card-form__field {
    margin-top: 10px;
  }

  .product-card-form__item {
    margin-top: 16px;
  }
}
@media (max-width: 759px) {
  .product-card .location-prompt--inline {
    display: inline;
  }
}
.radio-tabs__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -16px -8px 0;
  width: calc(100% + 16px);
}

.radio-tabs__col {
  padding: 0 8px;
  margin-top: 16px;
  width: 50%;
  display: -webkit-flex;
  display: flex;
}

.radio-tabs__label {
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  margin-top: 16px;
  position: relative;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  padding: 22px 24px 20px;
  font-size: 16px;
  max-width: 100%;
  border: none;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(48, 41, 0, 0.2), 0 0 0 1px #EDEDED inset;
  background: #ffffff;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: none;
  outline: none;
  overflow: hidden;
  transition: color 0.25s ease-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #959696;
}

.radio-tabs__main {
  white-space: normal;
}

.radio-tabs__visual {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1px solid #C0C0C0;
  transition: inherit;
  background: #ffffff;
  border-radius: 50%;
  position: relative;
  margin-right: 12px;
  margin-top: 2px;
}

.radio-tabs__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s;
  background-color: #ffffff;
}

.radio-tabs__input:checked ~ .radio-tabs__visual {
  background: #eb2127;
  border: 1px solid transparent;
}

.radio-tabs__input:checked ~ .radio-tabs__visual::before {
  opacity: 1;
}

.radio-tabs__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.radio-tabs__border {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background-color: #eb2127;
  opacity: 0;
  transition: opacity 0.25s;
}

.radio-tabs__input:checked ~ .radio-tabs__border,
.no-touch .radio-tabs__label:hover .radio-tabs__border {
  opacity: 1;
}

.radio-tabs__text {
  display: block;
  color: #7F7F7F;
}

.radio-tabs__input:checked ~ .radio-tabs__main .radio-tabs__text {
  color: #2A2A2A;
}

.radio-tabs__input:checked ~ .radio-tabs__text,
.no-touch .radio-tabs__label:hover {
  color: #2A2A2A;
}

.radio-tabs__description {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 4px;
  font-weight: 400;
}

.radio-tabs__additional {
  margin-top: 32px;
  margin-bottom: 8px;
}

.radio-tabs__additional-images {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.radio-tabs__additional-text {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  margin-top: 8px;
}

.radio-tabs__additional-text:first-child {
  margin-top: 0;
}

@media (max-width: 999px) {
  .radio-tabs {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-top: 16px;
  }

  .radio-tabs__col {
    width: 100%;
  }

  .radio-tabs__label {
    font-size: 14px;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 36px;
    margin-top: 0;
    margin-right: 10px;
  }

  .radio-tabs__icon {
    max-width: 28px;
    max-height: 28px;
  }
}
.checkbox-tabs__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -16px -8px 0;
  width: calc(100% + 16px);
}

.checkbox-tabs__label {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  position: relative;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  padding: 19px 24px;
  font-size: 16px;
  max-width: 100%;
  border: none;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(48, 41, 0, 0.2), 0 0 0 1px #EDEDED inset;
  background: #ffffff;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: none;
  outline: none;
  overflow: hidden;
  transition: color 0.25s ease-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #959696;
}

.checkbox-tabs__main {
  white-space: normal;
}

.checkbox-tabs__visual {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: none;
  transition: inherit;
  background: #ffffff;
  box-shadow: 0 0 0 1px #C0C0C0 inset;
  z-index: 1;
  margin-top: 2px;
  margin-right: 12px;
  position: relative;
}

.checkbox-tabs__visual::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 6px;
  transition: opacity 0.25s;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1.5px solid #2A2A2A;
  border-left: 1.5px solid #2A2A2A;
  opacity: 0;
}

.checkbox-tabs__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.checkbox-tabs__border {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background-color: #eb2127;
  opacity: 0;
  transition: opacity 0.25s;
}

.checkbox-tabs__input:checked ~ .checkbox-tabs__border,
.no-touch .checkbox-tabs__label:hover .checkbox-tabs__border {
  opacity: 1;
}

.checkbox-tabs__text {
  display: block;
  color: #7F7F7F;
}

.checkbox-tabs__input:checked ~ .checkbox-tabs__main .checkbox-tabs__text {
  color: #2A2A2A;
}

.checkbox-tabs__input:checked ~ .checkbox-tabs__text,
.no-touch .checkbox-tabs__label:hover {
  color: #2A2A2A;
}

.checkbox-tabs__input:checked ~ .checkbox-tabs__visual {
  border-color: #eb2127;
  opacity: 1;
  background-color: #eb2127;
  box-shadow: 0 0 0 1px #eb2127 inset;
}

.checkbox-tabs__input:checked ~ .checkbox-tabs__visual::before {
  opacity: 1;
}

.checkbox-tabs__description {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #959696;
  margin-top: 4px;
}

.checkbox-tabs__note {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.checkbox-tabs__note:empty {
  margin: 0;
}

@media (max-width: 999px) {
  .checkbox-tabs {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-top: 0;
  }

  .checkbox-tabs__label {
    font-size: 14px;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 36px;
    margin-top: 0;
    margin-right: 10px;
  }

  .checkbox-tabs__icon {
    max-width: 28px;
    max-height: 28px;
  }
}
.molding {
  margin-top: 8px;
}

.molding__wrap {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.molding__left {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.molding__right {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.molding__image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 16px;
}

.molding__info {
  padding-right: 30px;
}

.molding__name {
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
}

.molding__series {
  font-size: 13px;
  line-height: 20px;
  color: #C0C0C0;
}

.molding__text {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.molding__price {
  min-width: 97px;
  margin-top: 7px;
}

.molding__quantity {
  margin-top: 7px;
  min-width: 60px;
}

.molding__counter {
  margin-right: 40px;
}

.molding__select-value {
  margin-left: 5px;
}

.molding__btn-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  margin-left: 15px;
}

.molding__btn {
  width: 36px;
  height: 36px;
  padding: 0;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.molding__icon {
  width: 20px;
  height: 18px;
}

.molding__icon--small {
  width: 16px;
  height: 14px;
}

.molding__btn--not-clickable {
  cursor: default;
}

.no-touch .molding__btn--not-clickable:hover {
  background-color: #eb2127;
}

@media (max-width: 1540px) {
  .product--molding-user .molding__wrap {
    display: block;
  }

  .molding__right {
    margin-top: 15px;
  }

  .molding__price {
    min-width: 80px;
  }

  .molding__counter {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media (max-width: 999px) {
  .molding {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 16px;
  }

  .product-card-form__group .product-card-form__item:last-child .molding {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .molding__left {
    width: 100%;
  }

  .molding__right {
    margin-top: 10px;
    width: 100%;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .molding__select {
    margin-right: 16px;
  }

  .molding__counter {
    margin-right: 16px;
  }

  .molding__price {
    min-width: 0;
  }

  .molding__price {
    margin-left: 0;
  }
}
@media (max-width: 759px) {
  .pair-section__grid {
    margin-top: -24px;
  }

  .pair-section__col {
    margin-top: 24px;
  }
}
.basket {
  position: relative;
}

.basket__wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin: 24px -24px 0;
}

.basket__main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 24px;
}

.basket__aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 24px;
}

.basket__body {
  background-color: #ffffff;
  padding: 32px 52px 40px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
}

.basket__location-point {
  margin-top: 32px;
}

.basket__aside-body {
  border-radius: 6px;
  background-color: #ffffff;
  width: 318px;
  padding: 23px 24px 32px;
  box-shadow: 0 0 20px rgba(42, 42, 42, 0.08);
}

.basket__aside-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.basket__service-form {
  margin: 8px -8px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.basket__services-description {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-top: 24px;
}

.basket__aside-params {
  margin-top: 16px;
}

.basket__aside-param {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 3px;
}

.basket__aside-param-name {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-right: 10px;
}

.basket__aside-param-value {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-left: 10px;
}

.basket__aside-action {
  margin-top: 24px;
}

.basket__aside-btn {
  margin-top: 16px;
}

.basket__aside-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.basket__footer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-top: 42px;
  border-top: 1px solid #EDEDED;
}

.basket__banners {
  margin-top: 24px;
}

.basket__banners-grid {
  margin: -24px -12px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.basket__banners-col {
  padding: 0 12px;
  margin-top: 24px;
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-flex;
  display: flex;
}

.basket__message {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
}

.basket__links-action {
  margin-top: 8px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.basket__link-action {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 16px;
  margin-top: 16px;
}

.basket__service-field {
  margin-top: 16px;
  padding: 0 8px;
  width: 100%;
}

.basket .shop-picker__main {
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.basket .shop-picker__left {
  width: 100%;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 20px;
}

.basket .shop-picker__right {
  width: 100%;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 380px;
}

.basket .shop-picker__item {
  padding: 20px;
}

.basket .shop-picker__items {
  max-height: 380px;
  padding-left: 0;
  padding-right: 0;
}

.basket .shop-picker__link-back-wrap {
  padding-left: 0;
  padding-right: 0;
}

.basket .shop-picker__filter-wrap {
  padding-left: 0;
  padding-right: 0;
}

.basket__note-block {
  margin-top: 24px;
  max-width: 318px;
}

.basket__inner-button {
  cursor: pointer;
  color: #eb2127;
}

.basket__inner-button:hover {
  text-decoration: underline;
}

@media (max-width: 1239px) {
  .basket__body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .basket__banners-col {
    width: 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .basket__note-block {
    max-width: 100%;
  }
}
@media (max-width: 1239px) {
  .basket__wrap {
    display: block;
  }

  .basket__aside-body {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
  }

  .basket__body {
    padding: 24px 15px 32px;
  }

  .basket__footer {
    margin-top: 0;
    padding-top: 24px;
  }
}
@media (max-width: 999px) {
  .basket__service-field {
    width: 100% !important;
  }

  .basket__wrap {
    margin: 24px 0 0;
  }

  .basket__aside {
    margin-top: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .basket__footer {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }

  .basket__btn-link {
    margin-top: 16px;
  }

  .basket__main {
    padding-left: 0;
    padding-right: 0;
  }
}
.btn-link {
  display: -webkit-inline-flex;
  display: inline-flex;
  cursor: pointer;
  color: #B2B2B2;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.btn-link__icon {
  height: 24px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  margin-right: 8px;
  margin-top: -2px;
  transition: color 0.25s;
}

.btn-link__text {
  border-bottom: 1px solid transparent;
  transition: color 0.25s;
}

.btn-link:hover {
  color: #eb2127;
}

.small-banner {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 32px 52px 40px;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
}

.small-banner__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.small-banner__main {
  display: -webkit-flex;
  display: flex;
  margin-top: 16px;
}

.small-banner__left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-top: 10px;
}

.small-banner__image-wrap {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.small-banner__image {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 48px;
  margin-right: 24px;
}

.small-banner__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.small-banner__right p {
  margin-top: 0;
  margin-bottom: 0;
}

.small-banner--disabled .small-banner__title {
  color: #959696;
}

.small-banner--disabled .small-banner__image-wrap {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.5;
}

@media (max-width: 1239px) {
  .small-banner {
    padding: 24px 15px 32px;
  }

  .small-banner__main {
    margin-top: 10px;
  }
}
.simple-form__note {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #959696;
}

.simple-form__fields {
  margin-top: 24px;
}

.simple-form__field {
  margin-top: 24px;
}

.simple-form__action {
  margin-top: 24px;
}

.simple-form__action-note {
  margin-top: 22px;
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.form-success__header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.form-success__icon {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin-right: 20px;
}

.form-success__title {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: 3px;
}

.form-success__message {
  font-size: 16px;
  line-height: 24px;
  color: #959696;
  margin-top: 16px;
}

.form-success__strong {
  color: #2A2A2A;
}

.checkout__wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin: 24px -24px 0;
}

.checkout__main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 24px;
}

.checkout__aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 24px;
}

.checkout__body {
  background-color: #ffffff;
  padding: 32px 40px 43px;
  border-radius: 6px;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
}

.checkout__banner {
  margin-top: 24px;
}

.checkout__aside-body {
  width: 318px;
}

.checkout__aside-body:not(:empty) {
  padding: 26px 24px 24px;
  border-radius: 6px;
  background-color: #ffffff;
}

.checkout__aside-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.checkout__aside-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.checkout__checkout {
  margin-top: 16px;
}

.checkout__aside-params {
  margin-top: 16px;
}

.checkout__aside-param {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 3px;
}

.checkout__aside-param-name {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-right: 10px;
}

.checkout__aside-param-value {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
  margin-left: 10px;
}

.checkout__success {
  max-width: 50%;
}

.checkout__success-header {
  display: -webkit-flex;
  display: flex;
}

.checkout__success-icon {
  width: 48px;
  height: 48px;
  margin-right: 24px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.checkout__success-title {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 400;
}

.checkout__success-params {
  margin-top: 32px;
}

.checkout__success-param {
  border-top: 1px solid #EDEDED;
  padding: 11px 0 12px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.checkout__success-param:last-child {
  border-bottom: 1px solid #EDEDED;
}

.checkout__success-param-name {
  font-size: 16px;
  line-height: 24px;
  color: #959696;
  padding-right: 12px;
}

.checkout__success-param-value {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  padding-left: 15px;
  text-align: right;
}

.checkout__success-param-value--big {
  font-size: 22px;
  line-height: 18px;
  font-weight: 600;
}

.checkout__success-param-value--strong {
  color: #eb2127;
}

.checkout__success-footer {
  margin-top: 40px;
}

@media (max-width: 1540px) {
  .checkout .rich-form__row {
    min-width: 50% !important;
  }
}
@media (max-width: 1239px) {
  .checkout__aside {
    display: none;
  }
}
@media (max-width: 999px) {
  .checkout__wrap {
    display: block;
    padding: 24px 15px 0;
    margin: 0 -15px 0;
  }

  .checkout__body {
    padding: 24px 15px;
  }

  .checkout__main {
    padding: 0;
  }

  .checkout__aside-body:empty {
    display: none;
  }

  .checkout__aside-body:not(:empty) {
    margin-top: 24px;
    width: 100%;
    padding: 24px 15px;
  }

  .checkout__success {
    max-width: 100%;
  }

  .checkout__success-title {
    font-size: 14px;
    line-height: 20px;
  }

  .checkout__success-footer {
    margin-top: 24px;
  }

  .checkout__success-param-name {
    font-size: 14px;
    line-height: 20px;
  }

  .checkout__success-param-value {
    font-size: 14px;
    line-height: 20px;
  }
}
.form-resume {
  background-color: #ffffff;
  padding: 32px 52px 40px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
}

.form-resume__caption {
  font-size: 16px;
  line-height: 24px;
  color: #959696;
}

.form-resume__content {
  padding-left: 28px;
  position: relative;
  margin-top: 20px;
}

.form-resume__content:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border: 5px solid #eb2127;
  border-radius: 50%;
  background-color: #2A2A2A;
}

.form-resume__title {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
}

.form-resume__text-wrap {
  margin-top: 20px;
  max-width: 658px;
}

.form-resume__text {
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
}

.form-resume__text-accent {
  font-weight: 600;
}

.form-resume__text:first-child {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
}

.form-resume__link {
  display: inline-block;
  margin-top: 16px;
}

@media (max-width: 1239px) {
  .form-resume {
    padding: 24px 15px;
  }
}
.location-point__wrap {
  display: -webkit-flex;
  display: flex;
}

.location-point__left {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 20px;
}

.location-point__right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.location-point__address {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
}

.location-point__phone {
  font-size: 14px;
  line-height: 18px;
  color: #2A2A2A;
  margin-top: 8px;
  margin-bottom: 8px;
}

.location-point__shedule {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-top: 7px;
}

.location-point__text {
  font-size: 14px;
  line-height: 24px;
  color: #959696;
}

.location-point__map-wrap {
  position: relative;
  margin-top: 24px;
  height: 360px;
}

@media (max-width: 759px) {
  .location-point__wrap {
    display: block;
  }

  .location-point__btn {
    margin-top: 20px;
  }
}
.y-map {
  position: absolute;
  width: 100%;
  height: 100%;
}

.y-map__baloon-header {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
}

.y-map__baloon-body {
  margin-top: 5px;
}

.y-map__baloon-transport {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
}

.y-map__baloon-phone {
  font-size: 14px;
  line-height: 18px;
  color: #2A2A2A;
  margin-top: 17px;
}

.y-map__baloon-phone:empty {
  margin-top: 0;
}

.y-map__baloon-shedule {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-top: 6px;
}

.y-map__baloon-shedule:empty {
  margin-top: 0;
}

ymaps[class$=-balloon__close-button] {
  opacity: 0.7;
}

ymaps[class$=-balloon__layout] {
  max-width: 380px;
}

ymaps[class$=-balloon__content] {
  padding: 44px 24px 28px;
}

ymaps[class$=-balloon__content] > * {
  max-width: calc(100% - 48px) !important;
  height: auto !important;
}

ymaps[class$=-balloon__close] + ymaps[class$=-balloon__content] {
  margin-right: 0;
}

.y-map__baloon-footer {
  margin-top: 14px;
}

ymaps [class$=ground-pane],
ymaps canvas {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

ymaps[class$=-default-cluster] {
  font-size: 18px;
}

.y-map__pin {
  display: block;
  width: 56px;
  height: 64px;
  position: relative;
}

.y-map__pin-visual {
  width: 56px;
  height: 64px;
  display: block;
}

.y-map__pin-icon {
  display: block;
  width: 56px;
  height: 64px;
  object-fit: contain;
}

.y-map__pin-icon--black {
  display: none;
}

.y-map__pin.active .y-map__pin-icon--yellow {
  display: none;
}

.y-map__pin.active .y-map__pin-icon--black {
  display: block;
}

.additional-info {
  margin-top: 32px;
}

.additional-info__images {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.additional-info__image {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 48px;
  margin-right: 24px;
}

.additional-info__title {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
  margin-top: 8px;
}

.additional-info__text {
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
  margin-top: 8px;
  max-width: 690px;
}

.additional-info__link {
  display: inline-block;
  margin-top: 16px;
}

.shop-picker {
  position: relative;
}

.shop-picker__header {
  padding: 32px 24px;
  border-bottom: 1px solid #EDEDED;
}

.shop-picker--salons .shop-picker__header {
  padding: 0 0 24px;
}

.shop-picker__left {
  width: 50%;
  background-color: #ffffff;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
}

.shop-picker__main {
  display: -webkit-flex;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}

.shop-picker__filter-wrap {
  padding: 24px;
  border-bottom: 1px solid #EDEDED;
}

.shop-picker__right {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
  border-bottom-right-radius: 6px;
}

.shop-picker__items {
  padding: 0 40px 0 24px;
  max-height: 576px;
  overflow: auto;
}

.shop-picker__item {
  display: -webkit-flex;
  display: flex;
  padding: 20px 0 20px 0;
  min-height: 190px;
  border-bottom: 1px solid #EDEDED;
  cursor: pointer;
}

.shop-picker__item.active {
  background-color: #eb2127;
  padding: 20px;
}

.shop-picker__item:last-child {
  border-bottom: 0;
}

.shop-picker__item-left {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: relative;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 24px;
}

.shop-picker__item-gallery {
  width: 252px;
  -webkit-flex: 0 0 252px;
          flex: 0 0 252px;
}

.shop-picker__item-address {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  font-weight: 600;
  transition: color 0.25s;
}

.no-touch .shop-picker__item:hover .shop-picker__item-address {
  color: #eb2127;
}

.shop-picker__item-transport {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-top: 4px;
}

.shop-picker__item-shedule {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  opacity: 1;
  transition: opacity 0.25s;
  margin-top: 15px;
  min-height: 36px;
}

.no-touch .shop-picker__item:hover .shop-picker__item-shedule {
  opacity: 0;
}

.no-touch .shop-picker__item.active:hover .shop-picker__item-shedule {
  opacity: 1;
}

.shop-picker__item-button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: visibility 0.25s, z-index 0.25s, opacity 0.25s;
}

.no-touch .shop-picker__item:hover .shop-picker__item-button {
  z-index: 11;
  visibility: visible;
  opacity: 1;
}

.no-touch .shop-picker__item:hover .small-gallery .slick-arrow {
  opacity: 1;
}

.shop-picker .filter__item {
  margin-top: 20px;
}

.shop-picker__location-wrap {
  padding: 20px 24px 24px;
}

.shop-picker__location-title {
  color: #2A2A2A;
}

.shop-picker__location-btn {
  display: inline;
  color: #eb2127;
  cursor: pointer;
}

.shop-picker__location-btn-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
}

.shop-picker__location-list {
  margin-top: 24px;
  max-height: 486px;
  overflow: auto;
}

.shop-picker__location-city {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #2A2A2A;
  border-bottom: 1px solid #EDEDED;
  padding: 13px 0;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s;
  text-align: left;
}

.no-touch .shop-picker__location-city:hover {
  color: #eb2127;
}

.shop-picker__location-city:last-child {
  border-bottom: 0;
}

.shop-picker__link-back-wrap {
  padding: 15px 24px 20px;
  color: #eb2127;
}

.shop-picker__item-labels {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -12px;
}

.shop-picker__item-label {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  line-height: 18px;
  padding: 0 12px;
  margin-top: 12px;
  color: #959696;
}

.shop-picker__item-label-img {
  display: block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 1239px) {
  .shop-picker__main {
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .shop-picker__left {
    width: 100%;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-top: 20px;
  }

  .shop-picker__right {
    width: 100%;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    height: 380px;
  }

  .shop-picker__items {
    max-height: 380px;
  }
}
@media (max-width: 999px) {
  .shop-picker__header {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-align-items: center;
            align-items: center;
    padding: 0 15px;
    height: 64px;
    box-shadow: 0 3px 6px rgba(21, 22, 22, 0.1);
  }

  .shop-picker__title {
    font-size: 16px;
    line-height: 22px;
  }

  .shop-picker__items {
    padding: 0 15px;
  }

  .shop-picker__item {
    min-height: 0;
  }

  .shop-picker__item-left {
    padding-right: 0;
  }

  .shop-picker__item-gallery {
    display: none;
  }

  .shop-picker__item-button {
    display: none;
  }

  .no-touch .shop-picker__item:hover .shop-picker__item-shedule {
    opacity: 1;
  }

  .shop-picker__filter-wrap {
    padding: 24px 15px;
    border-bottom: 1px solid #EDEDED;
  }

  .shop-picker__location-wrap {
    padding: 24px 15px;
  }
}
.small-gallery {
  width: 250px;
  height: 150px;
}

.small-gallery:not(.slick-initialized) {
  overflow: hidden;
}

.small-gallery .slick-list {
  border-radius: 6px;
  overflow: hidden;
}

.small-gallery .slick-arrow {
  opacity: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out, opacity 0.25s ease-out;
}

.article__main {
  margin-top: 32px;
  border-radius: 6px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.article__left {
  width: 298px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  border-right: 1px solid #ffffff;
  padding: 0 20px 22px 0;
}

.article__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 52px;
  min-width: 0;
}

.article__inner {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 80px 52px;
  min-width: 0;
}

.article__inner:first-child {
  padding-top: 0;
}

.article__right--header {
  padding: 0 24px 52px;
}

.article__right--slider {
  padding: 0 0 80px;
}

.article__right--no-paddings {
  padding: 0;
}

.article__list {
  margin-top: 28px;
}

.article__list-link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  padding: 2px 12px;
  border-radius: 6px;
}

.article__list-link.active {
  background-color: #EDEDED;
}

.article__list-level-2 {
  margin-top: 10px;
}

.article__list-item-level-2 {
  margin-left: 12px;
}

.article__list-link-level-2 {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #959696;
  margin-top: 2px;
  padding: 5px 12px;
  border-radius: 6px;
}

.article__list-link-level-2.active {
  background-color: #EDEDED;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #2A2A2A;
}

.article__form-wrap {
  margin-top: 80px;
}

.article__form-wrap:first-child {
  margin-top: 0;
}

.article__link-back {
  margin-top: 32px;
}

.article__products {
  margin-top: 24px;
}

.article__block {
  position: relative;
}

.article__wrapper {
  padding: 0 52px;
}

.article__wrapper--no-paddings.article__wrapper--no-paddings {
  padding: 0;
}

.article__wrapper--paddings.article__wrapper--paddings {
  padding: 40px 52px 52px;
}

.article__wrapper--mt40 {
  margin-top: 40px;
}

.article__wrapper--mb40 {
  margin-bottom: 40px;
}

.article__header {
  border-bottom: 1px solid #EDEDED;
  padding: 24px 0;
}

.article__header .filter {
  max-width: 300px;
}

.article__header .filter__select {
  margin: 0;
}

.article__footer {
  padding-top: 40px;
}

.article__line {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
}

.article__text {
  max-width: 404px;
  margin: 0;
}

.article__line .btn {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-left: 52px;
}

.article__wrapper {
  padding: 0 52px;
}

.article .catalog__container {
  padding: 0;
}

.article .catalog__inner-products,
.article .catalog__inner-main,
.article .page-section__main {
  margin-top: 0;
}

@media (max-width: 999px) {
  .article__main {
    display: block;
    margin-top: 24px;
  }

  .article__right {
    padding: 24px 15px;
  }

  .article__right--header {
    padding: 0 24px 52px;
  }

  .article__right--slider {
    padding: 0 0 24px;
  }

  .article__right--no-paddings {
    padding: 0;
  }

  .article__form-wrap {
    margin-top: 40px;
  }

  .article__link-back {
    margin-top: 24px;
  }

  .article__main-tabs-wrap {
    min-width: 100%;
    overflow: auto;
  }

  .article__wrapper {
    padding: 0 32px;
  }

  .article__wrapper--scrolled {
    overflow-x: auto;
  }

  .article__wrapper--paddings.article__wrapper--paddings {
    padding: 24px 32px;
  }

  .article__wrapper--mt40 {
    margin-top: 24px;
  }

  .article__wrapper--mb40 {
    margin-bottom: 24px;
  }

  .article__inner {
    padding: 80px 0;
  }
}
@media (max-width: 759px) {
  .article__footer {
    padding-top: 24px;
  }

  .article__line {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }

  .article__line .btn {
    margin-left: 0;
    margin-top: 32px;
  }

  .article__wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 479px) {
  .article__wrapper {
    padding: 0 16px;
  }
}
.attention-block {
  display: block;
  background-color: #FEF9DA;
  margin: 32px 0;
  border-radius: 6px;
  padding: 24px;
}

.attention-block--gray {
  background-color: #F6F6F6;
}

.attention-block__icon {
  width: 22px;
  height: 22px;
  margin-right: 17px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.attention-block__content {
  color: #2A2A2A;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  line-height: 24px;
}

.attention-block__content--small {
  font-size: 14px;
  line-height: 22px;
}

.attention-block p,
.attention-block ul,
.attention-block ol {
  margin: 16px 0;
}

.attention-block p:first-child,
.attention-block ul:first-child,
.attention-block ol:first-child {
  margin-top: 0;
}

.attention-block p:only-child,
.attention-block ul:only-child,
.attention-block ol:only-child {
  margin-bottom: 0;
}

.attention-block__section {
  display: -webkit-flex;
  display: flex;
}

.attention-block__section:not(:first-child) {
  margin-top: 24px;
  padding-top: 30px;
  border-top: 1px solid #EDEDED;
}

.attention-block ol > li {
  margin-bottom: 8px;
}

.image-block {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin: 40px 0;
}

.image-block__image {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  height: auto;
  width: 50%;
  max-width: 50%;
  padding-right: 20px;
  margin-bottom: 0;
}

.text-guide img.image-block__image {
  margin-bottom: 0;
}

.image-block__content {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
}

.image-block__content p {
  margin: 16px 0;
}

@media (max-width: 1239px) {
  .image-block {
    display: block;
    margin-top: 24px;
  }

  .image-block__image {
    padding-right: 0;
    width: 100%;
  }

  .image-block__content {
    margin-top: 24px;
    padding-left: 0;
    width: 100%;
  }
}
.tel-number {
  margin-top: 16px;
}

.tel-number:first-child {
  margin-top: 0;
}

.tel-number__link {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #2A2A2A;
}

.no-touch a.tel-number__link:hover {
  display: inline-block;
  color: #eb2127;
  text-decoration: none;
}

.tel-number__caption {
  display: inline-block;
  color: #959696;
  margin-left: 5px;
}

.location-field {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #2A2A2A;
  margin-top: 10px;
}

.location-field:first-child {
  margin-top: 0;
}

.location-field .geo-button__text {
  margin-left: 0;
}

.tab-behavior {
  margin-top: 24px;
}

.tab-behavior--null {
  margin: 0;
}

.tab-behavior--top {
  margin: 0;
  padding-top: 48px;
}

@media (max-width: 759px) {
  .tab-behavior--top {
    padding-top: 15px;
  }
}
.brands {
  width: 100%;
  position: relative;
  z-index: 1;
}

.brands__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -24px -12px 104px;
}

.brands__col {
  padding: 0 12px;
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  width: 33.3333%;
  margin-top: 24px;
}

.brands__item {
  display: block;
  position: relative;
}

.no-touch .text-guide a.brands__item:hover {
  text-decoration: none;
}

.brands__image-wrap {
  border-radius: 6px;
  max-height: 260px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s;
}

.no-touch .brands__item:hover .brands__image-wrap {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
}

.brands__image {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
}

.brands__info {
  position: relative;
  padding: 16px 24px 24px;
  background-color: #ffffff;
  z-index: 0;
  transition: z-index 0.25s;
}

.brands__info--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.25s;
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.no-touch .brands__item:hover {
  z-index: 4;
}

.no-touch .brands__item:hover .brands__info--relative {
  z-index: 10;
}

.no-touch .brands__item:hover .brands__info--absolute {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.brands__action {
  margin-top: 16px;
}

.brands__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.brands__header-left {
  padding-right: 20px;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 50%;
}

.brands__header-name {
  font-size: 24px;
  line-height: 34px;
  color: #2A2A2A;
  font-weight: 600;
}

.brands__header-caption {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.brands__header-right {
  color: #959696;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 50%;
}

.brands__logo-wrap {
  margin-top: 10px;
}

.brands__logo {
  width: 100%;
  max-width: 100px;
}

.brands__description {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-top: 10px;
  max-height: 44px;
  overflow: hidden;
}

.brands__info--absolute .brands__description {
  max-height: none;
  overflow: visible;
}

@media (max-width: 1239px) {
  .brands__col {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
}
@media (max-width: 999px) {
  .brands__grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: -24px -12px 84px;
  }

  .brands__col {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 0;
  }

  .brands__link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
.article-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -10px -12px 0;
}

.article-grid__item {
  width: 33.3333%;
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  padding: 0 12px;
  margin-top: 10px;
}

@media (max-width: 1239px) {
  .article-grid__item {
    width: 50%;
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (max-width: 759px) {
  .article-grid__item {
    width: 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.article-item {
  display: block;
  position: relative;
  z-index: 1;
}

.no-touch .article-item:hover {
  z-index: 10;
}

.no-touch .text-guide .article-item:hover {
  text-decoration: none;
}

.article-item__image-wrap {
  max-height: 240px;
  overflow: hidden;
  border-radius: 6px;
}

.no-touch .article-item:hover .article-item__image-wrap {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
}

.article-item__image {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0, 0, 0, 1);
}

.article-item__main {
  padding: 16px 24px 24px;
  position: relative;
  background-color: #ffffff;
  z-index: 0;
  transition: z-index 0.25s;
}

.article-item__main--relative {
  position: relative;
}

.article-item__main--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: z-index 0.25s, visibility 0.25s, opacity 0.25s;
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.no-touch .article-item:hover .article-item__main--relative {
  z-index: 10;
}

.no-touch .article-item:hover .article-item__main--absolute {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.article-item__date {
  font-size: 13px;
  line-height: 20px;
  color: #959696;
}

.article-item__title {
  color: #2A2A2A;
  margin-top: 6px;
  max-height: 48px;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.article-item__text {
  font-size: 14px;
  line-height: 22px;
  margin-top: 10px;
  color: #7F7F7F;
  max-height: 66px;
  overflow: hidden;
}

.article-item__main--absolute .article-item__text {
  max-height: none;
  overflow: visible;
}

.article-item__action {
  margin-top: 16px;
}

.salon-card__wrap {
  border-radius: 6px;
  background-color: #fff;
}

.salon-card__main {
  display: -webkit-flex;
  display: flex;
}

.salon-card__left {
  -webkit-flex: 0 0 864px;
          flex: 0 0 864px;
  width: 864px;
  min-width: 0;
}

.salon-card__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 25px 24px 0 40px;
  min-width: 0;
}

.salon-card__title {
  margin-top: 16px;
}

.salon-card__address {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  margin-top: 28px;
}

.salon-card__transport {
  font-size: 16px;
  line-height: 24px;
  color: #959696;
  margin-top: 6px;
}

.salon-card__contacts {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 4px -20px 0;
}

.salon-card__contact {
  padding: 0 20px;
  margin-top: 16px;
}

.salon-card__contact-title {
  font-size: 14px;
  line-height: 18px;
  color: #959696;
}

.salon-card__contact-text {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  margin-top: 6px;
}

.salon-card__action {
  margin-top: 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.salon-card__action-btn {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 16px;
  margin-top: 16px;
}

.salon-card__features {
  margin: 20px -20px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 570px;
}

.salon-card__feature {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-flex;
  display: flex;
  padding: 0 20px;
  margin-top: 20px;
}

.salon-card__feature-img-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eb2127;
  margin-right: 16px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.salon-card__feature-img {
  width: 24px;
  height: 24px;
}

.salon-card__feature-text {
  font-size: 14px;
  line-height: 18px;
  color: #7F7F7F;
  margin-top: 15px;
}

@media (max-width: 1367px) {
  .salon-card__left {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    min-width: 0;
  }

  .salon-card__right {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
    min-width: 0;
  }
}
@media (max-width: 999px) {
  .salon-card__main {
    display: block;
  }

  .salon-card__left {
    width: 100%;
  }

  .salon-card__right {
    width: 100%;
    padding: 24px 15px;
  }
}
@media (max-width: 759px) {
  .salon-card__features {
    width: 100%;
  }

  .salon-card__feature {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.payment-info {
  margin-top: 70px;
  padding: 0 52px;
}

.payment-info__wrap {
  display: -webkit-flex;
  display: flex;
  margin: 18px -20px 0;
}

.payment-info__left {
  width: 60%;
  -webkit-flex: 0 0 60%;
          flex: 0 0 60%;
  padding: 0 20px;
}

.payment-info__right {
  width: 40%;
  -webkit-flex: 0 0 40%;
          flex: 0 0 40%;
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1239px) {
  .payment-info__wrap {
    display: block;
  }

  .payment-info__left {
    width: 100%;
  }

  .payment-info__right {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 999px) {
  .payment-info {
    margin-top: 24px;
    padding: 0 15px;
  }
}
.faq__header {
  padding: 24px 0;
  border-bottom: 1px solid #EDEDED;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
}

.faq__header .btn {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-left: 24px;
}

.faq__text {
  margin: 0;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.faq__item {
  padding: 24px 0;
  border-bottom: 1px solid #EDEDED;
}

.faq__title {
  margin-bottom: 16px;
}

@media (max-width: 639px) {
  .faq__header {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }

  .faq__text {
    width: 100%;
  }

  .faq__header .btn {
    margin-left: 0;
    margin-top: 16px;
  }
}
.question {
  margin-bottom: 16px;
}

.question:last-child {
  margin-bottom: 0;
}

.question__title {
  display: inline-block;
  position: relative;
  color: #407BB4;
  transition: all 0.3s ease;
  margin: 0;
  padding-right: 26px;
  font-weight: 600;
  cursor: pointer;
}

.question__title::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #407BB4;
  border-bottom: 2px solid #407BB4;
  position: absolute;
  right: 7px;
  top: 11px;
  -webkit-transform: translateY(-50%) rotate(45deg) scale(1, 1);
          transform: translateY(-50%) rotate(45deg) scale(1, 1);
  transition: all 0.3s ease;
}

.question--active .question__title::after {
  -webkit-transform: translateY(0) rotate(45deg) scale(-1, -1);
          transform: translateY(0) rotate(45deg) scale(-1, -1);
}

.question__inner {
  padding: 10px 0 8px;
}

.question__card {
  background: #F6F6F6;
  border-radius: 4px;
  padding: 24px 24px 28px;
}

.about {
  padding: 0 52px 52px;
  margin-top: 80px;
}

.about__item {
  overflow: hidden;
}

.about__item--reverse .content-grid {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about__image {
  overflow: hidden;
  border-radius: 4px;
}

.about__image .image {
  width: 100%;
  object-fit: cover;
}

.about__image .content-grid {
  margin: -1px;
}

.about__image .content-grid__item {
  padding: 1px;
}

.about__content {
  padding: 16px 0;
}

.about__text {
  color: #7F7F7F;
}

.about__slider {
  margin: 80px 0 52px;
}

@media (max-width: 1367px) {
  .about {
    padding: 0 32px 32px;
    margin-top: 56px;
  }

  .about__item > .content-grid {
    margin: -16px;
  }

  .about__item > .content-grid > .content-grid__item {
    padding: 16px;
    width: 50%;
  }

  .about__slider {
    margin: 56px 0 40px;
  }
}
@media (max-width: 1123px) and (min-width: 1000px), (max-width: 759px) {
  .about__item > .content-grid > .content-grid__item {
    width: 100%;
  }

  .about__content {
    padding: 0;
  }
}
@media (max-width: 999px) {
  .about {
    padding: 0 15px 15px;
    margin-top: 24px;
  }
}
.content-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px;
}

.content-grid__item {
  width: 50%;
  padding: 20px;
}

.content-grid .content-grid__item:only-child {
  width: 100%;
}

.employee-reviews {
  margin-top: 24px;
}

.employee-reviews__card {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.employee-reviews__card--gray {
  background: #F6F6F6;
  border-radius: 4px;
  padding: 52px;
}

.employee-reviews__photo {
  width: 136px;
  height: 136px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
}

.employee-reviews__photo .image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.employee-reviews__preview {
  position: relative;
}

.employee-reviews__preview::before {
  content: "";
  display: block;
  background: url("/local/images/markup-images/quotes.svg") no-repeat center;
  background-size: contain;
  width: 32px;
  height: 28px;
  position: absolute;
  left: -12px;
  top: -8px;
  z-index: 1;
}

.employee-reviews__preview .text-guide {
  position: relative;
  z-index: 2;
}

.employee-reviews__name {
  margin-top: 16px;
}

.employee-reviews__info {
  color: #959696;
  font-size: 14px;
  line-height: 1.57;
  margin-top: 6px;
}

.employee-reviews__card--gray .employee-reviews__info {
  color: #7F7F7F;
}

.employee-reviews__info p {
  margin: 0;
}

.employee-reviews__card .link {
  margin-top: 16px;
  display: inline-block;
}

.employee-reviews__slider .main-slider-arrow--prev {
  left: 0;
  right: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.employee-reviews__slider .main-slider-arrow--next {
  right: 0;
  left: auto;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.employee-reviews__review {
  margin-top: 32px;
}

.employee-reviews__text {
  color: #7F7F7F;
}

@media (max-width: 1239px) and (min-width: 1000px) {
  .employee-reviews__card--gray {
    padding: 40px;
  }
}
@media (max-width: 999px) {
  .employee-reviews__card {
    padding: 40px;
  }
}
@media (max-width: 639px) {
  .employee-reviews__photo {
    display: none;
  }
}
@media (max-width: 375px) {
  .employee-reviews__card {
    padding: 32px;
  }
}
.accordion {
  padding: 24px 0;
  border-bottom: 1px solid #EDEDED;
}

.accordion__top {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
}

.accordion__icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.accordion__icon::before, .accordion__icon::after {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #2A2A2A;
}

.accordion__icon::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease;
}

.accordion--active .accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.accordion__inner {
  padding: 24px 0 16px;
}

.accordion__content {
  margin-bottom: 32px;
}

.gallery-popup {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  /*contain: strict;*/
}

.gallery-popup__view {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  position: relative;
  overflow: hidden;
  /*contain: strict;*/
}

.gallery-popup__view-list {
  display: -webkit-flex;
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: 0.3s;
  width: 100%;
}

.gallery-popup__view-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 80px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.gallery-popup__view-item-wrapper {
  transition: 0.3s;
}

.gallery-popup__view-item-wrapper,
.gallery-popup__view-item-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}

.gallery-popup__view-item-wrapper img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.no-touch .gallery-popup__view-item-wrapper {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.gallery-popup__arrow {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-popup__arrow.disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.25);
}

.gallery-popup__view-item-note {
  pointer-events: none;
  width: 100%;
}

.gallery-popup__view-item-note-box {
  pointer-events: all;
  color: #ffffff;
  padding: 12px 0;
  cursor: default;
  cursor: auto;
}

.gallery-popup__block {
  width: 100%;
  max-height: calc(100vh - 100px);
  max-width: 600px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}

.gallery-popup__arrow::before,
.gallery-popup__arrow::after {
  border-color: #fff;
}

.gallery-popup__arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gallery-popup__arrow--prev {
  left: 20px;
  right: auto;
}

.gallery-popup__arrow--next {
  right: 20px;
  left: auto;
}

.gallery-popup__close {
  position: absolute;
  margin: 0;
  top: -16px;
  right: -65px;
  z-index: 10;
}

.touch .gallery-popup__arrow {
  display: none;
}

.touch .gallery-popup__view-item-wrapper {
  pointer-events: none;
}

.gallery-popup__iframe {
  width: 600px;
  height: 338px;
}

.gallery-popup__video-image {
  width: 100%;
  height: 100%;
}

@media (max-width: 999px) {
  .gallery-popup__close {
    height: 47px;
    right: -50px;
  }

  .gallery-popup__close::before,
.gallery-popup__close::after {
    background-color: #2A2A2A;
  }

  .gallery-popup .gallery-popup__close::before,
.gallery-popup .gallery-popup__close::after {
    background-color: #2A2A2A;
  }

  .gallery-popup__iframe {
    width: 100%;
    height: 100%;
  }

  .gallery-popup__block {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .gallery-popup__view-item {
    padding: 0 24px;
  }

  .gallery-popup__close {
    top: -50px;
    right: -15px;
  }
}
.guarantee__block .simple-form__fields {
  max-width: 536px;
}

.guarantee__block .simple-form__action .btn {
  display: inline-block;
  width: auto;
}

.certificate .content-grid {
  margin: 0;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.certificate .content-grid__item {
  padding: 0;
  width: 25%;
}

.certificate__item {
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(21, 22, 22, 0.15);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  padding: 32px 24px 28px;
  position: relative;
  z-index: 1;
}

.no-touch .certificate__item:hover {
  box-shadow: 0 6px 16px 0 rgba(21, 22, 22, 0.15);
  z-index: 2;
}

.certificate__photo {
  padding: 0 36px;
}

.certificate__info {
  margin-top: 16px;
}

@media (max-width: 1367px) {
  .certificate .content-grid__item {
    width: 33.333%;
  }
}
@media (max-width: 1239px) {
  .certificate .content-grid__item {
    width: 50%;
  }
}
@media (max-width: 639px) {
  .certificate__item {
    padding: 20px 8px;
  }

  .certificate__photo {
    padding: 0 20px;
  }
}
@media (max-width: 479px) {
  .certificate .content-grid {
    -webkit-justify-content: center;
            justify-content: center;
  }

  .certificate .content-grid__item {
    width: 100%;
    max-width: 296px;
  }
}
.partners {
  padding-top: 40px;
}

.partners__intro {
  margin-bottom: 24px;
}

.partners__list {
  overflow: hidden;
}

.partners__list .content-grid {
  margin: -8px -12px;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.partners__list .content-grid__item {
  padding: 8px 12px;
  width: 33.333%;
}

.partners__item {
  display: block;
}

.partners__image {
  border: 1px solid #C0C0C0;
  border-radius: 4px;
  width: 100%;
  padding-bottom: 56.73%;
  position: relative;
}

.partners__image .image {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: calc(100% - 88px);
  max-height: calc(100% - 56px);
}

.partners__description {
  padding: 16px 24px;
  line-height: 1.5;
}

@media (max-width: 1239px) {
  .partners__list .content-grid__item {
    width: 50%;
  }
}
@media (max-width: 639px) {
  .partners__list .content-grid {
    margin: -8px;
  }

  .partners__list .content-grid__item {
    padding: 8px;
  }

  .partners__description {
    padding: 12px 0;
  }

  .partners__image .image {
    max-width: calc(100% - 32px);
    max-height: calc(100% - 24px);
  }
}
@media (max-width: 479px) {
  .partners__list .content-grid__item {
    width: 100%;
  }
}
.partners-details__intro {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #EDEDED;
}

.partners-details__image {
  margin-right: 40px;
  width: 245px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  padding: 20px;
}

.partners-details__main {
  padding: 40px 0 32px;
}

@media (max-width: 639px) {
  .partners-details__image {
    margin-right: 24px;
    width: 154px;
    padding: 16px;
  }
}
@media (max-width: 479px) {
  .partners-details__intro {
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .partners-details__image {
    margin-right: 0;
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
    padding: 0;
  }

  .partners-details__info {
    width: 100%;
  }
}
.card-block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.card-block__img.card-block__img {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  margin-right: 20px;
  max-width: 80px;
  margin-bottom: 0;
}

.card-block__title.card-block__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}

.product-grid-small {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-grid-small__item {
  -webkit-flex: 0 0 14.286%;
          flex: 0 0 14.286%;
  width: 14.286%;
}

@media (max-width: 1239px) {
  .product-grid-small__item {
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    width: 20%;
  }
}
@media (max-width: 999px) {
  .product-grid-small__item {
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    width: 33.3333%;
  }
}
@media (max-width: 639px) {
  .product-grid-small__item {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
}
.product-grid-middle {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-grid-middle__item {
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  margin-bottom: -58px;
}

@media (max-width: 999px) {
  .product-grid-middle__item {
    margin-bottom: 0;
  }
}
@media (max-width: 759px) {
  .product-grid-middle__item {
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    width: 33.3333%;
  }
}
@media (max-width: 639px) {
  .product-grid-middle__item {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
}
.map-banner__wrap {
  background-color: #ffffff;
  border-radius: 6px;
  display: -webkit-flex;
  display: flex;
}

.map-banner__left {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 63px 52px 60px;
}

.map-banner__right {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 0;
  position: relative;
}

.map-banner__item {
  margin-top: 18px;
  display: -webkit-flex;
  display: flex;
}

.map-banner__icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 2px;
}

.map-banner__icon:first-child {
  margin-top: 2px;
}

.map-banner__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
}

@media (max-width: 999px) {
  .map-banner__wrap {
    display: block;
  }

  .map-banner__left {
    width: 100%;
    padding: 24px 15px 24px;
  }

  .map-banner__right {
    width: 100%;
    height: 300px;
  }
}
.panorama {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.reviews-list {
  width: 100%;
}

.reviews-list__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #F6F6F6;
  padding: 24px 52px;
}

.reviews-list__left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.reviews-list__right {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.reviews-list__items {
  padding: 0 52px;
  position: relative;
}

.reviews-list__page-nav-wrap {
  padding: 0 52px 56px;
}

.reviews-list__item {
  padding: 40px 0;
  border-bottom: 1px solid #F6F6F6;
}

.reviews-list__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 999px) {
  .reviews-list__header {
    padding: 24px 15px;
    display: block;
  }

  .reviews-list__right {
    margin-top: 24px;
  }

  .reviews-list__items {
    padding: 0 15px;
  }

  .reviews-list__item {
    padding: 24px 0;
  }

  .reviews-list__page-nav-wrap {
    padding: 0 15px 24px;
  }
}
.double-image {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin: 0 -12px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.double-image__image {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 12px;
  object-fit: contain;
}

.double-image__image.double-image__image {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 999px) {
  .double-image {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.private-order {
  display: -webkit-flex;
  display: flex;
}

.private-order__left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 415px;
}

.private-order__image {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}

.private-order__right {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 40px;
}

.private-order__subtitle {
  font-size: 14px;
  line-height: 22px;
  color: #959696;
  margin-top: 8px;
}

.private-order__link {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  color: #eb2127;
  margin-top: 8px;
}

.private-order__link-text {
  border-bottom: 1px solid transparent;
  transition: border 0.25s;
}

.no-touch .private-order__link:hover .private-order__link-text {
  border-bottom: 1px solid #eb2127;
}

.private-order__description {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  margin-top: 16px;
}

.private-order__action {
  margin-top: 32px;
}

@media (max-width: 999px) {
  .private-order {
    display: block;
  }

  .private-order__left {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 200px;
    width: auto;
  }

  .private-order__right {
    margin-left: 0;
    margin-top: 24px;
  }
}
.main-blockquote__blockquote {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border-left: 0;
  margin: 0;
  color: inherit;
  max-width: 100%;
}

.main-blockquote__blockquote,
.text-guide .main-blockquote__blockquote,
.main-blockquote__blockquote:first-child,
.text-guide .main-blockquote__blockquote:first-child {
  margin: 28px 0 0;
  position: relative;
}

.main-blockquote__blockquote:before {
  content: "";
  display: block;
  background: url(/local/images/markup-images/quotes-white.svg) center no-repeat;
  background-size: contain;
  width: 46px;
  height: 46px;
  position: absolute;
  left: -20px;
  top: -25px;
  z-index: -1;
  opacity: 0.6;
}

.main-blockquote__text {
  font-size: 20px;
  line-height: 28px;
  color: #2A2A2A;
  font-style: italic;
}

.main-blockquote__text p {
  margin-top: 16px;
  margin-bottom: 16px;
}

.main-blockquote__text p:first-child {
  margin-top: 0;
}

.main-blockquote__author {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  margin-top: 24px;
}

@media (max-width: 999px) {
  .main-blockquote__text {
    font-size: 16px;
    line-height: 24px;
  }

  .main-blockquote__blockquote:before {
    width: 30px;
    height: 30px;
    left: -15px;
    top: -14px;
  }

  .main-blockquote__author {
    font-size: 14px;
    line-height: 22px;
    margin-top: 16px;
  }

  .main-blockquote__blockquote,
.main-blockquote__blockquote:first-child {
    margin-top: 10px;
  }
}
.file-input {
  position: relative;
  min-height: 48px;
  box-shadow: 0 0 0 1px #C0C0C0 inset;
  background-color: #ffffff;
  border-radius: 6px;
  transition: 0.25s, height 0s;
}

.no-touch .file-input:hover {
  box-shadow: 0 0 0 1px #959696 inset;
}

.file-input__main {
  display: -webkit-flex;
  display: flex;
}

.file-input__cell-input {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.file-input__cell-note {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 20px;
  -webkit-align-self: center;
          align-self: center;
}

.file-input__note {
  color: #959696;
  font-size: 14px;
  line-height: 22px;
}

.special-open .file-input__note {
  color: inherit;
}

.file-input__input-block {
  width: 100%;
  position: relative;
  display: block;
}

.file-input__input {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
}

.file-input__list {
  margin: 10px 0;
  display: block;
}

.file-input__btn {
  min-height: 48px;
  height: auto;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  color: #959696;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  background: transparent;
  box-shadow: none;
}

.no-touch .file-input__btn:hover {
  box-shadow: none;
}

.field--w-placeholder .file-input__btn {
  padding: 0 16px;
}

.field--photo .file-input__list {
  display: none !important;
}

.field--photo .file-list__item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  font-size: 12px;
  line-height: 14px;
  color: #221e1f;
  height: auto;
  margin-bottom: 8px;
}

.field--photo .file-list__item:last-child {
  margin-bottom: 0;
}

.file-input__placeholder {
  padding: 0 40px 0 0;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- file list --- */
.file-list__items {
  display: block;
  -webkit-align-self: flex-start;
          align-self: flex-start;
  top: 0;
  left: 0;
  right: auto;
  -webkit-align-items: center;
          align-items: center;
  z-index: 2;
  padding: 0 16px;
  margin-right: 55px;
  margin-top: -48px;
}

.file-list__item {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  line-height: 22px;
  color: #2A2A2A;
  margin-right: 16px;
  height: 48px;
}

.file-list__item-start {
  max-width: 100%;
  max-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-list__item-remove {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: 16px;
  height: 16px;
  color: #2A2A2A;
  cursor: pointer;
  transition: 0.25s;
  position: relative;
  margin-top: 0;
  margin-left: 2px;
}

.file-list__item-remove::before,
.file-list__item-remove::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #969696;
  top: 50%;
  left: 50%;
  transition: background-color 0.25s;
}

.file-list__item-remove::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.file-list__item-remove::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.special-open .file-list__item-remove {
  color: inherit;
}

.file-input__icon-folder {
  width: 16px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #eb2127;
}

.file-list__item-remove .svg-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
}

.no-touch .file-list__item-remove:hover {
  color: #2A2A2A;
}

.special-open.no-touch.special-open .file-list__item-remove:hover {
  color: inherit;
}

@media (max-width: 999px) {
  .field--photo .file-input__list {
    display: block !important;
  }
}
@media (max-width: 639px) {
  /* --- file input --- */
  .file-input__main {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .file-input__cell-input,
.file-input__cell-note {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    margin: 0;
  }

  .file-input__cell-note {
    margin-top: 10px;
  }
}
.examples__block {
  margin-bottom: 32px;
}

.examples__block:last-child {
  margin-bottom: 0;
}

.examples__grid {
  overflow: hidden;
}

.examples__grid .content-grid {
  margin: -4px;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.examples__grid .content-grid__item {
  padding: 4px;
  width: 88px;
}

.examples__preview {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.examples__description {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  margin-top: 0;
}

.datepicker {
  width: 100%;
  display: block;
  color: #2A2A2A;
  position: relative;
}

.datepicker * {
  box-sizing: border-box;
}

.datepicker .picker-wrap {
  position: absolute;
  z-index: 1000;
  width: 100%;
  min-width: 280px;
  background-color: #ffffff;
  box-shadow: 0 0 6px #959696;
}

.datepicker.datepicker table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 10px 10px;
  margin: 0;
}

.datepicker.datepicker tr {
  height: 34px;
  border: 0 none;
}

.datepicker.datepicker th {
  font-weight: 700;
  color: #959696;
  font-size: 14px;
  line-height: 20px;
  height: 42px;
  text-transform: uppercase;
  background: #ffffff;
}

.datepicker.datepicker th,
.datepicker.datepicker td {
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 34px;
  height: 32px;
  padding: 0;
  border: 0 none;
  line-height: 32px;
  text-align: center;
  min-height: 0;
  min-width: 0;
  vertical-align: inherit;
}

.datepicker.datepicker td {
  cursor: pointer;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: border 0.25s;
}

.datepicker.datepicker td:hover {
  font-weight: 700;
  border-bottom: 2px solid #2A2A2A;
  background-color: #f0f0f0;
}

.datepicker.datepicker td.date-pass,
.datepicker.datepicker td.date-future {
  color: #2A2A2A;
}

.datepicker.datepicker td.date-highlight {
  background: #2A2A2A;
  color: #ffffff;
}

.datepicker.datepicker td.date-highlight:hover {
  background: #2A2A2A;
}

.datepicker.datepicker td.date-disabled {
  cursor: not-allowed;
  color: #959696;
  opacity: 0.5;
}

.datepicker.datepicker td.date-disabled:hover {
  border-color: transparent;
  background-color: transparent;
  font-weight: 400;
}

.datepicker.datepicker td.date-active {
  background-color: #eb2127;
  color: #2A2A2A;
}

.datepicker .date-head {
  background-color: #2A2A2A;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.datepicker .date-days {
  color: #2A2A2A;
  font-size: 14px;
}

.datepicker .show-year {
  display: inline-block;
  min-width: 50px;
  vertical-align: middle;
}

.datepicker .show-month {
  display: inline-block;
  min-width: 66px;
  vertical-align: middle;
}

.datepicker__svg-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.datepicker .btn-prev,
.datepicker .btn-next {
  cursor: pointer;
  display: inline-block;
  padding: 0 11px;
}

.datepicker .btn-prev::after,
.datepicker .btn-next::after {
  position: relative;
  content: "";
  left: 2px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: transparent;
  transition: border 0.25s, background-color 0.25s;
}

.btn-prev:hover::after,
.btn-next:hover::after {
  border-top: 1px solid #2A2A2A;
  border-left: 1px solid #2A2A2A;
}

.datepicker .btn-next::after {
  left: -2px;
  border: 0 none;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.datepicker .btn-prev:hover,
.datepicker .btn-next:hover {
  background: #2A2A2A;
}

.datepicker .btn-next:hover::after {
  border-right: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
}

.datepicker__label {
  display: block;
  cursor: pointer;
}

.datepicker__icon {
  position: absolute;
  top: 12px;
  left: auto;
  right: 8px;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.datepicker--small {
  min-width: 130px;
  width: 130px;
}

.datepicker .datepicker__container {
  position: absolute;
  z-index: 1000;
  width: 100%;
  min-width: 280px;
  margin-top: 2px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  transition: 0.25s, left 0s;
  opacity: 0;
  visibility: hidden;
}

.datepicker.open .datepicker__container,
.datepicker--static .datepicker__container {
  opacity: 1;
  visibility: visible;
}

.datepicker--static .datepicker__container {
  position: static;
  margin: 0;
}

.datepicker td.date-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2A2A2A;
}

.datepicker td.date-active.date-highlight::after {
  background: #ffffff;
}

.datepicker .datepicker__head {
  background-color: #ffffff;
  text-align: center;
  color: #2A2A2A;
  font-size: 14px;
}

.datepicker.datepicker .datepicker__head th {
  color: #2A2A2A;
  height: 39px;
}

.datepicker__head-row {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
}

.datepicker .datepicker__body {
  color: #2A2A2A;
  font-size: 14px;
}

.datepicker .datepicker__head-year,
.datepicker .datepicker__head-month {
  display: -webkit-flex;
  display: flex;
  text-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.datepicker .datepicker__year {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin: 0 10px;
}

.datepicker .datepicker__month {
  margin: 0 10px;
  display: -webkit-flex;
  display: flex;
  height: 24px;
  -webkit-align-items: center;
          align-items: center;
}

.datepicker .datepicker__btn-prev,
.datepicker .datepicker__btn-next {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.datepicker .datepicker__btn-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.datepicker .datepicker__btn-prev .svg-icon,
.datepicker .datepicker__btn-next .svg-icon {
  width: 24px;
  height: 24px;
}

.datepicker .dropdown__body {
  width: 398px;
}

@media (max-width: 999px) {
  .datepicker .dropdown__body::after {
    display: none;
  }
}
@media (max-width: 759px) {
  .datepicker .dropdown__body {
    width: 398px;
  }
}
@media (max-width: 479px) {
  .datepicker td,
.datepicker th {
    width: 30px;
  }

  .datepicker .btn-next,
.datepicker .btn-prev {
    padding: 0 10px;
  }

  .datepicker .dropdown__body {
    width: 300px;
  }

  .datepicker .datepicker__month,
.datepicker .datepicker__year {
    margin: 0 8px;
  }
}
.action-text {
  margin-top: 12px;
}

.confirm-panel {
  position: fixed;
  width: 1500px;
  max-width: calc(100% - 40px);
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  padding: 30px 40px;
  -webkit-align-items: center;
          align-items: center;
  transition: 0.3s;
  background: rgba(127, 127, 127, 0.85);
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  z-index: 200;
}

.confirm-panel__cell-main {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.confirm-panel__cell-action {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 60px;
}

.confirm-panel.closed {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
}

.confirm-panel:not(.closed) ~ .button-top {
  opacity: 0;
  visibility: hidden;
}

.confirm-panel__link {
  border-bottom-color: #ffffff;
}

.no-touch .confirm-panel__link:hover {
  border-bottom-color: transparent;
}

@media (max-width: 1367px) {
  .confirm-panel__cell-action {
    margin-left: 40px;
  }
}
@media (max-width: 1239px) {
  .confirm-panel {
    bottom: 15px;
    width: 100%;
    max-width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 999px) {
  .confirm-panel__cell-action {
    margin-left: 30px;
  }
}
@media (max-width: 759px) {
  .confirm-panel {
    -webkit-flex-direction: column;
            flex-direction: column;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  .confirm-panel__cell-action {
    margin: 15px 0 0;
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 374px) {
  .confirm-panel {
    font-size: 12px;
    line-height: 20px;
  }
}
.pc-catalog {
  position: relative;
}

.pc-catalog__standart-kit-wrap .product--molding .molding__counter,
.pc-catalog__standart-kit-wrap .product--molding .molding__btn-wrap {
  display: none;
}

.pc-catalog__wrap {
  display: -webkit-flex;
  display: flex;
  padding-top: 26px;
}

.pc-catalog__filter {
  -webkit-flex: 0 0 220px;
          flex: 0 0 220px;
  padding-right: 32px;
}

.pc-catalog__items {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.pc-catalog__item:not(:first-child) {
  border-top: 1px solid #EDEDED;
}

.pc-catalog__item {
  padding: 10px 0;
}

.pc-catalog .check-list__color-marker {
  width: 32px;
  height: 24px;
}

.pc-catalog .field--color .checkbox-row__text {
  margin-top: 0;
}

.pc-catalog .check-list--column .check-list__item {
  margin-top: 16px;
}

.pc-catalog__card {
  border-bottom: 1px solid #EDEDED;
}

.pc-catalog__standart-kit-wrap {
  margin-top: 15px;
}

.pc-catalog__panel {
  background-color: #F6F6F6;
  padding: 24px;
  margin-top: 18px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.pc-catalog__panel-right {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-left: auto;
  width: 100%;
}

.pc-catalog__panel-price-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  padding-right: 15px;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.pc-catalog__panel-text {
  font-size: 13px;
  line-height: 18px;
  color: #959696;
  display: inline-block;
  margin-right: 10px;
}

.pc-catalog__panel .field-counter__input {
  background-color: transparent;
}

.pc-catalog__standart-kit-wrap .pc-catalog__item .molding__btn {
  display: none;
}

.pc-catalog__standart-kit-wrap .molding__price {
  min-width: 72px;
}

.pc-catalog .product__title:after {
  display: none;
}

.pc-catalog .catalog__pagination {
  padding: 0;
}

.pc-catalog__btn-basket-wrap {
  position: relative;
}

.pc-catalog__btn {
  -webkit-flex: 0 0 300px;
          flex: 0 0 300px;
  max-width: 300px;
}

@media (max-width: 1540px) {
  .pc-catalog__item {
    padding: 20px 0;
  }
}
@media (max-width: 1239px) {
  .pc-catalog__panel-right {
    display: block;
  }

  .pc-catalog__panel-right--flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }

  .pc-catalog__panel-price-wrap {
    margin-right: 0;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }

  .pc-catalog__panel-right--flex .pc-catalog__panel-price-wrap {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }

  .pc-catalog__btn {
    margin-top: 15px;
  }
}
@media (max-width: 999px) {
  .pc-catalog__item:not(:first-child) {
    border-top: 0;
    padding-top: 0;
  }

  .pc-catalog__wrap {
    display: block;
    padding-top: 26px;
  }

  .pc-catalog__filter {
    padding-right: 0;
  }

  .pc-catalog__items {
    margin-top: 0;
    padding-left: 0;
  }

  .pc-catalog .catalog__pagination {
    margin: 0;
  }

  .pc-catalog__btn {
    max-width: 100%;
  }
}
@media (max-width: 759px) {
  .pc-catalog__panel-right {
    display: block;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

  .pc-catalog__panel-right--flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }

  .pc-catalog__tabs {
    overflow: auto;
  }

  .pc-catalog__panel {
    display: block;
  }

  .pc-catalog__panel-right {
    margin-top: 15px;
  }

  .pc-catalog__panel-right--flex .pc-catalog__panel-price-wrap {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
}
@media (max-width: 374px) {
  .pc-catalog__panel-right {
    display: block;
  }

  .pc-catalog__panel-right .molding__btn {
    margin-left: 0;
    margin-top: 15px;
  }
}
.compare-small {
  cursor: pointer;
}

.basket-small {
  cursor: pointer;
}

.photo-input__main {
  position: relative;
  background-color: #fff;
  text-align: center;
}

.photo-input__input {
  display: none;
}

.photo-input__box {
  display: block;
  width: 100%;
  height: 248px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #cdcdcd inset;
  color: #F4A603;
  text-align: left;
  position: relative;
  transition: 0.25s, height 0s;
  outline: none;
  cursor: pointer;
  overflow: hidden;
}

.photo-input--multiple .photo-input__box {
  height: auto;
  min-height: 248px;
}

.photo-input__btn-wrap img {
  display: block;
  width: 172px;
  height: 246px;
  object-fit: cover;
}

.photo-input--multiple .photo-input__btn-wrap img {
  width: 100%;
}

.photo-input__btn-wrap,
.photo-input__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.photo-input__btns {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -14px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding: 1px;
}

.photo-input__btn-wrap--relative {
  position: relative;
  width: 25%;
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  padding-left: 14px;
  padding-right: 14px;
  margin-top: 28px;
}

.photo-input__multiple-text {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: absolute;
  -webkit-justify-content: center;
          justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #2A2A2A;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  padding: 0 14px;
  transition: color 0.25s;
  z-index: 1;
}

.photo-input--multiple.photo-input--has-image .photo-input__btns {
  padding-bottom: 50px;
}

.photo-input--multiple.photo-input--limit-image .photo-input__btns {
  padding-bottom: 0;
}

.photo-input--multiple.photo-input--has-image .photo-input__multiple-text {
  color: #2A2A2A;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  padding-bottom: 15px;
}

.photo-input--multiple.photo-input--has-image .photo-input__main:hover .photo-input__multiple-text {
  color: #ffffff;
}

.photo-input__placeholder-icon {
  display: block;
  margin: 0 18%;
  position: relative;
  line-height: 0;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(100% - 18% - 18%);
}

.photo-input__placeholder-icon::before {
  content: "";
  display: block;
  padding-top: calc(102 / 96 * 100%);
}

.photo-input__placeholder-icon .svg-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #2A2A2A;
}

.photo-input__placeholder-text {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
}

.photo-input__placeholder-text--pushed {
  margin-top: 21%;
}

.photo-input__note {
  color: #2A2A2A;
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0;
}

.no-touch .photo-input__box:hover {
  box-shadow: 0 0 0 1px #2A2A2A inset;
}

.photo-input__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.photo-input--has-image .photo-input__box::after {
  background-color: rgba(0, 0, 0, 0.4);
}

.no-touch .photo-input__main:hover .photo-input__box::after {
  opacity: 1;
}

.photo-input--multiple .photo-input__btn {
  display: none;
}

.photo-input--multiple .photo-input__label2 {
  display: none;
}

.no-touch .photo-input__box:focus,
.no-touch .photo-input__box:active,
.photo-input__box:active {
  box-shadow: 0 0 0 1px #2A2A2A inset;
  background: #ffffff;
}

.form-error .photo-input__box.photo-input__box {
  box-shadow: 0 0 0 1px #FF380D inset;
}

.photo-input__remove {
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  line-height: 0;
  cursor: pointer;
  transition: 0.25s;
  color: #fff;
  opacity: 0;
}

.photo-input__main:hover .photo-input__remove {
  opacity: 1;
  color: #d8d8d8;
}

.photo-input__remove .svg-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 3;
}

.no-touch .photo-input__remove:hover {
  color: #EDEDED;
}

.photo-input__btn {
  padding-left: 20px;
  padding-right: 20px;
  background-color: transparent;
  z-index: 2;
  transition: opacity 0.25s;
}

.photo-input--has-image .photo-input__btn {
  opacity: 0;
}

.photo-input--has-image .photo-input__main:hover .photo-input__btn {
  opacity: 1;
}

.photo-input--has-image .photo-input__btn {
  border: 1px solid #fff;
  color: #fff;
}

.photo-input__mob-label {
  display: none;
}

.photo-input .btn__icon {
  display: none;
  position: absolute;
  top: 17px;
  right: 16px;
  width: 16px;
  height: 13px;
  color: #eb2127;
  z-index: 1;
}

.photo-input__message {
  display: none;
}

.photo-input .file-list__item {
  display: none;
}

.photo-input__label2 {
  color: #221E1F;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 8px;
  padding: 0 14px;
}

.photo-input__modal-button {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 16px;
}

.field--photo-extendable {
  position: relative;
}

.field--photo-extendable .field__add-text {
  display: none;
}

.field--photo-extendable .field__add-text {
  display: none;
}

.field--photo-extendable .field__add-icon {
  margin-right: 0;
}

.field--photo-extendable .field__add {
  position: absolute;
  bottom: 16px;
  right: 0;
  margin-top: 0;
}

.field--photo-extendable .field__elem {
  position: relative;
}

@media (max-width: 1239px) {
  .photo-input__btn-wrap--relative {
    width: 33.3333%;
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
}
@media (max-width: 999px) {
  .photo-input--multiple .photo-input__box {
    height: auto;
    min-height: 48px;
  }

  .photo-input__multiple-text {
    display: none;
  }

  .photo-input {
    width: 100%;
  }

  .photo-input__box {
    width: 100%;
    height: 48px;
  }

  .photo-input__btn {
    display: none;
  }

  .photo-input__mob-label {
    display: block;
  }

  .photo-input__main {
    margin-top: 7px;
    text-align: left;
  }

  .photo-input__modal-button {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 16px;
  }

  .photo-input .btn__icon {
    display: block;
  }

  .photo-input__remove,
.photo-input--has-image .photo-input__box::after {
    display: none;
  }

  .photo-input__message {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
    line-height: 22px;
    color: #6e6f72;
    height: 48px;
    width: 100%;
    -webkit-align-items: center;
            align-items: center;
    text-align: left;
    padding: 0 16px;
  }

  .no-touch .photo-input__box:focus {
    background: transparent;
  }

  .photo-input .file-list__item {
    display: -webkit-flex;
    display: flex;
  }

  .photo-input__label2 {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
    line-height: 22px;
    color: #6e6f72;
    height: 48px;
    width: 100%;
    -webkit-align-items: center;
            align-items: center;
    text-align: left;
    padding: 0 16px;
  }

  .photo-input__btn-wrap img {
    display: none;
  }

  .photo-input--multiple.photo-input--has-image .photo-input__btns {
    padding-bottom: 0;
  }
}
.zoom-box {
  position: absolute;
  top: 8px;
  left: calc(100% + 50px);
  width: 300px !important;
  max-height: 600px;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
}

.zoom-active .zoom-box {
  opacity: 1;
  visibility: visible;
}

.zoom-box__img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
}

.simple-banner {
  display: block;
  width: 485px;
  height: 170px;
  border-radius: 6px;
  background-color: #C0C0C0;
  padding: 40px 32px;
  background-size: cover;
  color: inherit;
  transition: color 0.25s;
  margin-bottom: 20px;
}

.no-touch a.simple-banner:hover {
  color: #eb2127;
}

.simple-banner__logo {
  display: block;
  max-width: 110px;
}

.simple-banner__text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 10px;
  max-width: 250px;
}

.tag-link {
  height: 28px;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 0 12px;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  background-color: #ffffff;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.25s, border 0.25s;
  color: inherit;
}

.no-touch a.tag-link:hover {
  border: 1px solid #eb2127;
  color: #eb2127;
}

.main-banner {
  margin-bottom: 32px;
}

.main-banner__wrap {
  display: -webkit-flex;
  display: flex;
}

.main-banner__left {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding-top: 24px;
}

.main-banner__right {
  padding-top: 24px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 448px;
  min-width: 0;
}

@media (max-width: 999px) {
  .main-banner__wrap {
    display: block;
  }

  .main-banner__right {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .main-banner__right {
    padding-top: 40px;
  }
}
.grid-banner {
  padding-left: 12px;
}

.flex-banner {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.flex-banner .grid-banner__col {
  -webkit-flex: 1 0 118px;
          flex: 1 0 118px;
  padding: 0;
}

.flex-banner .grid-banner__col .grid-banner__item {
  padding: 10px;
  width: 100%;
  height: 120px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  border-radius: 12px;
}

.flex-banner .grid-banner__col .grid-banner__item .grid-banner__image {
  max-width: 80px;
  max-height: 70px;
  object-fit: contain;
}

.flex-banner .grid-banner__col .grid-banner__item .grid-banner__text {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0;
  font-size: 12px;
  line-height: 1.08;
  text-align: center;
}

.grid-banner__grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -12px 0 -12px 0;
  width: calc(100% + 24px);
}

.grid-banner__col {
  -webkit-flex: 0 0 224px;
          flex: 0 0 224px;
  width: 224px;
  padding: 12px;
}

.grid-banner__item {
  background: #F4F4F4;
  border-radius: 6px;
  width: 200px;
  height: 200px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding: 20px;
  color: #232323;
  text-decoration: none;
}

.no-touch a.grid-banner__item:hover {
  color: #eb2127;
}

.grid-banner__image {
  width: 126px;
  height: 126px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.grid-banner__text {
  display: block;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

@media (max-width: 1239px) {
  .flex-banner {
    gap: 12px;
  }
}
@media (max-width: 999px) {
  .grid-banner {
    padding-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .grid-banner__grid {
    margin: -12px;
  }

  .grid-banner__col {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }

  .grid-banner__item {
    width: 100%;
  }

  .flex-banner {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 479px) {
  .grid-banner__col {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-bottom: 0;
  }

  .grid-banner__item {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    text-align: left;
    height: auto;
    padding: 10px;
  }

  .grid-banner__image {
    width: 50px;
    height: 50px;
    margin: 0 20px 0 0;
  }

  .grid-banner__text {
    margin: 0;
  }

  .flex-banner {
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .flex-banner .grid-banner__col .grid-banner__item .grid-banner__image {
    width: 60px;
    height: 60px;
  }

  .flex-banner .grid-banner__col {
    -webkit-flex: 1;
            flex: 1;
  }

  .flex-banner .grid-banner__col .grid-banner__item {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    gap: 12px;
    position: relative;
    height: 68px;
  }

  .flex-banner .grid-banner__col .grid-banner__item .grid-banner__image {
    margin-right: 0;
  }

  .flex-banner .grid-banner__col .grid-banner__item:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #7F7F7F;
    border-right: 2px solid #7F7F7F;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 22px;
    box-sizing: border-box;
  }
}
.brands-banner {
  display: -webkit-flex;
  display: flex;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
  border-radius: 6px;
  margin-top: 16px;
}

.brands-banner__item {
  width: 12.5%;
  height: 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 0 15px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: 0;
  position: relative;
}

.brands-banner__item:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-color: #E9E9E9;
}

.brands-banner__item:last-child {
  border-right: 0;
}

.brands-banner__item:last-child:after {
  display: none;
}

.brands-banner__image {
  display: block;
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.no-touch a.brands-banner__item:hover .brands-banner__image {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

@media (max-width: 759px) {
  .brands-banner {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .brands-banner__item:after {
    display: none;
  }

  .brands-banner__item {
    width: 25%;
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #E9E9E9;
    border-right: 1px solid #E9E9E9;
  }

  .brands-banner__item:nth-child(4n) {
    border-right: 0;
  }

  .brands-banner__item:nth-child(-n+4) {
    border-top: 0;
  }

  .brands-banner__image {
    max-height: 100%;
  }
}
@media (max-width: 639px) {
  .brands-banner__item {
    width: 50%;
    height: 40px;
  }

  .brands-banner__item:nth-child(even) {
    border-right: 1px solid #E9E9E9;
  }

  .brands-banner__item:nth-child(-n+4) {
    border-top: 1px solid #E9E9E9;
  }

  .brands-banner__item:nth-child(-n+2) {
    border-top: 0;
  }

  .brands-banner__item:nth-child(2n) {
    border-right: 0;
  }
}
.double-banner__wrap {
  display: -webkit-flex;
  display: flex;
  margin: 60px 0 60px;
}

.double-banner__left {
  -webkit-flex: 0 0 66.6666%;
          flex: 0 0 66.6666%;
  width: 66.6666%;
}

.double-banner__right {
  -webkit-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  width: 33.3333%;
}

@media (max-width: 1239px) {
  .double-banner__wrap {
    display: block;
  }

  .double-banner__left {
    width: 100%;
  }

  .double-banner__right {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 759px) {
  .double-banner__wrap {
    margin: 40px 0 40px;
  }
}
.image-banner {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: -webkit-flex;
  display: flex;
  padding: 16px;
}

.image-banner__left {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 16px;
}

.image-banner__right {
  width: 50%;
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 16px;
}

.image-banner__img-wrap {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

button.image-banner__img-wrap {
  cursor: pointer;
  text-decoration: none;
}

.image-banner__img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  object-fit: cover;
  z-index: -1;
  opacity: 0.75;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.image-banner__img-wrap:hover .image-banner__img {
  -webkit-transform: translate(-50%, -50%) scale(1.02);
          transform: translate(-50%, -50%) scale(1.02);
}

.image-banner__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}

.image-banner__visual-icon {
  display: block;
  margin: 0 auto;
  width: 99px;
  height: 48px;
  object-fit: contain;
}

.image-banner__visual-text {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}

.image-banner__title {
  margin-top: 5px;
}

.image-banner__subtitle {
  font-size: 16px;
  line-height: 20px;
  color: #7F7F7F;
  margin-top: 5px;
}

.image-banner__text {
  font-size: 16px;
  line-height: 28px;
  color: #2A2A2A;
  margin-top: 22px;
}

.image-banner__contacts {
  margin-top: 12px;
}

.image-banner__additional {
  margin-top: 10px;
  font-size: 16px;
  line-height: 28px;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  color: #2A2A2A;
}

.image-banner__additional-icon {
  margin-left: 13px;
}

@media (max-width: 759px) {
  .image-banner {
    display: block;
  }

  .image-banner__left {
    padding-right: 0;
    width: 100%;
  }

  .image-banner__right {
    padding-left: 0;
    margin-top: 40px;
    width: 100%;
  }
}
.news-banner {
  padding-left: 48px;
}

.news-banner__header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: baseline;
          align-items: baseline;
  margin-top: 16px;
}

.news-banner__news-list {
  margin-top: 15px;
}

.news-banner__news-item {
  margin-top: 15px;
}

.news-banner__news-date {
  font-size: 13px;
  line-height: 20px;
  color: #7F7F7F;
}

.news-banner__news-link {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  margin-top: 2px;
}

@media (max-width: 1239px) {
  .news-banner {
    padding-left: 0;
  }
}
.button-top {
  position: fixed;
  bottom: 120px;
  right: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  opacity: 0;
  width: 54px;
  height: 74px;
  cursor: pointer;
  transition: color 0.25s ease;
  overflow: hidden;
  z-index: -1;
}

.button-top--shown {
  opacity: 1;
  z-index: 2000;
}

.button-top:hover {
  color: #eb2127;
  opacity: 0.8;
}

@media (max-width: 639px) {
  .button-top {
    display: none;
  }
}
.product-list-item {
  display: -webkit-flex;
  display: flex;
  border-top: 1px solid #d4d4d4;
  padding: 20px;
  position: relative;
}

.product-list-item--mobile,
.product-list-item.product-list-item--mobile {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 16px 7.5px;
  max-width: 100vw;
}

.product-list-item__bottom--mobile .price,
.product-list-item--mobile .product-list-item__bottom--mobile .price {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-left: 7px;
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}

.product-list-item__bottom .product-list-item__bottom--mobile .price__value,
.product-list-item__bottom--mobile .price__value,
.product-list-item__bottom .product-list-item__bottom--mobile .price__currency,
.product-list-item__bottom--mobile .price__currency {
  font-size: 18px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 26px !important;
}

.product-list-item__bottom--mobile .price__currency {
  font-weight: 500;
}

.product-list-item__bottom--mobile .price__group--old.price__group {
  margin-left: 0 !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  top: 0;
}

.product-list-item__bottom--mobile .price__group--old:after {
  left: 0;
  width: 100%;
}

.product-list-item__bottom--mobile .product-list-item__action,
.product-list-item__bottom--mobile .product-list-item__info {
  margin-top: 0;
}

.product-list-item__bottom--mobile .product-list-item__action .btn-basket {
  display: -webkit-flex;
  display: flex;
  padding: 12px 7.5px;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 10px;
  -webkit-flex: 1 0 0;
          flex: 1 0 0;
}

.product-list-item__bottom--mobile .product-list-item__action .btn-basket__icon {
  margin-right: 0;
  width: 24px;
  height: 24px;
}

.product-list-item__bottom--mobile .product-list-item__action .btn-basket__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.product-list-item__bottom--mobile .product-list-item__action .product-card__instalment-btn {
  margin-left: 8px !important;
}

.product-list-item__action .product-card__instalment-btn .svg-icon {
  width: 28px;
  height: 28px;
}

.product-list-item__bottom .product-list-item__bottom--mobile .price__group--old .price__value,
.product-list-item__bottom--mobile .price__group--old .price__value {
  color: #9E9E9E;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal !important;
}

.product-list-item__bottom--mobile .price__group--old .price__currency {
  display: none;
}

.product-list-item__top--mobile .status-list {
  position: static;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
          align-items: center;
  gap: 3px;
  margin-bottom: 4px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-list-item__top--mobile .status-list .status-list__item {
  margin-top: 0;
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
  min-height: auto;
  padding: 3px 8px;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
}

.product-list-item__bottom {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: start;
          justify-content: start;
}

.product-list-item__top--mobile .product-list-item__name {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 4px;
  display: inline-block;
}

.product-list-item__top--mobile .product-list-item__params {
  margin-top: 0;
}

.product-list-item__top .product-list-item__top--mobile .product-list-item__param,
.product-list-item__top--mobile .product-list-item__param {
  margin-bottom: 2px !important;
}

.product-list-item__top--mobile .product-list-item__param-key {
  color: #7F7F7F;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product-list-item__top--mobile .product-list-item__param-value {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product-list-item__top--mobile .product-list-item__param-value {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
}

.product-options__option-value--success {
  color: #189B2D;
}

.product-options__option-value--absent {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.product-list-item__top--mobile .product-options__option-value-icon {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.product-item__compare-btn--mobile {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #eb2127;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: color 0.25s, background-color 0.25s;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}

.product-item__compare-btn--mobile .compare-btn__btn {
  padding: 0 8px;
  color: #eb2127;
}

.product-item__compare-btn--mobile .compare-btn__icon {
  margin-right: 0;
}

.product-item__compare-btn--mobile .compare-btn__text {
  display: none;
}

.product-list-item__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.product-list-item__left-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  color: inherit;
}

.no-touch a.product-list-item__left-wrap:hover {
  color: inherit;
}

.no-touch a.product-list-item__left-wrap:hover .product-list-item__name {
  color: #eb2127;
}

.product-list-item__left {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-list-item__top,
.product-list-item__top.product-list-item__top--mobile {
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.product-list-item__top-content-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: start;
          align-items: start;
  width: calc(95% - 112px);
}

.product-list-item__top--mobile .product-list-item__center {
  border-right: none;
  padding-right: 0;
}

.product-list-item__center {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  border-right: 1px solid #e9e9e9;
  padding-right: 20px;
}

.product-list-item__right {
  -webkit-flex: 0 0 293px;
          flex: 0 0 293px;
  margin-left: 32px;
  padding-top: 5px;
  position: relative;
  z-index: 10;
}

.product-list-item__name {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  transition: color 0.25s;
}

.product-list-item__image-wrap {
  position: relative;
  margin-right: 28px;
}

.product-list-item__image-wrap .status-list {
  top: 0;
  left: 0;
  bottom: auto;
}

.product-list-item__center .status-list__item {
  margin-right: 8px;
  margin-bottom: 8px;
  margin-top: 0;
}

.product-list-item__center .status-list {
  position: static;
  margin-right: -8px;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 8px;
}

.product-list-item__image {
  display: block;
  width: 212px;
  height: 212px;
  object-fit: contain;
}

.product-list-item__image.product-list-item__image--mobile,
.product-list-item__image--mobile {
  max-width: 100px;
  width: 100px;
  max-height: 100px;
  object-fit: contain;
}

.product-list-item__action .btn + .btn {
  margin-left: 0;
  padding-left: 8px;
  padding-right: 8px;
}

.product-list-item__action .btn + .btn .svg-icon {
  width: 22px;
  height: 22px;
}

.product-list-item__action {
  margin-top: 16px;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
}

.product-list-item__action .btn-basket {
  max-width: 189px;
  width: 100%;
  padding: 0 8px !important;
}

.product-list-item__btn-basket-wrap {
  position: relative;
}

.product-list-item__btn-basket-wrap .loader-cover {
  border-radius: 6px;
}

.product-list-item__params {
  margin-top: 7px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  max-height: 160px;
  overflow: hidden;
}

.product-list-item__param {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}

.product-list-item__param:nth-child(4n),
.product-list-item__param:last-child {
  margin-bottom: 0;
}

.product-list-item__param-key {
  font-size: 12px;
  line-height: 13px;
  color: #7f7f7f;
}

.product-list-item__param-values {
  display: -webkit-flex;
  display: flex;
}

.product-list-item__param-value {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}

.product-list-item__info {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 12px;
}

.product-list-item__availability {
  margin-right: 30px;
}

.product-list-item__icons-block {
  margin-top: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-list-item__icon-block:not(:nth-child(3n)) {
  margin-right: 5%;
}

.product-list-item__icon-block {
  width: 30%;
  font-size: 9px;
  line-height: 12px;
  color: #7f7f7f;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.product-list-item__icon-block--link:hover .product-list-item__icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product-list-item__icon {
  width: 44px;
  height: 44px;
  transition-duration: 300ms;
}

.product-list-item__label {
  text-transform: uppercase;
  margin-top: 2px;
}

.product-list-item__text {
  position: relative;
  z-index: 15;
  margin-top: 20px;
}

.product-list-item__text-toggle span {
  margin-right: 20px;
}

.product-list-item__text-toggle i::after {
  width: 5px;
  height: 5px;
  border-left: 1px solid #eb2127;
  border-bottom: 1px solid #eb2127;
  -webkit-transform: translateY(-1px) rotate(-45deg);
          transform: translateY(-1px) rotate(-45deg);
  content: "";
}

.product-list-item__text--open .product-list-item__text-content {
  visibility: visible;
  opacity: 1;
}

.product-list-item__text--open .product-list-item__text-toggle i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-list-item__text-toggle i {
  transition-duration: 300ms;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #eb2127;
  padding: 0;
}

.product-list-item__text-toggle {
  cursor: pointer;
  padding: 12px 16px 16px 20px;
  font-size: 13px;
  line-height: 21px;
  color: #eb2127;
  border: 1.5px solid #ffdde5;
  border-radius: 6px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.product-list-item__text-content {
  top: calc(100% + 2px);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition-duration: 300ms;
  z-index: 15;
  padding: 16px 20px 20px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(42, 42, 42, 0.08);
  border-radius: 6px;
  font-size: 13px;
  line-height: 18px;
  color: #7f7f7f;
}

.product-list-item .product-card__instalment {
  margin-top: 24px;
}

.product-list-item__left-content-wrap {
  display: none;
}

.product-list-item__left .status-list {
  display: -webkit-flex;
  display: flex;
  position: static;
  margin: 0 -6px 6px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
          flex-direction: row;
}

.product-card__action-btn-indentation {
  margin-right: 4px;
}

@media (min-width: 1000px) {
  .product-list-item__right {
    -webkit-flex: 0 0 293px;
            flex: 0 0 293px;
  }

  .favorites-list .product-list-item__right {
    -webkit-flex: 0 0 293px;
            flex: 0 0 293px;
  }
}
@media (max-width: 1239px) {
  .product-list-item__left {
    display: -webkit-flex;
    display: flex;
  }

  .product-list-item__left-wrap {
    display: block;
  }

  .product-list-item__left-content-wrap {
    display: block;
  }

  .product-list-item__left-wrap .status-list__item {
    margin: 0 6px 12px;
  }

  .product-list-item__left .product-list-item__name {
    display: block;
  }

  .product-list-item__center .status-list {
    display: none;
  }

  .product-list-item__center .product-list-item__name {
    display: none;
  }

  .product-list-item__image {
    width: 180px;
    height: 180px;
  }

  .product-list-item__right {
    -webkit-flex: 0 0 250px;
            flex: 0 0 250px;
  }

  .product-list-item__params {
    max-height: unset;
  }

  .product-list-item__param {
    -webkit-flex-direction: row;
            flex-direction: row;
    margin-bottom: 6px;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }

  .product-list-item__param:nth-child(5n) {
    margin-bottom: 6px;
  }

  .product-list-item__param:last-child {
    margin-bottom: 0;
  }

  .product-list-item__param-key {
    font-size: 14px;
    line-height: 19px;
    margin-right: 4px;
  }

  .product-list-item__param-values {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .product-list-item__param-value {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 999px) {
  .product-list-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-list-item .price {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-flex-direction: row;
            flex-direction: row;
  }

  .product-list-item .price--nowrap .price__group--old {
    margin-left: 10px;
  }

  .product-list-item__image-wrap {
    margin-right: 12px;
  }

  .product-item__compare-btn--mobile {
    width: 44px;
    height: 44px;
  }

  .product-list-item__bottom--mobile .product-list-item__action .product-card__instalment-btn {
    margin-left: 0px !important;
  }

  .product-item__compare-btn--mobile {
    margin-left: 4px !important;
  }
}
@media (max-width: 759px) {
  .product-list-item {
    display: block;
  }

  .product-list-item .price {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-flex-direction: row;
            flex-direction: row;
  }

  .product-list-item .price--nowrap .price__group--old {
    margin-left: 10px;
  }

  .product-list-item__right {
    padding: 16px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    margin-top: 20px;
    padding-top: 0;
    -webkit-flex-basis: auto;
            flex-basis: auto;
    width: 100%;
  }

  .product-list-item__center {
    border-right: 0;
    padding-right: 0;
  }

  .product-list-item__image {
    width: 132px;
    height: 132px;
  }

  .product-list-item__name {
    font-size: 16px;
    line-height: 22px;
  }

  .product-list-item__action {
    margin-top: 20px;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
  }

  .product-list-item__info {
    margin-top: 10px;
  }

  .product-list-item__icons-block {
    margin-top: 15px;
  }

  .product-list-item__btn-basket-wrap {
    -webkit-flex: 1;
            flex: 1;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }

  .product-list-item__action .btn-basket {
    max-width: none;
  }

  .product-list-item__bottom--mobile .product-list-item__action .product-card__instalment-btn {
    margin-left: 0 !important;
    -webkit-order: 2;
            order: 2;
  }

  .product-item__compare-btn--mobile-order {
    -webkit-order: 1;
            order: 1;
  }

  .delete-text {
    display: none;
  }
}
.btn-basket--not-clickable {
  pointer-events: none;
  cursor: default;
}

.btn-basket__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.btn-reset {
  width: 100%;
  background-color: #F0F0F0;
  color: #7F7F7F;
  height: 40px;
}

.no-touch .btn-reset:hover,
.btn-reset:active,
.no-touch .btn-reset:focus,
.touch .btn-reset:focus {
  background-color: #E3E3E3;
  color: #eb2127;
}

.target-banner {
  display: block;
  width: 100%;
  border-radius: 6px;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
}

.target-banner__img {
  display: block;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.target-banner:hover .target-banner__img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.radiolist-tab {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -16px;
}

.radiolist-tab__label {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-flex;
  display: flex;
  margin-top: 16px;
  margin-right: 16px;
  position: relative;
  -webkit-align-items: center;
          align-items: center;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  max-width: 100%;
  box-shadow: 0 0 0 1px #D4D4D4 inset;
  border-radius: 6px;
  background: #ffffff;
  font-weight: 600;
  line-height: 19px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: none;
  text-align: center;
  outline: none;
  transition: color 0.25s ease-out, box-shadow 0.25s ease-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #959696;
}

.radiolist-tab__icon {
  max-height: 40px;
  max-width: 40px;
  object-fit: contain;
  margin-right: 8px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.radiolist-tab__input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.radiolist-tab__border {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  box-shadow: 0 0 0 2px #eb2127 inset;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.25s;
}

.radiolist-tab__input:checked ~ .radiolist-tab__border,
.radiolist-tab__label.open .radiolist-tab__border {
  opacity: 1;
}

.no-touch .radiolist-tab__label:hover {
  opacity: 1;
  box-shadow: 0 0 0 1px #eb2127 inset;
}

.radiolist-tab__input:checked ~ .radiolist-tab__text,
.radiolist-tab__label.open,
.no-touch .radiolist-tab__label:hover {
  color: #eb2127;
}

@media (max-width: 999px) {
  .radiolist-tab {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-top: 16px;
    max-width: 100%;
    overflow: auto;
  }

  .radiolist-tab::-webkit-scrollbar {
    display: none;
  }

  .radiolist-tab {
    scrollbar-width: none;
  }

  .radiolist-tab--null {
    margin: 0;
  }

  .radiolist-tab__label {
    font-size: 14px;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 20px;
    height: 36px;
    margin-top: 0;
    margin-right: 10px;
  }

  .radiolist-tab__icon {
    max-width: 28px;
    max-height: 28px;
  }
}
.product-options__title {
  margin-bottom: 6px;
  font-weight: 600;
}

.product-options--small .product-options__title {
  font-size: 16px;
  line-height: 22px;
}

.product-options__list {
  margin-top: 4px;
}

.product-options__option {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
}

.product-options__option::-webkit-scrollbar {
  width: 14px;
  border-radius: 0;
}

.product-options__option::-webkit-scrollbar-track {
  background-color: transparent;
  width: 12px;
  border-radius: 0;
}

.product-options__option::-webkit-scrollbar-thumb {
  background-color: #cccfd3;
  outline: none;
  border-radius: 7px;
  border: 4px solid #ffffff;
}

.product-options__option-informer {
  margin-left: 6px;
}

.product-options__option-name {
  font-size: 16px;
  line-height: 24px;
  color: #7F7F7F;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 12px;
  margin-top: 10px;
  display: -webkit-flex;
  display: flex;
}

.product-options--small .product-options__option-name {
  font-size: 14px;
  line-height: 20px;
  padding-right: 4px;
  margin-top: 8px;
  display: -webkit-flex;
  display: flex;
}

.product-options__option-name-note {
  position: relative;
  z-index: 2;
  margin: 0 8px;
  display: inline-block;
}

.product-options__option-sep {
  min-width: 15px;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  border-bottom: 1px dashed #7F7F7F;
}

.product-options__option-value {
  font-size: 16px;
  line-height: 24px;
  color: #2A2A2A;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0 12px;
}

.product-options--small .product-options__option-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.product-options__option-value-icon {
  width: 20px;
  height: 20px;
}

.product-options__option-value-icon--red {
  color: #eb2127;
  width: 22px;
  height: 22px;
}

@media (max-width: 1367px) {
  .product-options {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
@media (max-width: 759px) {
  .product-options__option-name,
.product-options--small .product-options__option-name {
    width: auto;
    padding: 0;
    margin: 0 4px 8px 0;
  }

  .product-options__option-name-note {
    display: none;
  }

  .product-options__option-value,
.product-options--small .product-options__option-value {
    width: auto;
    text-align: right;
    padding-left: 4px;
  }

  .product-options--small .product-options__option-sep {
    display: none;
  }
}
.brand-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: #7F7F7F;
  text-decoration: none;
  transition: color 0.25s;
  font-size: 14px;
  line-height: 19px;
}

.brand-link:hover {
  color: #eb2127;
}

.brand-link__img {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 12px;
  max-height: 26px;
}

.brand-link__text {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}

.note-block {
  background: #F4F4F4;
  border-radius: 4px;
  font-size: 13px;
  line-height: 18px;
  padding: 23px 20px 26px;
  color: #7F7F7F;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
}

.note-block__icon {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.note-block__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.big-tabs {
  max-width: 100%;
  overflow-x: clip;
}

.big-tabs__tabs {
  display: -webkit-flex;
  display: flex;
  border-bottom: 2px solid #E9E9E9;
}

.big-tabs__tab {
  display: inline-block;
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
  margin-right: 40px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s, color 0.25s;
  padding: 0 0 11px;
  margin-bottom: -2px;
  white-space: nowrap;
}

.big-tabs__tab.active {
  border-color: #eb2127;
}

.big-tabs__content {
  padding: 32px 0 0;
}

.big-tabs__content-flex-wrap {
  display: -webkit-flex;
  display: flex;
}

.big-tabs__content-left {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.big-tabs__content-right {
  max-width: 358px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.big-tabs__content-manufacturer {
  margin-top: 32px;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
}

.big-tabs__content-manufacturer .text-block,
.big-tabs__content-manufacturer .note-block {
  padding: 20px;
  -webkit-flex: 1 1 50%;
          flex: 1 1 50%;
}

.big-tabs__block {
  margin-bottom: 32px;
}

@media (max-width: 999px) {
  .big-tabs__content-flex-wrap {
    display: block;
  }

  .big-tabs__content-left {
    padding-right: 0;
    width: 100%;
  }

  .big-tabs__content-right {
    margin-top: 30px;
    width: 100%;
  }

  .big-tabs__content-flex-wrap {
    display: block;
  }

  .big-tabs__content-manufacturer {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.big-tabs .product-options {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.big-tabs .product-options__item {
  margin-bottom: 22px;
  -webkit-column-break-inside: avoid;
          break-inside: avoid-column;
}

@media (max-width: 1367px) {
  .big-tabs .product-options {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
@media (max-width: 759px) {
  .big-tabs__tab {
    font-size: 20px;
    line-height: 25px;
    margin-right: 30px;
  }
}
.text-block {
  background: #F4F4F4;
  border-radius: 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  padding: 23px 20px 26px;
  color: rgba(127, 127, 127, 0.7);
}

.text-block b {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: rgba(42, 42, 42, 0.8);
}

.text-block__title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #2A2A2A;
}

.text-block__items {
  margin-top: 18px;
}

.doc-block {
  display: -webkit-flex;
  display: flex;
  text-decoration: none;
  color: #2A2A2A;
  transition: 0.25s;
  font-size: 13px;
  line-height: 18px;
  -webkit-align-items: center;
          align-items: center;
}

.doc-block:hover {
  color: #eb2127;
}

.doc-block__icon {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 40px;
  margin-right: 12px;
}

.doc-block__inner-text {
  color: #7F7F7F;
}

.tooltip-note {
  width: 16px;
  height: 16px;
  position: relative;
}

.tooltip-note__btn {
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  color: #D4D4D4;
  width: 16px;
  height: 16px;
  transition: color 0.25s;
}

.no-touch .tooltip-note__btn:hover {
  color: #7F7F7F;
}

.tooltip-note__icon {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}

.tooltip-note__dropdown {
  position: absolute;
  top: auto;
  bottom: 34px;
  left: -15px;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 13px 20px 17px;
  font-size: 13px;
  line-height: 18px;
  box-shadow: 0 0 20px rgba(42, 42, 42, 0.08);
  width: 720px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  transition: visibility 0.25s, z-index 0.25s, opacity 0.25s, -webkit-transform 0.25s;
  transition: visibility 0.25s, z-index 0.25s, transform 0.25s, opacity 0.25s;
  transition: visibility 0.25s, z-index 0.25s, transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

.tooltip-note__btn:hover ~ .tooltip-note__dropdown {
  opacity: 1;
  z-index: 1000;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.tooltip-note__dropdown:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: auto;
  bottom: -5px;
  left: 21px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(42, 42, 42, 0.08);
  z-index: 0;
}

.tooltip-note__dropdown:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 15px;
  top: auto;
  bottom: 0;
  left: 13px;
  background-color: #ffffff;
  z-index: 1;
}

@media (max-width: 1239px) {
  .tooltip-note__dropdown {
    width: 300px;
  }
}
@media (max-width: 999px) {
  .product-card__right-wrap {
    display: block;
  }

  .product-card__main-info {
    padding-right: 0;
  }

  .product-card__aside-block {
    margin-top: 40px;
  }
}
@media (max-width: 759px) {
  .tooltip-note__dropdown {
    width: 270px;
  }
}
@media (max-width: 639px) {
  .tooltip-note {
    display: none;
  }
}
.note-line {
  font-size: 14px;
  line-height: 24px;
  display: -webkit-flex;
  display: flex;
}

.note-line__icon {
  width: 18px;
  height: 18px;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 8px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

/* --- catalog compare --- */
.catalog-compare {
  position: relative;
}

.catalog-compare__head-layout {
  display: -webkit-flex;
  display: flex;
  margin-right: -15px;
}

.catalog-compare__head-aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  padding: 0 20px 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.catalog-compare__head-main {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
  position: relative;
  padding: 15px;
  overflow: hidden;
  margin-top: -15px;
}

.catalog-compare__head-mod {
  margin-top: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.catalog-compare__head-items {
  word-break: break-word;
}

.catalog-compare__head-items-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: 0.3s;
}

.catalog-compare__head-item {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33%;
  transition: box-shadow 0.25s;
}

.catalog-compare__head-item:hover {
  box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
  z-index: 1;
}

.catalog-compare__head-arrow {
  position: absolute;
  top: 0;
  height: 210px;
  width: 46px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 0 15px;
  background: #C0C0C0;
  z-index: 10;
  transition: 0.25s;
  cursor: pointer;
  border-radius: 6px;
}

.catalog-compare__head-arrow .svg-icon {
  width: 16px;
  height: 50px;
}

.catalog-compare__head-arrow--prev {
  left: -26px;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.catalog-compare__head-arrow--next {
  right: -26px;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.catalog-compare__head-arrow.disabled {
  cursor: default;
  opacity: 0;
  visibility: hidden;
}

.no-touch .catalog-compare__head-arrow:not(.disabled):hover {
  color: #2a2a2a;
  background: rgba(42, 42, 42, 0.2);
}

.catalog-compare__head--nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 3px solid #F6F6F6;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  visibility: hidden;
  transition: 0.3s;
}

.catalog-compare__head--nav .catalog-compare__head-arrow {
  height: 100px;
}

.catalog-compare--head-fixed .catalog-compare__head--nav {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  visibility: visible;
}

.catalog-compare__body {
  margin-top: 30px;
}

.catalog-compare__body-group + .catalog-compare__body-group {
  margin-top: -3px;
}

.catalog-compare__body-group-header {
  padding: 23px 20px 23px 42px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #2A2A2A;
  transition: 0.25s;
}

.special-open .catalog-compare__body-group-header {
  color: inherit;
}

.catalog-compare__body-group-header-icon {
  position: absolute;
  top: 25px;
  left: 0;
  border: 2px solid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #eb2127;
}

.special-open .catalog-compare__body-group-header-icon {
  color: inherit;
}

.catalog-compare__body-group-header-icon::before,
.catalog-compare__body-group-header-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  border-top: 2px solid;
  margin: -1px 0 0 -6px;
  transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

.catalog-compare__body-group-header-icon::after {
  -webkit-transform: rotate(90deg) scaleY(1);
          transform: rotate(90deg) scaleY(1);
}

.catalog-compare__body-group.open .catalog-compare__body-group-header-icon::after {
  opacity: 0;
  -webkit-transform: rotate(90deg) scaleY(0);
          transform: rotate(90deg) scaleY(0);
}

.no-touch .catalog-compare__body-group-header:hover {
  color: #eb2127;
}

.special-open.no-touch .catalog-compare__body-group-header:hover {
  color: inherit;
}

.catalog-compare__table {
  margin-bottom: 16px;
  word-break: break-word;
}

.catalog-compare__table-row {
  display: -webkit-flex;
  display: flex;
  border-top: 1px solid #F6F6F6;
  padding: 8px 0;
  transition: 0.25s;
}

.catalog-compare__table-aside {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  padding: 0 20px;
  display: -webkit-flex;
  display: flex;
}

.catalog-compare__table-aside .tooltip-note {
  margin-top: -3px;
  margin-left: 6px;
}

.catalog-compare__table-main {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
  overflow: hidden;
}

.catalog-compare__table-main-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: 0.3s;
}

.catalog-compare__table-main-cell {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33%;
  padding: 0 20px;
}

.no-touch .catalog-compare__table-row:hover {
  background: #EDEDED;
}

.special-open.no-touch .catalog-compare__table-row:hover {
  background: transparent;
}

.catalog-compare .small-slider-arrow {
  -webkit-transform: translateY(-50%) scale(0.85);
          transform: translateY(-50%) scale(0.85);
}

.catalog-compare .small-slider-arrow--next {
  right: 0;
}

.catalog-compare .small-slider-arrow--prev {
  left: 0;
}

.catalog-compare__empty-message {
  margin-top: 24px;
}

@media (max-width: 1367px) {
  /* --- catalog compare --- */
  .catalog-compare__head--nav {
    padding: 15px 0;
  }

  .catalog-compare__table-row {
    font-size: 16px;
    line-height: 24px;
  }

  .catalog-compare__head-arrow {
    width: 40px;
    padding: 0 11px;
  }

  .catalog-compare__head-arrow--prev {
    left: -20px;
  }

  .catalog-compare__head-arrow--next {
    right: -20px;
  }
}
@media (max-width: 1239px) {
  /* --- catalog compare --- */
  .catalog-compare__head-aside {
    padding: 0 15px 0 0;
  }

  .catalog-compare__table-aside {
    padding: 0 15px;
  }

  .catalog-compare__table-main-cell {
    padding: 0 15px;
  }

  .catalog-compare__head--nav .catalog-compare__head-arrow {
    height: 90px;
  }
}
@media (max-width: 999px) {
  /* --- catalog compare --- */
  .catalog-compare__head-aside {
    width: 33.33%;
  }

  .catalog-compare__head-main {
    width: 66.66%;
  }

  .catalog-compare__head-item {
    width: 50%;
  }

  .catalog-compare__table-aside {
    width: 33.33%;
    padding-left: 0;
  }

  .catalog-compare__table-main {
    width: 66.66%;
  }

  .catalog-compare__table-main-cell {
    width: 50%;
  }

  .catalog-compare__head-item:hover {
    box-shadow: 0 6px 16px rgba(21, 22, 22, 0.15);
    z-index: 1;
  }

  .catalog-compare .product .price {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}
@media (max-width: 999px) {
  .catalog-compare__head-items {
    margin: 0;
  }

  .catalog-compare__head-items-grid {
    padding: 0;
  }

  .catalog-compare__head-item:hover {
    box-shadow: none;
  }

  .catalog-compare__head-layout {
    margin-right: 0;
  }

  .catalog-compare__head-aside {
    padding: 0 20px 0 0;
  }

  .catalog-compare__head-main {
    padding: 0;
    margin-top: 0;
  }
}
@media (max-width: 759px) {
  /* --- catalog compare --- */
  .catalog-compare__table-row {
    font-size: 14px;
    line-height: 22px;
  }

  .catalog-compare .small-slider-arrow {
    display: none;
  }
}
@media (max-width: 639px) {
  /* --- catalog compare --- */
  .catalog-compare {
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }

  .catalog-compare__head--nav {
    overflow-y: auto;
    padding: 10px 0;
    border: none;
    background: #F6F6F6;
  }

  .catalog-compare__head--nav .catalog-compare__head-clear {
    display: none;
  }

  .catalog-compare__head--nav .catalog-compare__head-mod {
    margin-top: 0;
  }

  .catalog-compare__head--nav .checkbox-row {
    font-size: 12px;
    line-height: 20px;
  }

  .catalog-compare__head--nav .checkbox-row__visual {
    top: 1px;
  }

  .catalog-compare__head-aside {
    width: 200px;
  }

  .catalog-compare__head-main {
    width: auto;
    padding: 0;
  }

  .catalog-compare__head-item {
    width: 200px;
  }

  .catalog-compare__head-arrow {
    display: none;
  }

  .catalog-compare__head-items-grid {
    -webkit-transform: none !important;
            transform: none !important;
  }

  .catalog-compare__body {
    padding-right: 20px;
  }

  .catalog-compare__body-group-header {
    padding: 17px 20px 17px 42px;
    width: calc(100vw - 40px);
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }

  .touch .catalog-compare__body-group-header {
    left: 0;
  }

  .catalog-compare__body-group-header-icon {
    top: 17px;
  }

  .catalog-compare__table {
    margin-bottom: 30px;
  }

  .catalog-compare__table-aside {
    width: 200px;
  }

  .catalog-compare__table-main {
    width: auto;
  }

  .catalog-compare__table-main-cell {
    width: 200px;
  }

  .catalog-compare__table-main-grid {
    -webkit-transform: none !important;
            transform: none !important;
  }

  .catalog-compare__table .inline-tooltip__body {
    top: auto;
    margin-top: 0;
    bottom: 100%;
    margin-bottom: 5px;
  }
}
.callbacks {
  font-family: "Open Sans", sans-serif;
}

.callbacks .rich-form__action-left {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-right: 0;
}

.callbacks .rich-form__action-btn {
  width: 100%;
}

.callbacks .rich-form__row:first-child {
  margin-top: 0;
}

.callbacks__btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 2002;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border-width: 0;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  cursor: pointer;
}

.callbacks__background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  display: block;
  background: #2A2A2A;
  content: "";
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.open .callbacks__background {
  z-index: 2001;
  opacity: 0.4;
}

.callbacks__btn--red {
  background: #EB2127;
  color: #fff;
  box-shadow: 0px 4px 15px rgba(235, 33, 39, 0.45);
  transition: all 0.4s ease-in-out;
}

.callbacks__btn--red.active {
  background: #D4D4D4;
  box-shadow: inherit;
}

.callbacks__btn--gray {
  background: #D4D4D4;
  color: #7F7F7F;
}

.open .callbacks__btn:nth-child(3) {
  bottom: 177px;
  -webkit-animation: show-twoo 0.4s ease-in-out;
          animation: show-twoo 0.4s ease-in-out;
}

.open .callbacks__btn:nth-child(2) {
  bottom: 101px;
  -webkit-animation: show-one 0.18s ease-in-out;
          animation: show-one 0.18s ease-in-out;
}

.hide .callbacks__btn:nth-child(3) {
  -webkit-animation: hide-twoo 0.4s ease-in-out;
          animation: hide-twoo 0.4s ease-in-out;
}

.hide .callbacks__btn:nth-child(2) {
  -webkit-animation: hide-one 0.4s ease-in-out;
          animation: hide-one 0.4s ease-in-out;
}

.callbacks__call-form,
.callbacks__jivosite-form {
  position: fixed;
  bottom: 0;
  right: 101px;
  z-index: 2003;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  transition: all 0.4s ease-in-out;
}

.callbacks__call-form {
  padding: 20px 40px 52px;
  max-width: 484px;
  background: #FFFFFF;
  border-radius: 6px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.callbacks__jivosite-form {
  width: 336px;
  height: 562px;
}

.callbacks__jivosite-form > .callbacks__close-icon {
  margin-left: -45px;
  padding: 8px;
  width: 30px;
  height: 30px;
  border: solid 2px #444D56;
  border-radius: 15px;
  display: -webkit-flex;
  display: flex;
}

.callbacks__jivosite-form > .callbacks__close-icon:after {
  height: 100%;
  width: 100%;
  display: block;
  content: "";
  background-color: #444D56;
  -webkit-mask: url(/local/images/markup-images/callback/close.svg) no-repeat center;
          mask: url(/local/images/markup-images/callback/close.svg) no-repeat center;
}

.callbacks__call-form.active,
.callbacks__jivosite-form.active {
  bottom: 25px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.callbacks__jivosite-form.active {
  bottom: 0;
}

.callbacks__close-icon {
  width: 16px;
  height: 16px;
  -webkit-align-self: flex-end;
          align-self: flex-end;
  cursor: pointer;
}

.callbacks__call-header {
  margin: 11px 0 8px;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #2A2A2A;
}

.callbacks__call-paragraph {
  margin: 0 0 4px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #7B7B7B;
}

.callbacks__input-form {
  margin-top: 20px;
  padding: 13px 16px;
  border: 1px solid #D4D4D4;
  box-sizing: border-box;
  border-radius: 6px;
  color: #2A2A2A;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.callbacks__input-form::-webkit-input-placeholder {
  color: #7B7B7B;
}

.callbacks__input-form::-moz-placeholder {
  color: #7B7B7B;
}

.callbacks__input-form::placeholder {
  color: #7B7B7B;
}

.callbacks__input-form:first-child {
  margin-top: 24px;
}

.callbacks__submit-form {
  margin-top: 32px;
  padding: 13px 16px;
  border: inherit;
  background: #EB2127;
  border-radius: 6px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

@-webkit-keyframes show-one {
  0% {
    bottom: 25px;
  }
  100% {
    bottom: 101px;
  }
}

@keyframes show-one {
  0% {
    bottom: 25px;
  }
  100% {
    bottom: 101px;
  }
}
@-webkit-keyframes show-twoo {
  0% {
    bottom: 25px;
  }
  45% {
    bottom: 101px;
  }
  55% {
    bottom: 101px;
  }
  100% {
    bottom: 177px;
  }
}
@keyframes show-twoo {
  0% {
    bottom: 25px;
  }
  45% {
    bottom: 101px;
  }
  55% {
    bottom: 101px;
  }
  100% {
    bottom: 177px;
  }
}
@-webkit-keyframes hide-one {
  0% {
    bottom: 101px;
  }
  55% {
    bottom: 101px;
  }
  100% {
    bottom: 25px;
  }
}
@keyframes hide-one {
  0% {
    bottom: 101px;
  }
  55% {
    bottom: 101px;
  }
  100% {
    bottom: 25px;
  }
}
@-webkit-keyframes hide-twoo {
  0% {
    bottom: 177px;
  }
  45% {
    bottom: 101px;
  }
  55% {
    bottom: 101px;
  }
  100% {
    bottom: 25px;
  }
}
@keyframes hide-twoo {
  0% {
    bottom: 177px;
  }
  45% {
    bottom: 101px;
  }
  55% {
    bottom: 101px;
  }
  100% {
    bottom: 25px;
  }
}
#jcont {
  --right: 0 !important;
  min-height: 562px;
  max-height: 562px;
  min-width: 336px;
  max-width: 336px;
}

.closeButton_caff {
  display: none;
  z-index: -666;
  visibility: hidden;
  opacity: 0;
}

.content_request__wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

.content_request__icon {
  margin-right: 20px;
}

#jivo_close_button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  z-index: -99999 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
}

@media (max-width: 999px) {
  .callbacks__jivosite-form > jdiv {
    position: relative;
    z-index: 2000;
  }

  html.jivo-site-full-block {
    position: inherit !important;
  }

  .callbacks__btn {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .callbacks__btn > img {
    width: 15px;
    height: 15px;
  }

  .open .callbacks__btn:nth-child(2) {
    bottom: 60px;
  }

  .open .callbacks__btn:nth-child(3) {
    bottom: 110px;
  }

  @-webkit-keyframes show-one {
    0% {
      bottom: 10px;
    }
    100% {
      bottom: 60px;
    }
  }

  @keyframes show-one {
    0% {
      bottom: 10px;
    }
    100% {
      bottom: 60px;
    }
  }
  @-webkit-keyframes show-twoo {
    0% {
      bottom: 10px;
    }
    45% {
      bottom: 60px;
    }
    55% {
      bottom: 60px;
    }
    100% {
      bottom: 110px;
    }
  }
  @keyframes show-twoo {
    0% {
      bottom: 10px;
    }
    45% {
      bottom: 60px;
    }
    55% {
      bottom: 60px;
    }
    100% {
      bottom: 110px;
    }
  }
  @-webkit-keyframes hide-one {
    0% {
      bottom: 60px;
    }
    55% {
      bottom: 60px;
    }
    100% {
      bottom: 10px;
    }
  }
  @keyframes hide-one {
    0% {
      bottom: 60px;
    }
    55% {
      bottom: 60px;
    }
    100% {
      bottom: 10px;
    }
  }
  @-webkit-keyframes hide-twoo {
    0% {
      bottom: 110px;
    }
    45% {
      bottom: 60px;
    }
    55% {
      bottom: 60px;
    }
    100% {
      bottom: 10px;
    }
  }
  @keyframes hide-twoo {
    0% {
      bottom: 110px;
    }
    45% {
      bottom: 60px;
    }
    55% {
      bottom: 60px;
    }
    100% {
      bottom: 10px;
    }
  }
  .callbacks__call-form,
.callbacks__jivosite-form,
.callbacks__call-form.active,
.callbacks__jivosite-form.active {
    z-index: 2001;
    bottom: 0;
    left: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .callbacks__close-icon {
    padding: 15px;
    width: 46px;
    height: 46px;
    -webkit-align-self: flex-start;
            align-self: flex-start;
    margin-left: -15px;
    margin-top: -15px !important;
  }

  .callbacks__jivosite-form > .callbacks__close-icon {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2010 !important;
    margin-left: 0;
    padding: 0;
    height: 70px;
    width: 85px;
    border-radius: 0;
    border: 0;
  }
  .callbacks__jivosite-form > .callbacks__close-icon:after {
    content: inherit;
    display: inherit;
  }

  .callbacks__call-form .rich-form,
.callbacks__call-form .rich-form.lc:last-child,
.callbacks__call-form .rich-form.flc:last-child {
    margin: auto;
  }

  .globalClass_ebef > jdiv {
    z-index: 2003 !important;
  }
}
.basked-add-success__title .svg-icon {
  margin-right: 13px;
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.basked-add-success__title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
}

.basked-add-success__product {
  display: -webkit-flex;
  display: flex;
}

.basked-add-success__img {
  width: 29%;
  padding-right: 28px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.basked-add-success__content {
  -webkit-flex-grow: 1;
          flex-grow: 1;
  min-width: 0;
}

.basked-add-success__name {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.basked-add-success__action {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.basked-add-success__counter {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
}

.basked-add-success__delete:hover {
  color: #000;
}

.basked-add-success__delete {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #9d9d9d;
  cursor: pointer;
  transition-duration: 300ms;
  margin-top: 8px;
}

.basked-add-success__basket {
  margin-left: 29%;
  padding: 15px 12px;
  background: #f5f5f5;
  border-radius: 10px;
  margin-top: 22px;
}

.basked-add-success__prop + .basked-add-success__prop {
  margin-top: 10px;
}

.basked-add-success__prop {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  font-size: 16px;
  line-height: 22px;
}

.basked-add-success__prop-name {
  color: #9f9f9f;
  margin-right: 15px;
}

.basked-add-success__prop-value {
  color: #2a2a2a;
}

.basked-add-success__buttons .btn + .btn {
  margin-left: 16px;
}

.basked-add-success__buttons .btn {
  width: 40%;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.basked-add-success__buttons {
  margin-top: 30px;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 999px) {
  .basked-add-success__title {
    font-size: 20px;
    line-height: 28px;
  }

  .basked-add-success__title .svg-icon {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .basked-add-success__title {
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .basked-add-success__img {
    padding-right: 16px;
  }

  .basked-add-success__basket {
    margin-left: 0;
  }

  .basked-add-success__buttons .btn {
    width: 100%;
  }

  .basked-add-success__buttons .btn + .btn {
    margin-top: 16px;
    margin-left: 0;
  }

  .basked-add-success__buttons {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.instalment__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.instalment__product {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 32px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 32px;
}

.instalment__product-banner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 0 102px;
          flex: 0 0 102px;
  margin-right: 16px;
}

.instalment__product-banner-img {
  height: 102px;
  width: 102px;
}

.instalment__product-content {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

.instalment__product-title {
  font-size: 20px;
  line-height: 28px;
  color: #000;
  margin-bottom: 24px;
}

.instalment__product-footer {
  display: -webkit-flex;
  display: flex;
}

.instalment__product-price {
  font-weight: 700;
  font-size: 26px;
  line-height: 22px;
}

.instalment__note {
  margin-top: 32px;
  font-size: 18px;
  line-height: 27px;
  color: #000;
}

.instalment__note span {
  color: #EB2127;
}

.instalment__actions {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 32px;
}

.instalment__period-label {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 24px;
}

.instalment__period-items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  background: #F0F0F0;
  border-radius: 14px;
}

.instalment__period-item {
  -webkit-flex: 0 0 calc(33.33% - 8px);
          flex: 0 0 calc(33.33% - 8px);
  margin: 4px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s;
}

.instalment__period-item-label {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #484848;
  margin-bottom: 4px;
}

.instalment__period-item-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #484848;
  transition: color 0.25s;
}

.instalment__period-item.active {
  background: #ffffff;
}

.instalment__period-item.active .instalment__period-item-value {
  color: #eb2127;
}

.instalment__counter {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-left: auto;
}

.instalment__counter-btn {
  position: relative;
  height: 24px;
  width: 24px;
  background: #f0f0f0;
  border-radius: 4px;
  transition: opacity 0.25s;
  cursor: pointer;
}

.instalment__counter-btn:hover,
.instalment__counter-btn:active {
  opacity: 0.8;
}

.instalment__counter-btn::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.instalment__counter-btn--plus.instalment__counter-btn::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.instalment__counter-value {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin: 0 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 999px) {
  .instalment__title {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 24px;
  }

  .instalment__product {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .instalment__product-title {
    font-size: 18px;
    line-height: 28px;
  }

  .instalment__product-footer {
    display: block;
  }

  .instalment__product-price {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .instalment__note {
    margin-top: 24px;
    font-size: 18px;
    line-height: 27px;
  }

  .instalment__actions {
    margin-top: 24px;
  }

  .instalment__period-label {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
  }

  .instalment__period-items {
    display: block;
    padding: 4px;
  }

  .instalment__period-item {
    margin: 0 0 8px;
  }

  .instalment__period-item:last-child {
    margin: 0;
  }

  .instalment__period-item-label {
    font-size: 18px;
    line-height: 27px;
  }

  .instalment__counter {
    margin: 12px 0 0;
  }
}
.informer {
  position: relative;
  z-index: 2;
  margin-bottom: -5px;
  display: inline-block;
}

.informer__btn {
  cursor: pointer;
}

.informer__btn-icon {
  color: #D4D4D4;
  width: 16px;
  height: 16px;
  transition: color 0.25s;
}

.informer__btn:hover .informer__btn-icon {
  color: #7F7F7F;
}

.informer__info {
  position: absolute;
  z-index: 1;
  left: -18px;
  bottom: 30px;
  margin: 9px 15px 0 0;
  border-radius: 6px;
  padding: 10px 15px;
  width: auto;
  max-width: 720px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  color: #2A2A2A;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  box-shadow: 0px 0px 18px rgba(33, 40, 46, 0.15);
  transition: opacity 0.2s, visibility 0.2s;
}

.informer__info:before {
  position: absolute;
  bottom: -8px;
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.informer__btn:hover ~ .informer__info,
.informer__btn:hover ~ .informer__info:before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1239px) {
  .informer__info {
    width: calc(100% - 30px);
  }
}
.banner-slider__slide-image {
  max-height: 220px;
  width: 100%;
  border-radius: 14px;
}

.main-banner__container .banner-slider__slide-image {
  max-height: 425px;
  width: 432px;
}

.main-banner__container .banner-slider .slick-slide {
  margin: 0;
}

.main-banner__container .banner-slider .small-slider-arrow:after {
  border-bottom: 2.5px solid #FFFFFF50;
  border-left: 2.5px solid #FFFFFF50;
}

.no-touch .main-banner .banner-slider .btn--secondary:hover,
.no-touch .main-banner .banner-slider .btn--secondary:active,
.main-banner .banner-slider .btn--secondary:active {
  background-color: #FFF;
}
.no-touch .main-banner .banner-slider .btn--secondary:hover:after,
.no-touch .main-banner .banner-slider .btn--secondary:active:after,
.main-banner .banner-slider .btn--secondary:active:after {
  border-bottom: 2.5px solid #000;
  border-left: 2.5px solid #000;
}

.main-banner__container .main-banner__right .small-slider-arrow {
  height: 70px;
  width: 36px;
  border-radius: 16px;
}

.main-banner__container .main-banner__right .small-slider-arrow--next {
  right: 0;
}

.main-banner__container .main-banner__right .small-slider-arrow--prev {
  left: -10px;
}

.banner-slider .slick-slide {
  margin: 0 20px;
}

.banner-slider .slick-list {
  margin: 0 -20px;
}

.banner-slider .small-slider-arrow {
  border-radius: 8px;
}

.banner-slider .small-slider-arrow--prev:after {
  left: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.banner-slider .small-slider-arrow--next:after {
  left: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.banner-slider .small-slider-arrow:after {
  position: absolute;
  display: block;
  content: "";
  top: 17px;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid #2A2A2A;
  border-bottom: 1.5px solid #2A2A2A;
  transition: border-color 0.25s;
}

.main-banner__container .main-banner__right .small-slider-arrow--prev:after {
  top: 50%;
  left: 42%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.main-banner__container .main-banner__right .small-slider-arrow--next:after {
  top: 50%;
  left: 32%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.banner-slider .small-slider-arrow:before {
  display: none;
}

.banner-slider__slide {
  position: relative;
}

.banner-slider__slide-link {
  inset: 0;
  position: absolute;
}

@media (max-width: 999px) {
  .banner-slider__slide-image {
    max-height: 300px;
  }

  .slick-slide:not(.slick-active) {
    margin: 15px;
  }

  .slick-center {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
    transition: all 0.2s;
  }

  .slick-active {
    padding-top: 15px;
  }

  .banner-slider .slick-dots button {
    font-size: 0;
    line-height: 0;
  }

  .banner-slider .slick-dots {
    display: -webkit-flex;
    display: flex;
    gap: 7px;
    margin-top: 15px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .banner-slider .slick-dots li {
    padding: 0;
    display: block;
    width: 15px;
    border: 2.5px solid #D3D3D3;
    height: 0;
    transition: width 0.2s;
  }

  .banner-slider .slick-dots .slick-active {
    display: block;
    width: 30px;
    height: 0;
    border: 2.5px solid #EB2127;
    transition: width 0.2s;
  }

  .banner-slider__container,
.main-banner__container {
    padding: 0;
  }

  .main-banner__container .banner-slider__slide {
    -webkit-flex: 0 0 312px;
            flex: 0 0 312px;
    height: 332px;
  }

  .main-banner__container .banner-slider__slide:not(:last-of-type) {
    margin-right: 16px;
  }

  .main-banner__container .banner-slider__slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .banner-slider__slide-image {
    max-height: 480px;
  }

  .banner-slider__slider {
    padding: 0 15px;
    display: -webkit-flex;
    display: flex;
    gap: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow-x: scroll;
  }

  .banner-slider__slider--scroll {
    display: -webkit-flex;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 10px;
    overflow-y: hidden;
  }
}
.main-banner-slider__slide-image {
  max-height: 425px;
  width: 100%;
  border-radius: 16px;
}

.main-banner-slider .slick-slide {
  margin: 0 20px;
}

.main-banner-slider .slick-list {
  margin: 0 -20px;
}

.main-banner-slider .small-slider-arrow {
  opacity: 0;
  border-radius: 16px;
  background-color: #212239;
  width: 36px;
  height: 70px;
  transition: opacity 0.2s;
}

.no-touch .main-banner-slider:hover .small-slider-arrow {
  opacity: 1;
  transition: opacity 0.2s;
}

.main-banner-slider .small-slider-arrow--prev:after {
  left: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-banner-slider .small-slider-arrow--next:after {
  left: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.main-banner-slider .small-slider-arrow:after {
  position: absolute;
  display: block;
  content: "";
  top: 27px;
  left: 11px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transition: border-color 0.25s;
}

.main-banner-slider .small-slider-arrow:before {
  display: none;
}

.main-banner-slider__slide {
  position: relative;
}

.main-banner-slider__slide-link {
  inset: 0;
  position: absolute;
}

.main-banner-slider .slick-dots button {
  font-size: 0;
  line-height: 0;
}

.main-banner-slider .slick-dots {
  display: -webkit-flex;
  display: flex;
  gap: 7px;
  margin-top: 10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.main-banner-slider .slick-dots li {
  padding: 0;
  display: block;
  width: 11px;
  background-color: #E2E2E2;
  height: 11px;
  transition: width 0.2s;
  border-radius: 50%;
}

.main-banner-slider .slick-dots .slick-active {
  display: block;
  width: 42px;
  height: 11px;
  background-color: #212239;
  transition: width 0.2s;
  border-radius: 11px;
}

.no-touch .main-banner .btn--secondary:hover, .no-touch .main-banner .btn--secondary:active, .main-banner .btn--secondary:active {
  background-color: #212239;
}

@media (max-width: 999px) {
  .slick-slide:not(.slick-active) {
    margin: 15px;
  }

  .slick-center {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
    transition: all 0.2s;
  }

  .slick-active {
    padding-top: 15px;
  }
}
@media (max-width: 479px) {
  .main-banner-slider__slide-image {
    max-height: 520px;
    object-fit: cover;
  }

  .main-banner-slider .slick-slide {
    margin: 0 15px;
  }
}
@media screen and (max-width: 440px) and (-webkit-device-pixel-ratio: 3) {
  .main-banner-slider__slide-image {
    max-height: 600px;
  }
}
.favorites-small {
  cursor: pointer;
}

.favorites-btn {
  position: relative;
}

.favorites-btn--icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}

.favorites-btn--icon:before,
.favorites-btn--icon:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1.5px;
  background-color: #959696;
  top: 50%;
  left: 50%;
  transition: background-color 0.3s ease;
}

.favorites-btn--icon:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.favorites-btn--icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.favorites-btn--icon:hover:before,
.favorites-btn--icon:hover:after {
  background-color: #2A2A2A;
}

.favorites-btn__btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  color: #7F7F7F;
  font-size: 14px;
  line-height: 21px;
  cursor: pointer;
  transition: color 0.25s;
}

.no-touch .favorites-btn__btn:hover {
  color: #eb2127;
}

.favorites-btn__icon {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  width: 31px !important;
  height: 24px !important;
  margin-top: -1.5px;
  margin-left: -3px;
  padding-right: 1px;
  padding-left: 1px;
}

.favorites-btn__icon-active {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  width: 28px !important;
  height: 28px !important;
}

.favorites-btn__btn .favorites-btn__icon {
  color: #2A2A2A !important;
  fill: #2A2A2A !important;
}

.favorites-btn__btn.active .favorites-btn__icon {
  color: #eb2127 !important;
  fill: #eb2127 !important;
}

.favorites-btn__btn:hover .favorites-btn__icon {
  color: #eb2127 !important;
  fill: #eb2127 !important;
}

.favorites-btn__btn.active .favorites-btn__icon {
  color: #eb2127;
}

.favorites .product-list-item {
  padding: 20px 0;
}

@media (max-width: 1239px) {
  .favorites .product-list-item {
    padding: 16px 7.5px;
  }
}
/* --- tools --- */
.fc:first-child,
.flc:first-child {
  margin-top: 0;
}

.lc:last-child,
.flc:last-child {
  margin-bottom: 0;
}

.fcc.fcc {
  margin-top: 0;
}

.lcc.lcc {
  margin-bottom: 0;
}

.flcc.flcc {
  margin-top: 0;
  margin-bottom: 0;
}

.fs0 {
  font-size: 0;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.visible-ib {
  display: inline-block;
}

.visible-f {
  display: -webkit-flex;
  display: flex;
}

.visible-if {
  display: -webkit-inline-flex;
  display: inline-flex;
}

.visible-inline {
  display: inline;
}

.visible-table {
  display: table;
}

.visible-tc {
  display: table-cell;
}

.visible-li {
  display: list-item;
}

.toggle-when-open.open .hidden-when-open {
  display: none;
}

.toggle-when-open:not(.open) .hidden-when-not-open {
  display: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media (max-width: 1239px) {
  /* --- tools --- */
  .hidden-md {
    display: none;
  }

  .visible-md {
    display: block;
  }

  .visible-md-inline {
    display: inline;
  }

  .visible-md-f {
    display: -webkit-flex;
    display: flex;
  }

  .visible-md-if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .visible-md-ib {
    display: inline-block;
  }

  .visible-md-table {
    display: table;
  }

  .visible-md-tc {
    display: table-cell;
  }

  .visible-md-li {
    display: list-item;
  }
}
@media (max-width: 999px) {
  /* --- tools --- */
  .hidden-sm {
    display: none;
  }

  .visible-sm {
    display: block;
  }

  .visible-sm-inline {
    display: inline;
  }

  .visible-sm-f {
    display: -webkit-flex;
    display: flex;
  }

  .visible-sm-if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .visible-sm-ib {
    display: inline-block;
  }

  .visible-sm-table {
    display: table;
  }

  .visible-sm-tc {
    display: table-cell;
  }

  .visible-sm-li {
    display: list-item;
  }
}
@media (max-width: 759px) {
  /* --- tools --- */
  .hidden-xs {
    display: none;
  }

  .visible-xs {
    display: block;
  }

  .visible-xs-f {
    display: -webkit-flex;
    display: flex;
  }

  .visible-xs-if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .visible-xs-inline {
    display: inline;
  }

  .visible-xs-ib {
    display: inline-block;
  }

  .visible-xs-table {
    display: table;
  }

  .visible-xs-tc {
    display: table-cell;
  }

  .visible-xs-li {
    display: list-item;
  }
}
@media (max-width: 639px) {
  /* --- tools --- */
  .hidden-2xs {
    display: none;
  }

  .visible-2xs {
    display: block;
  }

  .visible-2xs-f {
    display: -webkit-flex;
    display: flex;
  }

  .visible-2xs-if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .visible-2xs-inline {
    display: inline;
  }

  .visible-2xs-ib {
    display: inline-block;
  }

  .visible-2xs-table {
    display: table;
  }

  .visible-2xs-tc {
    display: table-cell;
  }

  .visible-2xs-li {
    display: list-item;
  }
}
@media (max-width: 479px) {
  /* --- tools --- */
  .hidden-3xs {
    display: none;
  }

  .visible-3xs {
    display: block;
  }

  .visible-3xs-f {
    display: -webkit-flex;
    display: flex;
  }

  .visible-3xs-if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .visible-3xs-inline {
    display: inline;
  }

  .visible-3xs-ib {
    display: inline-block;
  }

  .visible-3xs-table {
    display: table;
  }

  .visible-3xs-tc {
    display: table-cell;
  }

  .visible-3xs-li {
    display: list-item;
  }
}
@media (max-width: 374px) {
  /* --- tools --- */
  .hidden-4xs {
    display: none;
  }

  .visible-4xs {
    display: block;
  }

  .visible-4xs-f {
    display: -webkit-flex;
    display: flex;
  }

  .visible-4xs-if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .visible-4xs-inline {
    display: inline;
  }

  .visible-4xs-ib {
    display: inline-block;
  }

  .visible-4xs-table {
    display: table;
  }

  .visible-4xs-tc {
    display: table-cell;
  }

  .visible-4xs-li {
    display: list-item;
  }
}
/* End */
/* /local/dist/styles/styles.build.css?1759752789529717 */
