

/* Start:/local/templates/sprivod/css/swiper-bundle.css?176103434419584*/
/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root {
  --swiper-theme-color: #036666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 30px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  /*top: var(--swiper-navigation-top-offset, 50%);*/
  /*margin-top: calc(0px - (var(--swiper-navigation-size) / 2));*/
}
.swiper-button-prev {
  /*left: var(--swiper-navigation-sides-offset, 4px);*/
  /*right: auto;*/
  /*.swiper-navigation-icon {*/
  /*  transform: rotate(180deg);*/
  /*}*/
}
.swiper-button-next {
  /*right: var(--swiper-navigation-sides-offset, 4px);*/
  /*left: auto;*/
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* End */


/* Start:/local/templates/sprivod/css/inti-tel-input.css?176457757818854*/
:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-search-icon-color: #999;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url("/local/templates/sprivod/css/../images/inti-tel-input/flags.webp");
  --iti-path-flags-2x: url("/local/templates/sprivod/css/../images/inti-tel-input/flags@2x.webp");
  --iti-path-globe-1x: url("/local/templates/sprivod/css/../images/inti-tel-input/globe.webp");
  --iti-path-globe-2x: url("/local/templates/sprivod/css/../images/inti-tel-input/globe@2x.webp");
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 10;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 28px;
}
[dir=rtl] .iti__search-input {
  padding-left: inherit;
  padding-right: 30px;
  background-position: right 8px center;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}
.iti__search-input::-webkit-search-cancel-button {
  appearance: none;
}
.iti__search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.iti__search-icon {
  position: absolute;
  left: 8px;
  display: flex;
  pointer-events: none;
}
[dir=rtl] .iti__search-icon {
  left: auto;
  right: 8px;
}
.iti__search-icon-svg {
  stroke: var(--iti-search-icon-color);
  fill: none;
  stroke-width: 3;
}
.iti__search-clear {
  position: absolute;
  right: 4px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
  width: 24px;
  height: 24px;
}
.iti__search-clear .iti__search-clear-x {
  stroke-width: 2;
}
.iti__search-clear .iti__search-clear-bg {
  fill: var(--iti-search-icon-color);
}
[dir=rtl] .iti__search-clear {
  right: auto;
  left: 4px;
}
.iti__search-clear:hover, .iti__search-clear:focus-visible {
  background: var(--iti-hover-color);
  outline: none;
}
.iti__no-results {
  text-align: center;
  padding: 30px 0;
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-dialcode-color);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__country-list .iti__flag, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) button.iti__selected-country {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 11060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
/* End */


/* Start:/local/templates/sprivod/template_styles.css?1765990503314282*/
@charset "UTF-8";

/*!
DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15;
  /* 1 */
    -webkit-text-size-adjust: 100%;
  /* 2 */;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1,
.form__title {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  /* 1 */
    height: 0;
  /* 1 */
    overflow: visible;
  /* 2 */;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace;
  /* 1 */
    font-size: 1em;
  /* 2 */;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none;
  /* 1 */
    text-decoration: underline;
  /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  /* 2 */;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace;
  /* 1 */
    font-size: 1em;
  /* 2 */;
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
    border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
  /* 1 */
    font-size: 100%;
  /* 1 */
    line-height: 1.15;
  /* 1 */
    margin: 0;
  /* 2 */;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  /* 1 */
    color: inherit;
  /* 2 */
    display: table;
  /* 1 */
    max-width: 100%;
  /* 1 */
    padding: 0;
  /* 3 */
    white-space: normal;
  /* 1 */;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  /* 1 */
    padding: 0;
  /* 2 */;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=search] {
    -webkit-appearance: textfield;
  /* 1 */
    outline-offset: -2px;
  /* 2 */;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button;
  /* 1 */
    font: inherit;
  /* 2 */;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

pre {
    font: normal 14/1.5 monospace !important;
    position: relative;
    padding: 15px;
    text-align: left !important;
    background: #eee;
}

pre:before {
    content: "debug";
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-block;
    color: #aaa;
}

.dbg {
    outline: 1px solid #bc262c;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clear {
    display: block;
    clear: both;
    width: 100%;
}

.fw100 {
    font-weight: 600;
}

.fw400 {
    font-weight: 600;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fsz12 {
    font-size: 12px;
}

.fsz14 {
    font-size: 14px;
}

.fsz16 {
    font-size: 16px;
}

.fsz18 {
    font-size: 18px;
}

.fsz20 {
    font-size: 20px;
}

.fsz22 {
    font-size: 22px;
}

.fsz26 {
    font-size: 26px;
}

.lhn {
    line-height: normal !important;
}

.lh150 {
    line-height: 150% !important;
}

.lh170 {
    line-height: 170% !important;
}

.tal {
    text-align: left;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

.taj {
    text-align: justify;
}

.ttu {
    text-transform: uppercase;
}

.ttl {
    text-transform: lowercase;
}

.fw400 {
    font-weight: 400;
}

.fw700 {
    font-weight: 700;
}

.fsi {
    font-style: italic;
}

.fsn {
    font-style: normal;
}

.nop {
    padding: 0 !important;
}

.nom {
    margin: 0 !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/**
Font-names/weight:

100 - Thin (Hairline);
200 - Extra-Light (Ultra Light);
300 - Light;
400 - Regular (Normal);
500 - Medium;
600 - SemiBold (Demi Bold);
700 - Bold;
800 - Extra-Bold (Ultra Bold);
900 - Black (Heavy);
*/

@font-face {
    font-family: "Roboto";
  src: local("Roboto Regular"), url("/local/templates/sprivod/fonts/RobotoRegular.woff2") format("woff2"), url("/local/templates/sprivod/fonts/RobotoRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: "Roboto";
  src: local("Roboto Medium"), url("/local/templates/sprivod/fonts/RobotoMedium.woff2") format("woff2"), url("/local/templates/sprivod/fonts/RobotoMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: "Roboto";
  src: local("Roboto Bold"), url("/local/templates/sprivod/fonts/RobotoBold.woff2") format("woff2"), url("/local/templates/sprivod/fonts/RobotoBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: "Montserrat";
  src: local("Montserrat Bold"), url("/local/templates/sprivod/fonts/Montserrat-Bold.woff2") format("woff2"), url("/local/templates/sprivod/fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: "Montserrat";
  src: local("Montserrat Regular"), url("/local/templates/sprivod/fonts/Montserrat-Regular.woff2") format("woff2"), url("/local/templates/sprivod/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: 0;
}

body,
html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #636466;
    background: #F7FAFC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-width: 320px;
}

body {
    margin: 0 auto;
}

body.fix-menu {
    margin-top: 50px;
}

.slider-block__heading,
h2,
.heading-h2,
h1,
.form__title,
.heading-h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #036666;
    text-decoration: none;
    text-transform: none;
}

h1,
.form__title,
.heading-h1 {
    line-height: 140%;
}

h2,
.heading-h2 {
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
    line-height: 140%;
}

/* Bitrix interface fixes: */

[id^=bx_incl_area] {
    display: initial;
    width: 100%;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

iframe,
form,
fieldset,
button[type=button],
input[type=button],
button[type=submit],
input[type=submit],
input[type=text],
input[type=tel],
input[type=email],
input[type=search],
textarea {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
textarea {
    -webkit-box-shadow: 0 2px 4px rgba(3, 102, 102, 0.25);
    box-shadow: 0 2px 4px rgba(3, 102, 102, 0.25);
    padding: 7px 10px;
    border-radius: 5px;
    color: #636466;
    font-size: 12px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: white;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ADAEAE;
}

input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #ADAEAE;
}

input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ADAEAE;
}

input[type=text]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #ADAEAE;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
textarea::placeholder {
    color: #ADAEAE;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
textarea:focus {
    border: 1px solid #2DB0AF;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
    top: 1px;
}

button.btn,
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    color: #636466;
    position: relative;
    cursor: pointer;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    border: 1px solid #2DB0AF;
    font-weight: 500;
    width: 160px;
    font-family: Roboto, sans-serif;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

button.btn:hover,
button.btn:active,
.btn:hover,
.btn:active {
    background: #2DB0AF;
    color: #fff;
}

button.btn--cart,
.btn--cart {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

button.btn--cart:after,
.btn--cart:after {
    margin-left: 0;
}

button.btn--cart:after,
.btn--cart:after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.54395 13.249C6.05384 13.2492 6.4668 13.6629 6.4668 14.1729C6.4667 14.6827 6.05378 15.0956 5.54395 15.0957C5.03398 15.0957 4.62021 14.6828 4.62012 14.1729C4.62012 13.6628 5.03392 13.249 5.54395 13.249ZM12.6729 13.249C13.1829 13.249 13.5967 13.6628 13.5967 14.1729C13.5966 14.6828 13.1828 15.0957 12.6729 15.0957C12.1631 15.0955 11.7501 14.6827 11.75 14.1729C11.75 13.663 12.163 13.2492 12.6729 13.249ZM0.498047 0.250977C0.533799 0.247603 0.570165 0.25117 0.604492 0.261719L2.74219 0.918945H2.74316C2.78504 0.931726 2.82329 0.954638 2.85449 0.985352C2.88563 1.01602 2.90844 1.05411 2.92188 1.0957L5.30566 8.6416L5.36035 8.81641H13.5674L13.6113 8.62012L15.0039 2.36133L15.0713 2.05762H5.10449L4.92871 1.51465H15.4414L15.5 1.52148C15.5195 1.52596 15.5385 1.53233 15.5566 1.54102C15.5928 1.55839 15.6251 1.58408 15.6504 1.61523L15.6543 1.62012C15.6811 1.65148 15.7006 1.68857 15.7109 1.72852C15.7211 1.76782 15.7217 1.80881 15.7139 1.84863L14.0615 9.14746C14.0477 9.20865 14.0133 9.26316 13.9639 9.30176C13.9144 9.34038 13.8528 9.36091 13.79 9.35938H5.6416L5.57227 9.41699L4.31445 10.46L4.2793 10.4893L4.25684 10.5293C4.20613 10.6189 4.17898 10.7203 4.17871 10.8232C4.17849 10.9262 4.20554 11.0273 4.25586 11.1172C4.30623 11.2071 4.37877 11.2833 4.4668 11.3369C4.55468 11.3904 4.655 11.4203 4.75781 11.4238H13.5547C13.6267 11.4238 13.6962 11.452 13.7471 11.5029C13.798 11.5538 13.8262 11.6233 13.8262 11.6953C13.8262 11.7673 13.798 11.8368 13.7471 11.8877C13.6962 11.9386 13.6267 11.9668 13.5547 11.9668H4.83789C4.65332 11.9759 4.4688 11.942 4.2998 11.8672C4.13088 11.7924 3.98159 11.6788 3.86426 11.5361H3.86328C3.70194 11.3291 3.61783 11.0721 3.62402 10.8096C3.63026 10.5467 3.72704 10.294 3.89844 10.0947L3.94922 10.0439L4.79395 9.35449L4.92578 9.24707L4.875 9.08496L2.48047 1.52246L2.44141 1.39746L2.31543 1.35938L0.443359 0.785156C0.374151 0.763858 0.316239 0.716258 0.282227 0.652344C0.248243 0.588209 0.240424 0.512744 0.261719 0.443359C0.283024 0.374029 0.331456 0.316241 0.395508 0.282227C0.427278 0.265392 0.462253 0.254372 0.498047 0.250977Z' fill='%23636466' stroke='%23636466' stroke-width='0.5'/%3E%3C/svg%3E%0A");
}

button.btn--cart:hover:after,
button.btn--cart:active:after,
.btn--cart:hover:after,
.btn--cart:active:after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.54395 13.249C6.05384 13.2492 6.4668 13.6629 6.4668 14.1729C6.4667 14.6827 6.05378 15.0956 5.54395 15.0957C5.03398 15.0957 4.62021 14.6828 4.62012 14.1729C4.62012 13.6628 5.03392 13.249 5.54395 13.249ZM12.6729 13.249C13.1829 13.249 13.5967 13.6628 13.5967 14.1729C13.5966 14.6828 13.1828 15.0957 12.6729 15.0957C12.1631 15.0955 11.7501 14.6827 11.75 14.1729C11.75 13.663 12.163 13.2492 12.6729 13.249ZM0.498047 0.250977C0.533799 0.247603 0.570165 0.25117 0.604492 0.261719L2.74219 0.918945H2.74316C2.78504 0.931726 2.82329 0.954638 2.85449 0.985352C2.88563 1.01602 2.90844 1.05411 2.92188 1.0957L5.30566 8.6416L5.36035 8.81641H13.5674L13.6113 8.62012L15.0039 2.36133L15.0713 2.05762H5.10449L4.92871 1.51465H15.4414L15.5 1.52148C15.5195 1.52596 15.5385 1.53233 15.5566 1.54102C15.5928 1.55839 15.6251 1.58408 15.6504 1.61523L15.6543 1.62012C15.6811 1.65148 15.7006 1.68857 15.7109 1.72852C15.7211 1.76782 15.7217 1.80881 15.7139 1.84863L14.0615 9.14746C14.0477 9.20865 14.0133 9.26316 13.9639 9.30176C13.9144 9.34038 13.8528 9.36091 13.79 9.35938H5.6416L5.57227 9.41699L4.31445 10.46L4.2793 10.4893L4.25684 10.5293C4.20613 10.6189 4.17898 10.7203 4.17871 10.8232C4.17849 10.9262 4.20554 11.0273 4.25586 11.1172C4.30623 11.2071 4.37877 11.2833 4.4668 11.3369C4.55468 11.3904 4.655 11.4203 4.75781 11.4238H13.5547C13.6267 11.4238 13.6962 11.452 13.7471 11.5029C13.798 11.5538 13.8262 11.6233 13.8262 11.6953C13.8262 11.7673 13.798 11.8368 13.7471 11.8877C13.6962 11.9386 13.6267 11.9668 13.5547 11.9668H4.83789C4.65332 11.9759 4.4688 11.942 4.2998 11.8672C4.13088 11.7924 3.98159 11.6788 3.86426 11.5361H3.86328C3.70194 11.3291 3.61783 11.0721 3.62402 10.8096C3.63026 10.5467 3.72704 10.294 3.89844 10.0947L3.94922 10.0439L4.79395 9.35449L4.92578 9.24707L4.875 9.08496L2.48047 1.52246L2.44141 1.39746L2.31543 1.35938L0.443359 0.785156C0.374151 0.763858 0.316239 0.716258 0.282227 0.652344C0.248243 0.588209 0.240424 0.512744 0.261719 0.443359C0.283024 0.374029 0.331456 0.316241 0.395508 0.282227C0.427278 0.265392 0.462253 0.254372 0.498047 0.250977Z' fill='white' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E%0A");
}

button.btn:active,
.btn:active {
    top: 1px;
}

button.btn u,
.btn u {
    text-decoration: none;
    display: none;
}

[data-product-order] {
    padding: 13px 42px !important;
    border-color: #75132A !important;
    color: #636466;
}

.element-detail__actions [data-product-order] {
    max-height: 36px !important;
    width: 100% !important;
    padding: 17px 42px !important;
}

.element-detail__actions [data-product-order] u {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

[data-product-order]:hover {
    background: #75132A !important;
    color: #fff !important;
}

[data-product-order]:after {
    display: none;
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.54395 13.249C6.05384 13.2492 6.4668 13.6629 6.4668 14.1729C6.4667 14.6827 6.05378 15.0956 5.54395 15.0957C5.03398 15.0957 4.62021 14.6828 4.62012 14.1729C4.62012 13.6628 5.03392 13.249 5.54395 13.249ZM12.6729 13.249C13.1829 13.249 13.5967 13.6628 13.5967 14.1729C13.5966 14.6828 13.1828 15.0957 12.6729 15.0957C12.1631 15.0955 11.7501 14.6827 11.75 14.1729C11.75 13.663 12.163 13.2492 12.6729 13.249ZM0.498047 0.250977C0.533799 0.247603 0.570165 0.25117 0.604492 0.261719L2.74219 0.918945H2.74316C2.78504 0.931726 2.82329 0.954638 2.85449 0.985352C2.88563 1.01602 2.90844 1.05411 2.92188 1.0957L5.30566 8.6416L5.36035 8.81641H13.5674L13.6113 8.62012L15.0039 2.36133L15.0713 2.05762H5.10449L4.92871 1.51465H15.4414L15.5 1.52148C15.5195 1.52596 15.5385 1.53233 15.5566 1.54102C15.5928 1.55839 15.6251 1.58408 15.6504 1.61523L15.6543 1.62012C15.6811 1.65148 15.7006 1.68857 15.7109 1.72852C15.7211 1.76782 15.7217 1.80881 15.7139 1.84863L14.0615 9.14746C14.0477 9.20865 14.0133 9.26316 13.9639 9.30176C13.9144 9.34038 13.8528 9.36091 13.79 9.35938H5.6416L5.57227 9.41699L4.31445 10.46L4.2793 10.4893L4.25684 10.5293C4.20613 10.6189 4.17898 10.7203 4.17871 10.8232C4.17849 10.9262 4.20554 11.0273 4.25586 11.1172C4.30623 11.2071 4.37877 11.2833 4.4668 11.3369C4.55468 11.3904 4.655 11.4203 4.75781 11.4238H13.5547C13.6267 11.4238 13.6962 11.452 13.7471 11.5029C13.798 11.5538 13.8262 11.6233 13.8262 11.6953C13.8262 11.7673 13.798 11.8368 13.7471 11.8877C13.6962 11.9386 13.6267 11.9668 13.5547 11.9668H4.83789C4.65332 11.9759 4.4688 11.942 4.2998 11.8672C4.13088 11.7924 3.98159 11.6788 3.86426 11.5361H3.86328C3.70194 11.3291 3.61783 11.0721 3.62402 10.8096C3.63026 10.5467 3.72704 10.294 3.89844 10.0947L3.94922 10.0439L4.79395 9.35449L4.92578 9.24707L4.875 9.08496L2.48047 1.52246L2.44141 1.39746L2.31543 1.35938L0.443359 0.785156C0.374151 0.763858 0.316239 0.716258 0.282227 0.652344C0.248243 0.588209 0.240424 0.512744 0.261719 0.443359C0.283024 0.374029 0.331456 0.316241 0.395508 0.282227C0.427278 0.265392 0.462253 0.254372 0.498047 0.250977Z' fill='%2375132a' stroke='%2375132a' stroke-width='0.5'/%3E%3C/svg%3E%0A");
}

textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 5px;
    width: 100%;
    padding: 6px 10px;
    background: #fff;
}

.swiper {
    visibility: hidden;
}

.swiper-initialized {
    visibility: visible;
}

.swiper-pagination {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.swiper-pagination-bullets {
    left: auto;
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    border: 1px solid #ADAEAE;
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    border-color: #036666;
    background: #036666;
}

::-webkit-input-placeholder {
    color: #ADAEAE;
}

::-moz-placeholder {
    color: #ADAEAE;
}

:-ms-input-placeholder {
    color: #ADAEAE;
}

::-ms-input-placeholder {
    color: #ADAEAE;
}

::placeholder {
    color: #ADAEAE;
}

::-moz-selection {
    background: #036666;
    color: #fff;
}

::selection {
    background: #036666;
    color: #fff;
}

[data-checkbox-field],
[data-radio-field],
.checkbox-field,
.radio-field {
    color: gray;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

[data-checkbox-field] input[type=radio],
[data-checkbox-field] input[type=checkbox],
[data-radio-field] input[type=radio],
[data-radio-field] input[type=checkbox],
.checkbox-field input[type=radio],
.checkbox-field input[type=checkbox],
.radio-field input[type=radio],
.radio-field input[type=checkbox] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

[data-checkbox-field] input[type=radio] + label,
[data-checkbox-field] input[type=checkbox] + label,
[data-radio-field] input[type=radio] + label,
[data-radio-field] input[type=checkbox] + label,
.checkbox-field input[type=radio] + label,
.checkbox-field input[type=checkbox] + label,
.radio-field input[type=radio] + label,
.radio-field input[type=checkbox] + label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: #636466;
    font-weight: 400;
}

[data-checkbox-field] input[type=radio] + label:before,
[data-checkbox-field] input[type=checkbox] + label:before,
[data-radio-field] input[type=radio] + label:before,
[data-radio-field] input[type=checkbox] + label:before,
.checkbox-field input[type=radio] + label:before,
.checkbox-field input[type=checkbox] + label:before,
.radio-field input[type=radio] + label:before,
.radio-field input[type=checkbox] + label:before {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    background-color: #fff;
}

[data-checkbox-field] input[type=radio]:checked + label::before,
[data-checkbox-field] input[type=checkbox]:checked + label::before,
[data-radio-field] input[type=radio]:checked + label::before,
[data-radio-field] input[type=checkbox]:checked + label::before,
.checkbox-field input[type=radio]:checked + label::before,
.checkbox-field input[type=checkbox]:checked + label::before,
.radio-field input[type=radio]:checked + label::before,
.radio-field input[type=checkbox]:checked + label::before {
    border-color: #DEDEDE;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.91205 10.1537L0.800781 6.04245M4.94652 10.1537L14.3004 0.799805' stroke='%23036666' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

[data-radio-field],
.radio-field {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[data-radio-field] input[type=radio] + label:before,
.radio-field input[type=radio] + label:before {
    border-radius: 50%;
}

[data-radio-field] input[type=radio]:checked + label::before,
.radio-field input[type=radio]:checked + label::before {
    border-color: #DEDEDE;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='%23036666'/%3E%3C/svg%3E%0A");
}

[data-spin-box-field],
.spin-box-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    padding: 0 10px;
    border-radius: 5px;
    font-weight: 700;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[data-spin-box-field] [data-up],
[data-spin-box-field] [data-down],
.spin-box-field [data-up],
.spin-box-field [data-down] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
}

[data-spin-box-field] [data-up]:active,
[data-spin-box-field] [data-down]:active,
.spin-box-field [data-up]:active,
.spin-box-field [data-down]:active {
    top: 1px;
}

[data-spin-box-field] [data-up],
.spin-box-field [data-up] {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.80078 0.799805V8.79981M0.800781 4.80027H8.80078' stroke='%23636466' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

[data-spin-box-field] [data-down],
.spin-box-field [data-down] {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='2' viewBox='0 0 10 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.800781 0.799805H8.80078' stroke='%23636466' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

[data-spin-box-field] input[type=number],
.spin-box-field input[type=number] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 30px;
    text-align: center;
    border: none !important;
    background: transparent;
    font-weight: 700;
    color: #636466;
    -moz-appearance: textfield;
}

[data-spin-box-field] input[type=number]::-webkit-outer-spin-button,
[data-spin-box-field] input[type=number]::-webkit-inner-spin-button,
.spin-box-field input[type=number]::-webkit-outer-spin-button,
.spin-box-field input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.slider-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    padding: 20px;
}

.slider-block[data-banner-slider] {
    padding: 0 0 20px 0;
}

.slider-block[data-catalog-slider] {
    padding: 20px 20px;
}

.slider-block[data-catalog-slider] .slider-block__header {
    height: 52px;
}

.slider-block[data-popular-slider],
.slider-block[data-articles-slider],
.slider-block[data-documents-slider],
.slider-block[data-catalog-sections-slider] {
    padding: 20px 0 20px 20px;
}

.slider-block[data-popular-slider] .swiper-pagination,
.slider-block[data-articles-slider] .swiper-pagination,
.slider-block[data-documents-slider] .swiper-pagination,
.slider-block[data-catalog-sections-slider] .swiper-pagination {
    right: 20px;
}

.slider-block[data-popular-slider] .slider-block__header,
.slider-block[data-catalog-sections-slider] .slider-block__header {
    height: 52px;
}

.slider-block[data-documents-slider] .slider-block__header {
    height: 52px;
}

.slider-block[data-trust-slider] .slider-block__header,
.slider-block[data-reviews-slider] .slider-block__header {
    background-image: none;
}

.slider-block[data-trust-slider] .slider-block__arrows,
.slider-block[data-reviews-slider] .slider-block__arrows {
    display: none;
}

.slider-block__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.slider-block__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.slider-block__heading--white {
    color: #fff;
}

.slider-block__arrows {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    position: relative;
    width: 130px;
}

.slider-block__arrows .swiper-button-next,
.slider-block__arrows .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 14.25C23.4142 14.25 23.75 14.5858 23.75 15C23.75 15.4142 23.4142 15.75 23 15.75V15V14.25ZM6.46967 15.5303C6.17678 15.2374 6.17678 14.7626 6.46967 14.4697L11.2426 9.6967C11.5355 9.40381 12.0104 9.40381 12.3033 9.6967C12.5962 9.98959 12.5962 10.4645 12.3033 10.7574L8.06066 15L12.3033 19.2426C12.5962 19.5355 12.5962 20.0104 12.3033 20.3033C12.0104 20.5962 11.5355 20.5962 11.2426 20.3033L6.46967 15.5303ZM23 15V15.75H7V15V14.25H23V15Z' fill='%23636466'/%3E%3C/svg%3E%0A");
    left: 0;
    top: 20px;
}

.slider-block__arrows .swiper-button-next {
    left: 20px;
}

.slider-block__arrows .swiper-button-prev {
    left: 60px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.slider-block__arrows svg.swiper-navigation-icon {
    display: none;
}

.slider-block__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
}

.slider-block .swiper-pagination {
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.slider-block .swiper-pagination-bullets {
    left: auto;
}

.slider-block .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    border: 1px solid #ADAEAE;
    background: #fff;
    opacity: 1;
}

.slider-block .swiper-pagination-bullet-active {
    border-color: #036666;
    background: #036666;
}

.main-banner__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    padding-bottom: 40px;
}

.main-banner__slider .banner-swiper-pagination {
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-banner__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: relative;
    width: 100%;
    height: 180px;
    text-decoration: none;
}

.main-banner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.main-banner__text {
    display: block;
    margin: 20px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 140%;
    color: #fff;
    font-size: 14px;
}

.main-banner__text small {
    font-size: 12px;
}

.main-banner__block {
    display: none;
    width: 100%;
    height: calc(100vh - 93px);
    overflow: hidden;
}

.main-banner__block-accordion {
    width: 100%;
    height: inherit;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    background-color: rgba(255, 255, 255, 0.2);
}

.main-banner__block-accordion .cover {
    width: 100%;
    height: 100%;
    top: 625px;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.35)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
    -webkit-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
}

.main-banner__block-accordion .cover div {
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
    font-size: 45px;
    width: 100%;
    text-align: right;
    position: absolute;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    overflow: hidden;
    word-wrap: normal;
    padding-right: 8px;
    padding-top: 10px;
}

.main-banner__block-accordion .caption {
    height: 50%;
    width: 100%;
    position: absolute;
    top: calc(100vh - 94px);
    color: #fff;
    padding: 20px;
    -webkit-transition: top 0.4s ease-in-out 0.3s;
    transition: top 0.4s ease-in-out 0.3s;
}

.main-banner__block-accordion .caption div {
    font-family: "Montserrat", sans-serif;
}

.main-banner__block-accordion .caption div {
    line-height: 140%;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
}

.main-banner__block-accordion .caption div:first-child {
    font-size: 18px;
}

.main-banner__block-accordion .caption div:nth-child(2) {
    font-size: 40px;
    font-weight: 400;
}

.main-banner__block-accordion .caption div:nth-child(3) {
    letter-spacing: -3px;
}

.main-banner__block-img-container {
    border-right: 1px solid #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    -webkit-transition: flex-grow 0.3s ease-in-out, -webkit-box-flex 0.3s ease-in-out;
    transition: flex-grow 0.3s ease-in-out, -webkit-box-flex 0.3s ease-in-out;
    transition: flex-grow 0.3s ease-in-out;
    transition: flex-grow 0.3s ease-in-out, -webkit-box-flex 0.3s ease-in-out, -ms-flex-positive 0.3s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-banner__block-img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-banner__block-img-container:last-child {
    border-right: none;
}

.main-banner__block-img-container:hover {
    -webkit-box-flex: 5;
    -ms-flex-positive: 5;
    flex-grow: 5;
    cursor: pointer;
}

.main-banner__block-img-container:hover .cover {
    top: 0;
}

.main-banner__block-img-container:hover .caption {
    top: 73%;
}

.main-catalog__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    padding: 5px 5px 40px 5px;
}

.main-catalog__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    height: inherit;
    width: 100%;
}

.main-catalog__slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    min-height: 160px;
    overflow: hidden;
}

.main-catalog__slide-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    aspect-ratio: 16/9;
}

.main-catalog__slide-image:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.main-catalog__slide-title {
    margin-top: 10px;
    font-size: 12px;
    color: #636466;
    text-decoration: none;
}

.main-catalog__slide-title:hover {
    text-decoration: underline;
}

[data-catalog-slider] .slider-block__header {
    margin-bottom: 0;
}

.main-popular__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 5px 0 20px 5px;
    margin-left: -5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-popular__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    width: 130px;
}

.main-articles__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
}

.main-articles__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 280px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.main-articles__slide-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    min-height: 240px;
    width: 100%;
    position: relative;
    border-radius: 5px;
    background-size: cover;
    -webkit-box-shadow: 2px 2px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 2px 2px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.main-articles__slide-title {
    margin-top: 10px;
    font-weight: 400;
    font-size: 12px;
}

.main-articles__block {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    height: 520px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 70px;
}

.main-articles__left,
.main-articles__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: calc(50% - 10px);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.main-articles__horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: 20px;
}

.main-articles__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.main-articles__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-decoration: none;
    color: #636466;
}

.main-articles__horizontal .main-articles__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 10px);
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.main-articles__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 10px;
    line-height: 0;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.main-articles__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 0;
    background-size: cover !important;
}

.main-articles__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    padding: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.main-documents__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 5px 0 40px 5px;
}

.main-documents__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 130px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    background: #fff;
    -webkit-box-shadow: 2px 2px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 2px 2px 10px 0 rgba(3, 102, 102, 0.2509803922);
    overflow: hidden;
    border-radius: 10px;
}

.main-documents__slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-decoration: none !important;
    color: #636466;
}

.main-documents__slide-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    height: 184px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-documents__slide-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    width: 100%;
    padding: 10px;
    font-size: 12px;
    border-top: solid 1px #DEDEDE;
    color: #636466;
    text-decoration: none;
}

.main-trust__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 40px;
}

.main-trust__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    min-height: 115px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 2px 2px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 2px 2px 10px 0 rgba(3, 102, 102, 0.2509803922);
    overflow: hidden;
    width: 130px;
    height: 115px;
}

.main-trust__slide img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.main-reviews__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 40px;
}

.main-reviews__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.main-reviews__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    font-size: 12px;
    width: 100%;
    height: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 140%;
}

.main-reviews__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
}

.main-reviews__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
}

.main-reviews__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-reviews__post {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

.main-reviews__title {
    font-weight: 700;
}

.main-reviews__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: 20px;
    text-align: right;
    padding-right: 10px;
}

[data-documents-slider] .slider-block__header,
[data-popular-slider] .slider-block__header {
    margin-bottom: 5px;
}

[data-catalog-sections-slider] .slider-block__header {
    margin-bottom: 0;
}

[data-catalog-sections-slider] .catalog-sections__slider {
    padding: 20px 0 30px 15px;
}

[data-trust-slider] {
    padding: 20px 0 20px 20px;
}

[data-trust-slider] .trust-swiper-pagination {
    right: 20px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.wrapper-full {
    padding: 20px;
}

.wrapper-right {
    padding: 20px;
}

.header-large__menu-submenu,
.dropdown-menu {
    position: absolute;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    top: 30px;
    right: 0;
    z-index: 30;
    padding: 12px 10px;
    width: 270px;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.header-large__menu-submenu a,
.dropdown-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0 5px 10px;
    font-size: 12px;
    color: #636466;
    text-decoration: none;
    border-radius: 5px;
}

.header-large__menu-submenu a:hover,
.dropdown-menu a:hover {
    background: #DEDEDE;
}

.dropdown-item {
    position: relative;
}

.dropdown-item:hover > .dropdown-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dropdown-item:hover button {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.social-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.social-block__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    margin: 0 5px;
}

.social-block__icon:first-child {
    margin-left: 0;
}

.social-block__icon:last-child {
    margin-right: 0;
}

.social-block__icon svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    fill: none;
}

.social-block__icon svg:hover svg#icon-tg {
    fill: #75132A;
}

.social-block__icon svg:hover svg#icon-tg path {
    stroke: #75132A;
}

.social-block__icon svg {
  /*
              stroke: $color-gray-dark;
              #icon-max:hover {
                  rect {
                      stroke-width: 1.6;
                      stroke: red !important;
                  }

                  path {
                      fill: $color-gray-dark;
                      fill-rule: evenodd;
                      clip-rule: evenodd;
                      stroke: red;
                  }
              }
  */;
}

.social-block__icon--vk,
.social-block__icon--ok,
.social-block__icon--dzen,
.social-block__icon--tg,
.social-block__icon--rt,
.social-block__icon--max,
.social-block__icon--wa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid;
    border-radius: 5px;
}

.social-block__icon--vk svg,
.social-block__icon--ok svg,
.social-block__icon--dzen svg,
.social-block__icon--tg svg,
.social-block__icon--rt svg,
.social-block__icon--max svg,
.social-block__icon--wa svg {
    fill: #636466;
}

.social-block__icon--vk svg {
    width: 18px;
    height: 11px;
}

.social-block__icon--vk.active svg,
.social-block__icon--vk:hover svg {
    fill: #4D7198;
}

.social-block__icon--ok svg {
    width: 9px;
    height: 15px;
}

.social-block__icon--ok.active svg,
.social-block__icon--ok:hover svg {
    fill: #ED812B;
}

.social-block__icon--dzen svg {
    width: 30px;
    height: 30px;
}

.social-block__icon--dzen.active svg,
.social-block__icon--dzen:hover svg {
    fill: #222222;
}

.social-block__icon--tg svg {
    width: 17px;
    height: 14px;
}

.social-block__icon--tg.active svg,
.social-block__icon--tg:hover svg {
    fill: #27A7E7;
}

.social-block__icon--rt svg {
    width: 21px;
    height: 19px;
}

.social-block__icon--rt.active svg,
.social-block__icon--rt:hover svg {
    fill: #100943;
}

.social-block__icon--rt.active svg > path:nth-child(1),
.social-block__icon--rt:hover svg > path:nth-child(1) {
    fill: red;
}

.social-block__icon--max svg {
    width: 18px;
    height: 18px;
}

.social-block__icon--max.active svg,
.social-block__icon--max:hover svg {
    fill: #7E5DDD;
}

.social-block__icon--wa svg {
    width: 20px;
    height: 20px;
}

.social-block__icon--wa.active svg,
.social-block__icon--wa:hover svg {
    fill: #67C15E;
}

.dropdown-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-select a {
    text-decoration: none;
}

.dropdown-select svg {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #036666;
}

.dropdown-select button {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.arrow-right:after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 4.77295C0.335786 4.77295 0 5.10874 0 5.52295C0 5.93716 0.335786 6.27295 0.75 6.27295V5.52295V4.77295ZM17.2803 6.05328C17.5732 5.76039 17.5732 5.28551 17.2803 4.99262L12.5074 0.219648C12.2145 -0.073245 11.7396 -0.073245 11.4467 0.219648C11.1538 0.512542 11.1538 0.987415 11.4467 1.28031L15.6893 5.52295L11.4467 9.76559C11.1538 10.0585 11.1538 10.5334 11.4467 10.8263C11.7396 11.1191 12.2145 11.1191 12.5074 10.8263L17.2803 6.05328ZM0.75 5.52295V6.27295H16.75V5.52295V4.77295H0.75V5.52295Z' fill='%23636466'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    width: 18px;
    height: 12px;
}

.arrow-right:after {
    padding-right: 38px;
}

.arrow-right.slider-block__heading--white:after {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 4.77295C0.335786 4.77295 0 5.10874 0 5.52295C0 5.93716 0.335786 6.27295 0.75 6.27295V5.52295V4.77295ZM17.2803 6.05328C17.5732 5.76039 17.5732 5.28551 17.2803 4.99262L12.5074 0.219648C12.2145 -0.073245 11.7396 -0.073245 11.4467 0.219648C11.1538 0.512542 11.1538 0.987415 11.4467 1.28031L15.6893 5.52295L11.4467 9.76559C11.1538 10.0585 11.1538 10.5334 11.4467 10.8263C11.7396 11.1191 12.2145 11.1191 12.5074 10.8263L17.2803 6.05328ZM0.75 5.52295V6.27295H16.75V5.52295V4.77295H0.75V5.52295Z' fill='white'/%3E%3C/svg%3E%0A");
}

.rating-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.rating-stars__star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 15px;
}

.rating-stars__star svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    width: 15px;
    margin: 0 2px;
    fill: #DEDEDE;
}

.rating-stars__star--active svg {
    fill: #036666;
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 20px;
    font-size: 12px;
}

.breadcrumbs__logo svg {
    width: 24px;
    height: 14px;
}

.breadcrumbs span {
    font-size: 11px;
    margin: 0 6px;
}

.breadcrumbs a {
    color: #636466;
}

.breadcrumbs em {
    font-style: normal;
}

b > span {
    color: #036666;
}

.image-scale {
    transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.image-scale:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.content-page a {
    color: #036666 !important;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 200;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    height: 50px;
    padding: 0 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #DEDEDE;
}

.header-mobile__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 26px;
}

.header-mobile__logo svg {
    width: 100%;
    height: 100%;
}

.header-mobile__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
}

.header-large {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 0 40px;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    background: #fff;
}

.header-large__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 30px;
}

.fixed .header-large__top {
    display: none;
}

.header-large__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 50px;
}

.header-large__address {
    display: none;
}

.header-large__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.header-large__phone:hover .header-large__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-large__phone .phone-select {
    cursor: pointer;
}

.header-large__phone .phone-select a {
    color: #036666;
}

.header-large__contacts {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    padding: 20px;
    width: 280px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    z-index: 100;
    background: #fff;
}

.mobile-menu .header-large__contacts {
    padding: 0;
    margin-top: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-large__contacts a {
    text-decoration: none;
    text-transform: none;
    color: #636466;
    font-size: 16px;
}

.header-large__contacts-heading {
    font-size: 12px;
    color: #ADAEAE;
    margin-bottom: 10px;
}

.header-large__contacts-heading .mobile-menu {
    margin-bottom: 30px;
}

.header-large__contacts-email,
.header-large__contacts-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.header-large__contacts-email svg,
.header-large__contacts-phone svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    margin-right: 15px;
    color: #036666;
}

.header-large__contacts-phone svg {
    height: 20px;
}

.header-large__contacts-email svg {
    height: 13px;
}

.header-large__contacts-schedule {
    font-size: 16px;
}

.header-large__contacts-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 20px;
}

.header-large__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.header-large__menu a {
    text-decoration: none;
    color: #6E6F71;
}

.header-large__menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.header-large__menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-left: 30px;
}

.header-large__menu-item:first-child {
    margin-left: 0;
}

.header-large__menu-item button {
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.header-large__menu-item:hover > .header-large__menu-submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-large__menu-item:hover button {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.header-large__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 26px;
}

.header-large__logo svg:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-large__logo svg:nth-child(2) {
    display: none;
}

.header-large__catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 12px;
    width: 140px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-large__catalog-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12px;
    height: 12px;
}

.header-large__catalog span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    text-transform: uppercase;
    color: #636466;
    margin-left: 14px;
}

.header-large__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-large__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
}

.header-large__icon--personal > a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-large__icon--personal svg {
    width: 15px;
    height: 17px;
}

.header-large__icon--personal .dropdown-menu {
    width: 150px;
}

.header-large__icon--compare {
    fill: none;
    color: #636466;
    margin: 0 20px;
}

.header-large__icon--compare svg {
    width: 18px;
    height: 18px;
}

.header-large__icon--basket {
    margin-right: 10px;
}

.header-large__icon--basket svg {
    width: 17px;
    height: 16px;
}

.header-large__icon-value {
    position: absolute;
    top: -10px;
    right: -10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
    color: #636466;
}

.header-large__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.header-large__search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    position: relative;
}

.header-large__search input[type=search] {
    border: none;
    border-bottom: 1px solid #2DB0AF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: unset;
    width: 290px;
    padding: 8px 0 8px 15px;
}

.header-large__search input[type=search]:focus,
.header-large__search input[type=search]:active {
    border: none;
    border-bottom: 1px solid #2DB0AF;
}

.header-large__search button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 15px;
}

.header-large__search button svg {
    width: 17px;
    height: 16px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.header-mobile__burger,
.header-large__burger {
    position: relative;
    width: 10px;
    height: 2px;
    margin: 8px 0 8px 0;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    border: none;
    outline: none;
    background: #636466;
    cursor: pointer;
}

.header-mobile__burger:before,
.header-mobile__burger:after,
.header-large__burger:before,
.header-large__burger:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 14px;
    right: 0;
    -webkit-transition: background 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: background 0.2s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    -webkit-transform-origin: center;
    transform-origin: center;
    background: #636466;
}

.header-mobile__burger:before,
.header-large__burger:before {
    bottom: -5px;
}

.header-mobile__burger:after,
.header-large__burger:after {
    top: -5px;
}

.header-mobile__burger.active,
.header-large__burger.active {
    background: transparent;
}

.header-mobile__burger.active:before,
.header-large__burger.active:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-mobile__burger.active:after,
.header-large__burger.active:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 20px 20px 80px 20px;
    font-size: 12px;
}

.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.footer a {
    color: #636466;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer hr {
    display: block;
    width: 100%;
    height: 0;
    border-top: 1px solid #636466;
    background: #ADAEAE;
}

.footer-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
}

.footer-menu__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-menu__heading.expanded {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-menu__heading button {
    margin-left: 10px;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.expanded .footer-menu__heading button {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.footer-menu__items {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-bottom: 20px;
}

.expanded .footer-menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.footer-menu__item:last-child {
    margin-bottom: 0;
}

.footer-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-contacts__address,
.footer-contacts__socials,
.footer-contacts__schedule,
.footer-contacts__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-contacts__address a,
.footer-contacts__address div:not(.footer-heading),
.footer-contacts__socials a,
.footer-contacts__socials div:not(.footer-heading),
.footer-contacts__schedule a,
.footer-contacts__schedule div:not(.footer-heading),
.footer-contacts__contact a,
.footer-contacts__contact div:not(.footer-heading) {
    margin-bottom: 10px;
}

.footer-contacts__address a,
.footer-contacts__socials a,
.footer-contacts__schedule a,
.footer-contacts__contact a {
    text-decoration: underline;
}

.footer-contacts__address a:hover,
.footer-contacts__socials a:hover,
.footer-contacts__schedule a:hover,
.footer-contacts__contact a:hover {
    text-decoration: none;
}

.footer-contacts__address div:last-child,
.footer-contacts__socials div:last-child,
.footer-contacts__schedule div:last-child,
.footer-contacts__contact div:last-child {
    margin-bottom: 0;
}

.footer-contacts__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.footer-contacts__socials .footer-heading {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-links {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-links span {
    display: block;
    width: 5px;
    height: 1px;
    background: #036666;
    margin: 5px 0;
}

.footer-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}

.footer-copyright__year {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    direction: ltr;
    text-orientation: unset;
    rotate: 180deg;
    font-size: 10px;
    padding-left: 2px;
    border-left: 1px solid #036666;
}

.footer-copyright__year span {
    font-family: "Montserrat", sans-serif;
}

.footer-copyright__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-copyright__text em,
.footer-copyright__text i {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 10px;
    line-height: 150%;
}

.footer-copyright__text em {
    color: #636466;
}

.footer-copyright__text i {
    color: #036666;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.main-about {
    width: 100%;
    padding: 20px;
    font-size: 12px;
}

.main-about__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-about__canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.main-about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    background: transparent;
    position: relative;
}

.main-about__philosophy {
    display: none;
    padding: 70px;
    background: url("/local/templates/sprivod/images/bg-turquoise-gradient.jpg") right top no-repeat;
    position: relative;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
}

.main-about__philosophy-quote {
    position: absolute !important;
    background: url("/local/templates/sprivod/images/bg-quote-gray.svg") right top no-repeat;
    opacity: 0.1;
    width: 200px;
    height: 160px;
    right: 10px;
    top: 10px;
}

.main-about__philosophy-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
    color: #DEDEDE;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main-about__philosophy-sign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #DEDEDE;
    font-size: 24px;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.main-about__description {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 140%;
}

.main-about__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.main-about__icons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-about__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    width: 50%;
}

.main-about__icon-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
    height: 40px;
    margin-bottom: 20px;
}

.main-about__icon-image svg {
    width: 100%;
    height: 100%;
}

.main-about__icon-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    font-weight: 700;
    word-break: break-word;
}

.main-about__icon-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    margin-top: 14px;
}

.main-skew {
    position: relative;
    background: url("/local/templates/sprivod/images/bg-turquoise-gradient-1.jpg");
    background-position: center 70px;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.main-skew:before {
    content: "";
    position: absolute;
    top: 25px;
    left: -30px;
    width: 130%;
    height: 75px;
    background-color: #F7FAFC;
    -webkit-transform: rotate(355deg);
    transform: rotate(355deg);
}

.main-skew:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 130%;
    height: 75px;
    background-color: #F7FAFC;
    -webkit-transform: rotate(355deg);
    transform: rotate(355deg);
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    line-height: 0;
}

.icon svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.icon-ask-question svg {
    fill: #636466;
    stroke: #636466;
    width: 22px;
    height: 20px;
}

.icon-share svg {
    width: 18px;
    height: 18px;
}

.icon-compare svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.icon-cart svg,
.icon-basket svg {
    width: 17px;
    height: 16px;
}

.icon-basket-xs svg {
    position: relative;
    bottom: -7px;
    right: -7px;
    width: 30px;
    height: 30px;
}

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

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

.icon-search,
.icon-personal,
.icon-document,
.icon-warranty,
.icon-ecology,
.icon-economy {
    width: 30px;
    height: 30px;
}

.icon-warranty svg {
    width: 21px;
    height: 25px;
}

.icon-ecology svg {
    width: 21px;
    height: 21px;
}

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

.icon-document svg {
    width: 14px;
    height: 17px;
}

.icon-personal svg {
    width: 15px;
    height: 17px;
}

.icon-delete svg {
    width: 18px;
    height: 21px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.catalog-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 0 20px 20px 20px;
    width: 100%;
}

.catalog-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
}

.catalog-options > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.catalog-options svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-options button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
}

.catalog-options button.active {
    background: #fff;
    border-color: #DEDEDE;
}

.catalog-options button:hover {
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.catalog-options__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.catalog-options__sort-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #036666;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.catalog-options__sort-box button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.catalog-options__sort-box button.open {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.catalog-options__sort-box button:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.catalog-options__sort-list {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: absolute;
    top: calc(100% + 1px);
    left: -10px;
    right: 0;
    background: #fff;
    padding: 20px 10px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    z-index: 20;
    max-height: 270px;
    width: 300px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.catalog-options__sort-list.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-options__sort-item {
    padding: 5px 10px;
    min-height: 30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
    color: #636466;
    border-radius: 5px;
}

.catalog-options__sort-item:hover {
    text-decoration: none;
    color: #636466;
}

.catalog-options__sort-item:after {
    content: " ";
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-options__sort-item.selected:after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.91205 10.1539L0.800781 6.04263M4.94652 10.1539L14.3004 0.799988' stroke='%23036666' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
}

.catalog-options__sort-item:hover {
    background: #DEDEDE;
}

.catalog-options__span {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.catalog-options__view button[data-catalog-section-view-tile] {
    display: none;
}

.catalog-options__view button[data-catalog-section-view-tile] svg {
    width: 9px;
    height: 9px;
}

.catalog-options__view button[data-catalog-section-view-list] {
    display: none;
}

.catalog-options__view button[data-catalog-section-view-list] svg {
    width: 16px;
    height: 9px;
}

.catalog-options__view button:nth-child(2) {
    margin-left: 10px;
}

.catalog-options__filter {
    margin-left: 10px;
    position: relative;
}

.catalog-options__filter button {
    margin-left: 5px;
}

.catalog-options__filter button:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.catalog-options__filter svg {
    width: 20px;
    height: 15px;
}

.catalog-options__filter-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
    height: 30px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.catalog-options__filter-button:hover {
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.catalog-options__filter-button:active {
    top: 1px;
}

.catalog-options__filter-window {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    max-width: 420px;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    padding: 20px;
    z-index: 20;
    width: 280px;
}

.catalog-options__filter-window.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    font-size: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: lowercase;
}

.catalog-pager a,
.catalog-pager span {
    color: #636466;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.catalog-pager__start,
.catalog-pager__end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    height: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catalog-pager__start {
    margin-right: 10px;
}

.catalog-pager__end {
    margin-left: 10px;
}

.catalog-pager__pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.catalog-pager__page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catalog-pager__page.current {
    border-color: #2DB0AF;
}

.catalog-pager__page:hover {
    border-color: #036666;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.catalog-sections__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-bottom: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.catalog-sections__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    width: 130px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.catalog-section__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    width: 100%;
    text-decoration: none;
    aspect-ratio: 1/1;
}

.catalog-section__item a:hover {
    color: #636466;
}

.catalog-section__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.catalog-section__wrapper {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 50px);
    padding: -10px;
    border-radius: 10px;
    -webkit-transition: 0.15s all ease;
    transition: 0.15s all ease;
    z-index: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.catalog-section__cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
    text-decoration: none;
    color: #636466;
}

.catalog-section__cnt:after {
    content: " ";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 4.77295C0.335786 4.77295 0 5.10874 0 5.52295C0 5.93716 0.335786 6.27295 0.75 6.27295V5.52295V4.77295ZM17.2803 6.05328C17.5732 5.76039 17.5732 5.28551 17.2803 4.99262L12.5074 0.219648C12.2145 -0.073245 11.7396 -0.073245 11.4467 0.219648C11.1538 0.512542 11.1538 0.987415 11.4467 1.28031L15.6893 5.52295L11.4467 9.76559C11.1538 10.0585 11.1538 10.5334 11.4467 10.8263C11.7396 11.1191 12.2145 11.1191 12.5074 10.8263L17.2803 6.05328ZM0.75 5.52295V6.27295H16.75V5.52295V4.77295H0.75V5.52295Z' fill='%23636466'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
}

.catalog-section__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    height: 130px;
    width: 130px;
}

.catalog-section__image img {
    max-width: 100%;
    height: auto;
}

.catalog-section__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-decoration: none;
    color: #636466;
    padding: 14px 0;
    font-size: 12px;
    line-height: 140%;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.catalog-section__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
    width: 100%;
    -webkit-transition: none;
    transition: none;
}

.catalog-section__description a {
    color: #036666;
}

.catalog-section__list.catalog-section__list--integration {
    padding: 0;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.catalog-product__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 20px;
    width: 100%;
}

.catalog-section__list .catalog-product__item {
    width: calc(50% - 10px);
}

.catalog-product__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    -webkit-transition: 0.15s all ease;
    transition: 0.15s all ease;
}

.catalog-product__compare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 2px;
    bottom: 2px;
    z-index: 10;
}

.catalog-product__compare svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 17px;
    height: 17px;
    color: #ADAEAE;
    fill: #fff;
    stroke: #636466;
    stroke-linecap: round;
}

.catalog-product__compare svg:hover {
    color: #036666;
}

.catalog-product__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    width: 100%;
    height: 100%;
}

.slider-block .catalog-product__image {
    height: 130px;
}

.catalog-product__props-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.catalog-product__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.catalog-product__picture img {
    max-width: 100%;
    height: auto;
}

.catalog-product__props {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    font-size: 12px;
    margin-top: 15px;
}

.catalog-product__props i {
    display: inline-block;
    font-style: normal;
    margin-left: 6px;
}

.catalog-product__properties-list {
    display: none;
}

.catalog-product__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-product__instock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 16px;
}

.catalog-product__instock:before {
    content: " ";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    left: 0;
    background: #036666;
}

.catalog-product__instock--no:before {
    background: #75132A;
}

.catalog-product__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-decoration: none;
    color: #636466;
    margin: 14px 0 10px 0;
    font-size: 12px;
    line-height: 140%;
}

.catalog-product__title:hover {
    color: #636466;
    text-decoration: underline;
}

.catalog-product__buying {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 40px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.catalog-product__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.catalog-product__price s,
.catalog-product__price b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-product__price s {
    font-size: 12px;
}

.catalog-product__price b {
    font-size: 14px;
    font-weight: 700;
    color: #636466;
}

.catalog-product__action [data-element-detail-click] {
    display: none !important;
}

.catalog-product__order.btn,
.catalog-product__buy.btn {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 16px;
}

.catalog-product__order.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    color: #636466;
    position: relative;
    cursor: pointer;
  /*
  background: #fff;
  box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, .2509803922);
  border: 1px solid #2db0af;

   */
    font-weight: 500;
    width: 160px;
    font-family: Roboto, sans-serif;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catalog-product__quantity-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail__actions .catalog-product__quantity-xs {
    display: none;
}

.catalog-product__quantity {
    display: none;
}

.element-detail__card .catalog-product__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: none;
}

.element-detail__card .catalog-product__quantity [data-spin-box-field] {
    width: 100%;
}

.catalog-product__quantity [data-spin-box-field] {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #2DB0AF;
    background: #036666;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.catalog-product__quantity [data-spin-box-field] input {
    color: #fff;
}

.catalog-product__quantity [data-spin-box-field] [data-up],
.catalog-product__quantity [data-spin-box-field] [data-down] {
    background: none;
    color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.element-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    margin-top: 20px;
}

.element-detail__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
}

.element-detail__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.element-detail__middle {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.element-detail__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.element-detail__right .attention-button,
.element-detail__right .share-button {
    position: relative;
    cursor: pointer;
}

.element-detail__right .attention-button-popup {
    display: none;
    position: absolute;
    width: 280px;
    line-height: 140%;
    background: #fff;
    border-radius: 10px;
    left: 0;
    top: 30px;
    z-index: 10;
    padding: 10px;
    -webkit-box-shadow: 1px 1px 10px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px rgba(3, 102, 102, 0.25);
}

.element-detail__right .attention-button-popup ul {
    padding: 0 0 0 20px;
    margin: 0;
}

.element-detail__right .attention-button-popup.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail__right .share-button-popup {
    display: none;
    position: absolute;
    width: auto;
    line-height: 0;
    background: #fff;
    border-radius: 10px;
    top: 30px;
    z-index: 10;
    padding: 10px;
    -webkit-box-shadow: 1px 1px 10px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px rgba(3, 102, 102, 0.25);
    right: 0;
}

.element-detail__right .share-button-popup .ya-share2__list {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail__right .share-button-popup.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail__slider {
    width: 100%;
}

.element-detail-swiper-pagination,
.element-detail .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    left: auto;
    right: 10px;
    bottom: 10px;
}

.element-detail__slide {
    padding: 10px;
}

.element-detail__slide-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.element-detail__slide img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    max-height: 410px;
    height: auto;
}

.element-detail__brand {
    padding: 20px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
}

.element-detail__brand-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail__brand-logo img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 160px;
}

.element-detail__brand-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}

.element-detail__documents {
    display: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    margin-top: 10px;
}

.element-detail__documents.full {
    margin-top: 0;
}

.element-detail__document {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    color: #636466;
    text-decoration: none;
}

.element-detail__document .icon {
    margin-right: 10px;
}

.element-detail__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 12px;
    width: 100%;
}

.element-detail__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-top: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.element-detail__options.no-border {
    border-top: none !important;
}

.element-detail__options .icon {
    margin-left: 10px;
}

.element-detail__options .icon:first-child {
    margin-left: 0;
}

.element-detail__options span {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.element-detail__props {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1;
}

.element-detail__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail__instock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 16px;
}

.element-detail__instock:before {
    content: " ";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    border-radius: 10px;
    background: #036666;
}

.element-detail__instock--no:before {
    background: #75132A;
}

.element-detail__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-top: 20px;
}

.element-detail__price-old {
    margin-bottom: 10px;
}

.element-detail__price-current {
    font-size: 14px;
    font-weight: 700;
}

.element-detail__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.element-detail__actions [data-element-detail-click],
.element-detail__actions [data-element-detail-basket] {
    width: calc(50% - 5px);
}

.element-detail__actions [data-element-detail-click] {
    border: 1px solid #F07E26;
}

.element-detail__actions [data-element-detail-click]:hover {
    background: #F07E26;
    -webkit-box-shadow: 2px 2px 15px 0px rgba(240, 126, 38, 0.4);
    box-shadow: 2px 2px 15px 0px rgba(240, 126, 38, 0.4);
}

.element-detail__actions .catalog-product__buy,
.element-detail__actions .catalog-product__quantity {
    width: calc(50% - 5px);
}

.element-detail {
  /** Преимущества */;
}

.element-detail__worth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #636466;
}

.element-detail__worth-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 100%;
    margin-bottom: 10px;
}

.element-detail__worth-item i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.element-detail__worth-item span {
    margin-left: 10px;
}

.element-detail__attention {
    display: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    padding-top: 20px;
    margin-top: 20px;
}

.element-detail__attention ul {
    padding: 0 0 0 16px;
}

.element-detail {
  /** \ Преимущества */;
}

.element-detail__characteristics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.element-detail {
  /** Баннер "Получить консультацию" **/;
}

.element-detail__consultation {
    display: none;
}

.element-detail__right .element-detail__consultation {
    display: none;
}

.element-detail {
  /** Tabs **/;
}

.element-detail__tabsheet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    margin-top: 20px;
    font-size: 12px;
    width: 100%;
}

.element-detail__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.element-detail__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    cursor: pointer;
}

.element-detail__tab button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.element-detail__tab.expanded button {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.element-detail__tabular {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.element-detail__sheet {
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    z-index: 10;
    padding: 10px;
    margin-bottom: 10px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.element-detail__sheet[data-sheet-1] {
    padding-right: 20px;
}

.element-detail__sheet a {
    color: #036666 !important;
}

.element-detail__sheet.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
}

.element-detail__sheet .data-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
}

.element-detail__sheet .data-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.element-detail__sheet .data-table__param {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
    margin-bottom: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 40%;
}

.element-detail__sheet .data-table__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    width: 60%;
}

.element-detail__sheet a {
    color: #636466;
}

.element-detail {
  /** \ Tabs **/;
}

.element-detail .catalog-product__buy {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    color: #636466;
    position: relative;
    cursor: pointer;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border: 1px solid #2db0af;
    font-weight: 500;
    font-family: Roboto, sans-serif;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(50% - 5px) !important;
}

.element-detail .catalog-product__buy u {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.element-detail .catalog-product__buy:after {
    display: none;
}

.element-detail .element-detail__card .catalog-product__quantity {
    height: 36px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.main-catalog-menu {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 80px;
    background: #fff;
    font-size: 12px;
    z-index: 20;
    border-top: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;
    position: absolute;
    padding: 40px 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-catalog-menu.short {
    margin-top: 62px;
}

.main-catalog-menu.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-catalog-menu a {
    color: #636466;
    text-decoration: none;
}

.main-catalog-menu a:hover {
    text-decoration: underline;
}

.main-catalog-menu__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: calc(50% - 10px);
}

.main-catalog-menu__block {
    margin-bottom: 50px;
}

.main-catalog-menu__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 25%;
    margin-right: 20px;
}

.main-catalog-menu__image img {
    height: auto;
    max-width: 100%;
}

.main-catalog-menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 75%;
    text-decoration: none;
}

.main-catalog-menu__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    color: #636466;
    margin-bottom: 20px;
}

.main-catalog-menu__item {
    font-weight: 400;
    margin-bottom: 4px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.footer-mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F7FAFC;
    border-top: 1px solid #DEDEDE;
    width: 100%;
    z-index: 101;
}

.footer-mobile-menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.footer-mobile-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-bottom: 2px solid transparent;
}

.footer-mobile-menu__item.active {
    border-bottom-color: #036666;
}

.footer-mobile-menu__item .counter {
    display: block;
    position: absolute;
    font-weight: 700;
    right: -10px;
    top: 10px;
}

.footer-mobile-menu__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    padding: 14px 20px;
}

.footer-mobile-menu__search,
.footer-mobile-menu__personal {
    display: none;
    width: 100%;
}

.footer-mobile-menu__personal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    border-bottom: 1px solid #DEDEDE;
    padding: 10px 0;
}

.footer-mobile-menu__personal-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    font-weight: 700;
}

.footer-mobile-menu__search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 10px 20px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.mobile-menu {
    background: #fff;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    padding: 70px 20px 20px 20px;
    -webkit-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    visibility: hidden;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-menu__close {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    top: 100px;
    right: 24px;
    z-index: 10;
}

.mobile-menu__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0;
    max-height: 100%;
}

.mobile-menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile-menu__items a {
    color: #636466;
    text-decoration: none;
    font-size: 14px;
}

.mobile-menu__item {
    color: #036666;
    text-decoration: none;
    border-bottom: solid 1px #fff;
    padding: 4px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.mobile-menu__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-menu__header span {
    font-size: 16px;
    font-weight: 700;
    color: #636466;
}

.mobile-menu__header button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    border: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.expanded .mobile-menu__header button {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.mobile-menu__sub-items {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 20px 0 20px 10px;
}

.expanded .mobile-menu__sub-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-menu__sub-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 4px 0;
}

.mobile-menu__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    overflow-y: scroll;
    font-size: 12px;
    border-top: 1px solid #DEDEDE;
    padding-top: 16px;
    margin-top: 20px;
    margin-bottom: 58px;
}

.mobile-menu__contacts .header-large__contacts * {
    font-size: 12px !important;
}

.mobile-menu__contacts-heading {
    font-size: 16px;
    font-weight: 700;
    color: #636466;
    margin-bottom: 30px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.bx-filter {
    width: 100%;
    min-width: 220px;
    font-size: 12px;
}

.bx-filter .row,
.bx-filter .col-xs-6,
.bx-filter .col-xs-10,
.bx-filter .col-xs-12,
.bx-filter .col-lg-12 {
    padding: 0;
    margin: 0;
}

.bx-filter-section {
    background: transparent;
    position: relative;
    padding: 0;
}

.bx-filter-section .row {
    padding: 0;
}

.bx-filter-title {
    margin-bottom: 10px;
    color: #000;
}

.bx-filter {
  /*Sections*/;
}

.bx-filter-parameters-box {
    position: relative;
}

.bx-filter-parameters-box-hint {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bx-filter-parameters-box-title {
    padding: 10px 0;
}

.bx-filter-parameters-box-title span {
    font-size: 12px;
    font-weight: 700;
    color: #636466;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.bx-filter-parameters-box-title span {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bx-filter-parameters-box-title span i {
    margin-left: 10px;
}

.bx-filter-parameters-box-title span i:before {
    content: " ";
    width: 10px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.18808 4.75C3.38053 5.08333 3.86166 5.08333 4.05411 4.75L6.21917 1C6.41162 0.666667 6.17106 0.25 5.78616 0.25H1.45603C1.07113 0.25 0.830568 0.666667 1.02302 1L3.18808 4.75Z' fill='%23636466'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.bx-active .bx-filter-parameters-box-title span {
  /*color: #95a1a8;*/;
}

.bx-active .bx-filter-parameters-box-title span i:before {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.bx-active .bx-filter-parameters-box-title span:hover {
  /*color: #758087;*/
    border-color: transparent;
}

.bx-filter-block {
    display: none;
    -webkit-transition: padding 0.3s ease;
    transition: padding 0.3s ease;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-height: 229px;
    overflow-y: auto;
    overflow-x: hidden;
}

.bx-filter-block::-webkit-scrollbar {
    width: 5px;
}

.bx-filter-block::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 5px;
}

.bx-filter-block::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #036666;
}

.bx-filter-block.auto-height {
    max-height: 100%;
    overflow: hidden;
}

.bx-filter-block.always-show {
    display: block !important;
}

.bx-filter-button-box .bx-filter-block,
.bx-filter-parameters-box.bx-active .bx-filter-block {
    display: block;
}

.bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub {
    font-style: normal;
    display: block;
    padding-bottom: 5px;
}

.bx-filter-parameters-box-container {
    padding-bottom: 20px;
}

.bx-filter-parameters-box-container .checkbox:first-child {
    margin-top: 0;
}

.bx-filter-parameters-box-container-block {
    color: #3f3f3f;
}

.bx-filter-parameters-box-container-block.bx-right {
    padding: 5px;
}

.bx-filter-parameters-box-container-block.bx-left {
    padding: 5px;
}

.bx-filter input[type=text] {
    font-size: 12px;
}

.bx-filter [data-radio-field] {
    width: 100%;
}

.bx-filter [data-radio-field] input[type=radio] + label {
    width: 100%;
}

.bx-filter [data-radio-field] input[type=radio] + label:before {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 5px;
}

.bx-filter [data-radio-field] input[type=radio] + label span {
    width: 100%;
}

.bx-filter-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 20px;
}

.bx-filter-header__delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bx-filter-header__delete input {
    border: none;
    height: 40px;
    line-height: 1;
    padding: 0 0 0 30px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='21' viewBox='0 0 18 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5 3.5H13.125V1.75C13.125 1.28587 12.9406 0.840752 12.6124 0.512563C12.2842 0.184374 11.8391 0 11.375 0H6.125C5.66087 0 5.21575 0.184374 4.88756 0.512563C4.55937 0.840752 4.375 1.28587 4.375 1.75V3.5H0V5.25H1.75V18.375C1.75 19.0712 2.02656 19.7389 2.51884 20.2312C3.01113 20.7234 3.67881 21 4.375 21H13.125C13.8212 21 14.4889 20.7234 14.9812 20.2312C15.4734 19.7389 15.75 19.0712 15.75 18.375V5.25H17.5V3.5ZM6.125 1.75H11.375V3.5H6.125V1.75ZM14 18.375C14 18.6071 13.9078 18.8296 13.7437 18.9937C13.5796 19.1578 13.3571 19.25 13.125 19.25H4.375C4.14294 19.25 3.92038 19.1578 3.75628 18.9937C3.59219 18.8296 3.5 18.6071 3.5 18.375V5.25H14V18.375Z' fill='%2375132A'/%3E%3Cpath d='M7.875 8.75H6.125V15.75H7.875V8.75Z' fill='%2375132A'/%3E%3Cpath d='M11.375 8.75H9.625V15.75H11.375V8.75Z' fill='%2375132A'/%3E%3C/svg%3E%0A") !important;
    background-position: 0 center !important;
    background-repeat: no-repeat !important;
}

.bx-filter-header__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bx-filter-header__close button:after {
    content: " ";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 30px;
    margin-left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.797177 0.800006L6.45403 6.45686M0.797505 6.45719L6.45436 0.800334' stroke='%23636466' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-position: right;
    background-repeat: no-repeat;
}

.bx-filter-header__delete input,
.bx-filter-header__delete button,
.bx-filter-header__close input,
.bx-filter-header__close button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    width: auto;
    height: 40px;
    margin: 0;
    background: transparent;
    border: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bx-filter-header__delete input:active,
.bx-filter-header__delete button:active,
.bx-filter-header__close input:active,
.bx-filter-header__close button:active {
    top: 1px;
}

/*
* INPUTS
*
*/

.bx-filter .bx-filter-input-container input {
  /*
  display: block;
  width: 100%;
  height: 38px;
  margin: 0;
  padding: 0 4px;
  border: 1px solid #ccd5db;
  border-radius: 2px;
  background: #fff;
  outline: none
  */;
}

.bx-retina .bx-filter .bx-filter-input-container input {
  /*
  border-style: solid;
  border-width: 1px;
  border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/border_default.png) 2 repeat;
   */;
}

/*
COLOR
*/

.bx-ios .bx-filter .bx-filter-input-container input {
  /* Fix of input shadow for IOS browsers. */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
    background-image: linear-gradient(#ffffff 0%, #ffffff 100%);
}

.bx-filter .bx-filter-button-box {
    clear: both;
    margin-top: 20px;
}

.bx-filter .bx-filter-button-box input {
    color: #636466;
    width: 100%;
    font-size: 12px;
}

.bx-filter .bx-filter-button-box input:hover {
    color: #fff;
}

/*
*Track
*
*/

.bx-filter .bx-ui-slider-track-container {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.bx-filter .bx-ui-slider-track {
    position: relative;
    height: 1px;
    background: #DEDEDE;
}

.bx-filter .bx-ui-slider-part {
    position: absolute;
    top: -6px;
    width: 1px;
    height: 17px;
    background: #a2bfc7;
    display: none;
}

.bx-filter .bx-ui-slider-part.p1 {
    left: -1px;
}

.bx-filter .bx-ui-slider-part.p2 {
    left: 25%;
}

.bx-filter .bx-ui-slider-part.p3 {
    left: 50%;
}

.bx-filter .bx-ui-slider-part.p4 {
    left: 75%;
}

.bx-filter .bx-ui-slider-part.p5 {
    right: -1px;
}

.bx-filter .bx-ui-slider-part span {
  /*font-weight: var(--ui-font-weight-bold);*/
    position: absolute;
    top: -16px;
    left: 50%;
    display: block;
    width: 100px;
    margin-left: -50px;
    text-align: center;
    color: #000;
}

.bx-filter .bx-ui-slider-part.p2 span,
.bx-filter .bx-ui-slider-part.p3 span,
.bx-filter .bx-ui-slider-part.p4 span {
    color: #6b8086;
}

.bx-filter .bx-ui-slider-range,
.bx-filter .bx-ui-slider-pricebar,
.bx-filter .bx-ui-slider-pricebar-vd,
.bx-filter .bx-ui-slider-pricebar-vn,
.bx-filter .bx-ui-slider-pricebar-v {
    position: absolute;
    top: 0;
    bottom: 0;
}

.bx-filter .bx-ui-slider-range {
    z-index: 95;
}

.bx-filter .bx-ui-slider-pricebar {
    z-index: 100;
}

.bx-filter .bx-ui-slider-pricebar-vd {
    z-index: 60;
  /*background: #849da4;/* COLOR */;
}

.bx-filter .bx-ui-slider-pricebar-vn {
    z-index: 70;
  /*background: #a8dff3;/* COLOR */;
}

.bx-filter .bx-ui-slider-pricebar-v {
    z-index: 80;
  /*background: #499fd8;/* COLOR */;
}

.bx-filter .bx-ui-slider-handle {
    position: absolute;
    top: -8px;
    width: 18px;
    height: 18px;
    border-bottom: none;
    background: #ADAEAE;
    border-radius: 100%;
    z-index: 85;
}

.bx-filter .bx-ui-slider-handle:hover {
    cursor: -webkit-grab;
    cursor: grab;
}

.bx-filter .bx-ui-slider-handle:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.bx-filter .bx-ui-slider-handle.left {
    left: 0;
  /* COLOR */
  /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAArUlEQVQ4y6WSQQ6FMAhEXbjyXwzOpBdx5bXKbYRWLFSJ2m8ysVHfzGA7DH9cuKVfNwwM40ZzZzJlmE3WTjjNfF9Fn2EwMH5pUGYWOJ3w6wZ4wDKz6rUBumQPPxrUmT0IxuxpqxYLQ7MOG5TaHtbk1iza5+VauW5dfdcYSDKcMLkP7wxdA5sMQWV/BkwDTY7mtAfHjpJ/Ihj4DoIgXZ9J+siaimi6rimLgSw87qod+1BRTwMJRYoAAAAASUVORK5CIIA=) no-repeat right top;*/;
}

.bx-filter .bx-ui-slider-handle.right {
    right: 0;
  /* COLOR */
  /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;*/;
}

/*
*	Select
*
*/

.bx-filter .bx-filter-select-container {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #ccd5db;
}

.bx-retina .bx-filter .bx-filter-select-container {
    border-style: solid;
    border-width: 1px;
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/border_default.png) 2 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/border_default.png) 2 repeat;
}

/* COLOR */

.bx-filter .bx-filter-select-block {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 33px;
    margin: 0;
    padding: 0 33px 0 10px;
    border: none;
    border-radius: 2px;
    background: #fff;
}

.bx-filter .bx-filter-select-text {
    line-height: 33px;
    overflow: hidden;
    max-width: 100%;
    height: 33px;
    cursor: pointer;
    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bx-filter .bx-filter-select-text.fix {
    min-width: 120px;
}

.bx-filter .bx-filter-select-text label {
    cursor: pointer;
}

.bx-filter .bx-filter-select-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 33px;
    cursor: pointer;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC") no-repeat center;
}

/*
*	Select popup
*
*/

.bx-filter-select-popup {
    background: #fff;
    padding: 0;
    min-width: 173px;
}

.bx-filter-select-popup ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bx-filter-select-popup ul li {
    display: block;
    text-align: left;
    vertical-align: middle;
}

.bx-filter-select-popup ul li:first-child {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.bx-filter-select-popup ul li label {
    line-height: 26px;
    display: block;
    text-align: left !important;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 26px;
    padding: 0 5px;
    cursor: pointer;
    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #575757;
}

.bx-filter-select-popup ul li label.selected,
.bx-filter-select-popup ul li label:hover {
    color: #000;
    background: #f3f8fa;
}

.bx-filter-select-popup ul li label.disabled {
    color: #b8b8b8;
    background: transparent;
}

.bx-filter-select-popup ul li .bx-filter-param-text {
    line-height: 34px !important;
}

/*
* TAGS
*
*/

.bx-filter .bx-filter-tag {
    padding: 18px;
}

.bx-filter .bx-tag-link {
    text-decoration: none;
    text-shadow: none;
}

.bx-filter .bx-tag-link.bx-active,
.bx-filter .bx-tag-link:hover {
    color: #1d3d46;
}

/*
*	LABEL
*
*/

.bx-filter .bx-filter-param-label {
    min-height: 20px;
    font-weight: normal;
    cursor: pointer;
}

.bx-filter .bx-filter-param-btn-inline .bx-filter-param-label {
    float: left;
    display: block;
    margin-right: 5px;
}

.bx-filter .bx-filter-param-btn-block .bx-filter-param-label {
    display: block;
}

.bx-filter .bx-filter-param-label {
  /*font-size: 13px;*/;
}

.bx-filter .bx-filter-param-label.dib {
    display: inline-block;
}

.bx-filter .bx-filter-param-text {
    font-weight: normal;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-text {
    color: #6c6c6c;
}

.bx-filter-select-popup .bx-filter-param-label.bx-active {
    background: #f3f8fa;
}

/*
*	Checkbox / Radio
*
*/

.bx-filter .bx-filter-input-checkbox .bx-filter-param-text {
    display: block;
    text-align: left;
}

/*
* 	BTN
*
*/

.bx-filter .bx-filter-param-btn {
    font-weight: normal;
    display: inline-block;
    width: 38px;
    height: 38px;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    color: #000;
    vertical-align: middle;
    border: 1px solid #ccd5db;
    border-radius: 2px;
    background: #fff;
    position: relative;
    -webkit-transition: border 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.1s ease;
    transition: border 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.1s ease;
    transition: border 0.3s ease, box-shadow 0.1s ease, color 0.3s ease;
    transition: border 0.3s ease, box-shadow 0.1s ease, color 0.3s ease, -webkit-box-shadow 0.1s ease;
    cursor: pointer;
}

.bx-retina .bx-filter .bx-filter-param-btn {
    border-style: solid;
    border-width: 1px;
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/border_default.png) 2 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/border_default.png) 2 repeat;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
    position: relative;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl:before {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    content: " ";
    display: block;
    z-index: 100;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center;
    opacity: 0.7;
}

.bx-filter .bx-filter-param-btn .bx-filter-param-text {
    line-height: 26px;
}

/*
* BTN P/M
*
*/

.bx-filter .bx-filter-param-btn.bx-spm {
    width: 23px;
    min-width: 23px;
    height: 23px;
    line-height: 23px;
    font-weight: normal;
    padding: 0;
    color: #767b7e;
    vertical-align: top;
    border-radius: 50%;
    background-color: transparent;
}

.bx-filter .bx-filter-param-btn.bx-spm.bx-plus {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center;
}

.bx-filter .bx-filter-param-btn.bx-spm.bx-minus {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;
}

.bx-filter .bx-filter-param-btn.bx-spm:active {
    outline: none !important;
    -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.12);
}

.bx-filter span.bx-spm {
  /*font-weight:var(--ui-font-weight-bold);*/
    line-height: 23px;
    display: inline-block;
    height: 23px;
    margin: 0 10px;
    vertical-align: middle;
    color: #000;
}

/*
*	icon
*
*/

.bx-filter-select-popup .bx-filter-select-text-icon,
.bx-filter .bx-filter-select-text-icon {
    line-height: 33px;
    position: relative;
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-top: -4px;
    margin-right: 2px;
    vertical-align: middle;
    border-radius: 2px;
}

.bx-filter-select-popup .bx-filter-btn-color-icon,
.bx-filter .bx-filter-btn-color-icon {
    line-height: 24px;
  /*position:relative;*/
  /*top:4px;*/
    border-radius: 2px;
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    background-size: cover;
}

.bx-filter-select-popup .bx-filter-btn-color-icon {
    width: 20px;
    height: 20px;
    margin: 2px 0;
    top: 0 !important;
}

.bx-filter .bx-filter-select-block .bx-filter-btn-color-icon {
    top: -1px !important;
}

.bx-filter-btn-color-icon.all {
    position: relative;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bx-filter-btn-color-icon.all:after,
.bx-filter-btn-color-icon.all:before {
    position: absolute;
    width: 60%;
    height: 60%;
    background: #fff;
    content: " ";
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.bx-filter-btn-color-icon.all:after {
    right: 0;
    bottom: 0;
}

.bx-filter-btn-color-icon.all:before {
    top: 0;
    left: 0;
}

.bx-filter .bx-filter-param-label.disabled .bx-filter-btn-color-icon {
    opacity: 0.2;
}

/*
* 	BIZ
*
*/

.bx-filter .bx-filter-parameter-biz {
    line-height: 15px;
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #036666;
    border-bottom: 1px dashed;
}

.bx-filter .bx-filter-parameter-biz:hover {
    text-decoration: none;
    border-bottom: 1px solid;
}

.bx-filter .bx-filter-parameter-biz.bx-active {
    position: relative;
  /*padding-left:20px;*/
    color: #000;
    border-color: transparent;
}

/*
*	BTN result and reset
*
*/

.btn-themes {
  /*background-color: #1485CE;/* COLOR */
  /*border-color: #1485CE;/* COLOR */
    color: #FFF;
}

.btn-themes.bx-active,
.btn-themes.focus,
.btn-themes:active,
.btn-themes:focus,
.btn-themes:hover {
  /*background-color: #53A4D8;/* COLOR */
  /*border-color: #53A4D8;/* COLOR */
    color: #FFF;
}

/*
* 	Result Popup
*
*/

.bx-filter .bx-filter-popup-result {
    font-weight: normal;
    position: absolute;
    z-index: 915;
    display: none;
    margin-top: -7px;
    margin-left: 10px;
    padding: 0 10px;
    white-space: nowrap;
    color: #3f3f3f;
    min-height: 37px;
    line-height: 18px;
    border: 1px solid #C6DCE7;
}

.bx-filter .bx-filter-popup-result.left {
    border-width: 2px 10px 2px 2px;
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/result_popup_left.png) 4 20 4 4 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/result_popup_left.png) 4 20 4 4 fill repeat;
}

.bx-filter .bx-filter-popup-result.right {
    border-width: 2px 2px 2px 10px;
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/result_popup_right.png) 4 4 4 20 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/result_popup_right.png) 4 4 4 20 fill repeat;
}

.bx-filter .bx-filter-popup-result.right {
    left: 97%;
}

.bx-filter .bx-filter-popup-result.left {
    right: 97%;
}

.bx-filter-horizontal .bx-filter-popup-result {
    display: inline-block;
    position: relative;
    left: auto;
    right: auto;
    bottom: -7px;
}

.bx-filter .bx-filter-popup-result a {
    color: #036666;
    line-height: 10px;
}

.bx-filter .bx-filter-popup-result a:hover {
    text-decoration: none;
}

.bx-filter .bx-filter-popup-result-close {
    display: none;
}

.bx-filter.bx-blue .bx-filter-section {
    background: #edf6fc;
}

/*
* INPUTS
*
*/

.bx-filter.bx-blue .bx-filter-input-container input:focus {
    border-color: #036666;
}

.bx-retina .bx-filter.bx-blue .bx-filter-input-container input:focus {
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/active.png) 2 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/active.png) 2 repeat;
}

/*
*Track
*
*/

.bx-filter.bx-blue .bx-ui-slider-track {
    background: #e7e7e7;
}

.bx-filter.bx-blue .bx-ui-slider-pricebar-vd {
    background: #849da4;
}

.bx-filter.bx-blue .bx-ui-slider-pricebar-vn {
    background: #a8dff3;
}

.bx-filter.bx-blue .bx-ui-slider-pricebar-v {
    background: #499fd8;
}

.bx-filter.bx-blue .bx-ui-slider-handle.left {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NkM2RUFBN0ExNjg1MTFFNUIzOUM4MzM0QUEzQkQxRDQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NkM2RUFBN0IxNjg1MTFFNUIzOUM4MzM0QUEzQkQxRDQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2QzZFQUE3ODE2ODUxMUU1QjM5QzgzMzRBQTNCRDFENCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2QzZFQUE3OTE2ODUxMUU1QjM5QzgzMzRBQTNCRDFENCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ppps1VcAAAEWSURBVHjabFPRFcIwCIS8/nWGdh+3sYu4gmu5il8niUAuaN6zJoQD7iB6e76kL8h3qX+RlrnU/TR3sje+DHMFq4cN8Pded/veG8gNWUEEVALMQPbd7e9uv3MLOABRXQutQD8PsFnOfmjJRkMHsHOCu8X2mTn8NnYRAmEAWF4xzhhgptUgyANIa3UV3JaZ1+AWYOYGtScyYMnMftGRxq0CNdArcMH0rFTVg21FYa6mZ77s9lgFxaJMk1kqTeJo1QAX+5yEoIDfadttf8nILDRckyKYQolrmfWyi4MZz878vohGbqPsAK/vAYXotGxemnPWIzRRAqCMs9K5D1JyFuox6IVKmVTe9za+LchD/q4iXyo6q/kIMAAflYlW4QRU6wAAAABJRU5ErkJggg==) no-repeat right top;
}

.bx-filter.bx-blue .bx-ui-slider-handle.right {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;
}

/*
*	Select
*
*/

.bx-filter.bx-blue .bx-filter-select-container.bx-active,
.bx-filter.bx-blue .bx-filter-select-container:focus {
    border-color: #499fd8;
}

.bx-retina .bx-filter.bx-blue .bx-filter-select-container.bx-active,
.bx-retina .bx-filter.bx-blue .bx-filter-select-container:focus {
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/active.png) 2 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/active.png) 2 repeat;
}

/*
*	Select popup
*
*/

/*
* TAGS
*
*/

.bx-filter.bx-blue .bx-filter-tag {
    border-top: 1px solid #d7eaf7;
    border-bottom: 1px solid #d7eaf7;
}

.bx-filter.bx-blue .bx-tag-link {
    color: #68939e;
}

/*
*	LABEL
*
*/

/*
*	Checkbox / Radio
*
*/

/*
* 	BTN
*
*/

.bx-filter.bx-blue .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-filter.bx-blue .bx-filter-param-btn:hover,
.bx-filter.bx-blue .bx-filter-param-btn:active,
.bx-filter.bx-blue .bx-filter-param-btn:focus {
    border-color: #499fd8;
}

.bx-retina .bx-filter.bx-blue .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-retina .bx-filter.bx-blue .bx-filter-param-btn:hover,
.bx-retina .bx-filter.bx-blue .bx-filter-param-btn:active,
.bx-retina .bx-filter.bx-blue .bx-filter-select-container:focus {
    -o-border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/active.png) 2 repeat;
    border-image: url(/local/components/bitrix/catalog.smart.filter/templates/.default/images/active.png) 2 repeat;
}

/*
* BTN P/M
*
*/

/*
*	icon
*
*/

/*
* 	BIZ
*
*/

/*
*	BTN result and reset
*
*/

.bx-filter.bx-blue .btn-themes {
    background-color: #1485CE;
    border-color: #1485CE;
    color: #FFF;
}

.bx-filter.bx-blue .btn-themes.bx-active,
.bx-filter.bx-blue .btn-themes.focus,
.bx-filter.bx-blue .btn-themes:active,
.bx-filter.bx-blue .btn-themes:focus,
.bx-filter.bx-blue .btn-themes:hover {
    background-color: #53A4D8;
    border-color: #53A4D8;
    color: #FFF;
}

/*
* 	Result Popup
*
*/

input[type=submit]:focus,
button:focus {
    outline: none !important;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.contacts-page p {
    margin: 0;
    padding: 0;
}

.contacts-page__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contacts-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    border-radius: 10px;
}

.contacts-page__row svg {
    min-width: 15px;
    min-height: 21px;
    max-width: 15px;
    max-height: 21px;
    color: #036666;
}

.contacts-page__scheme.lines-block {
    --color-dot: #fff;
    --color-line: #fff;
}

.contacts-page__scheme,
.contacts-page__commercial {
    width: calc(50% - 10px);
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.contacts-page__scheme a,
.contacts-page__commercial a {
    color: #fff;
}

.contacts-page__scheme-title,
.contacts-page__commercial-title {
    margin: 0;
}

.contacts-page__scheme--loading,
.contacts-page__commercial--loading {
    background: #6E6F71;
}

.contacts-page__scheme--office,
.contacts-page__commercial--office {
    background: #036666;
}

.contacts-page__scheme-image,
.contacts-page__commercial-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
    z-index: 5;
}

.contacts-page__scheme-image img,
.contacts-page__commercial-image img {
    width: 100%;
    height: auto;
    max-width: 405px;
    border-radius: 10px;
}

.contacts-page__scheme-content,
.contacts-page__commercial-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.contacts-page__scheme-description,
.contacts-page__commercial-description {
    color: #fff;
    max-width: 405px;
    padding: 70px 0 70px 70px;
    height: 100%;
    width: calc(50% - 35px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
}

.contacts-page__scheme-link,
.contacts-page__commercial-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    text-decoration: none;
    min-height: 100px;
}

.contacts-page__scheme-link:visited,
.contacts-page__commercial-link:visited {
    color: #fff;
}

.contacts-page__office {
    border-radius: 10px;
}

.contacts-page__office a {
    color: #636466;
    text-decoration: none;
}

.contacts-page__office a:hover {
    text-decoration: underline;
}

.contacts-page__office,
.contacts-page__requisites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: calc(40% - 10px);
    gap: 20px;
    padding: 70px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
}

.contacts-page__office-address,
.contacts-page__office-phone,
.contacts-page__office-mail,
.contacts-page__requisites-address,
.contacts-page__requisites-phone,
.contacts-page__requisites-mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
}

.contacts-page__requisites {
    width: calc(45% - 10px);
    border-radius: 10px;
}

.contacts-page__requisites h2,
.contacts-page__requisites h3,
.contacts-page__requisites h4,
.contacts-page__requisites h5,
.contacts-page__requisites h6 {
    color: #636466;
}

.contacts-page__requisites-title {
    color: #636466;
}

.contacts-page__requisites-item {
    font-size: 16px;
    font-weight: 400;
}

.contacts-page__title {
    color: #636466;
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.contacts-page__text {
    font-size: 16px;
    font-weight: 400;
}

.contacts-page__scheme-title {
    color: #fff;
}

.contacts-page__map {
    border-radius: 10px;
    width: calc(60% - 10px);
}

.contacts-page__commercial {
    color: #636466;
    background-color: #fff;
    border-radius: 10px;
    width: calc(55% - 10px);
}

.contacts-page__commercial-text {
    color: #636466;
}

.contacts-page__commercial-image {
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 1 !important;
}

.contacts-page__commercial img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    height: 100%;
    max-width: 480px;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 510px;
    border-radius: 10px;
}

.contacts-page ymaps {
    border-radius: 10px;
}

.contacts-page__mobile {
    display: none;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.profile__title {
    margin-bottom: 40px;
}

.profile__content {
    margin-top: 40px;
}

.profile__footer {
    max-width: 640px;
}

.profile__notice {
    font-size: 14px;
    color: #636466;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.profile__notice-link {
    color: #036666;
    text-decoration: none;
}

.profile__submit-btn {
    max-width: 160px;
    width: 100%;
    margin: 20px 0 20px auto !important;
    background: transparent;
}

.profile__message {
    font-size: 12px;
    font-weight: 200;
}

.profile__message--success {
    color: #036666;
}

.profile__message--error {
    color: #75132A;
}

.profile-data {
    width: 100%;
    max-width: 640px;
    margin-bottom: 20px;
}

.profile-data:last-of-type {
    margin-bottom: 10px;
}

.profile-data__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #636466;
    line-height: 1.4;
}

.profile-data__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.profile-data__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 200px;
}

.profile-data__field--full {
    max-width: 420px;
    white-space: nowrap;
}

.profile-data__label {
    font-weight: 400;
    margin-bottom: 10px;
    color: #636466;
}

.profile-data__input {
    color: #636466;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.profile-data__input::-webkit-input-placeholder {
    color: #ADAEAE;
}

.profile-data__input::-moz-placeholder {
    color: #ADAEAE;
}

.profile-data__input:-ms-input-placeholder {
    color: #ADAEAE;
}

.profile-data__input::-ms-input-placeholder {
    color: #ADAEAE;
}

.profile-data__input::placeholder {
    color: #ADAEAE;
}

.profile-data__input:focus {
    border: 1px solid #2DB0AF;
}

.iti__search-icon {
    display: none !important;
}

.iti__search-input {
    padding: 10px !important;
}

.iti__selected-dial-code {
    color: #ADAEAE;
    font-size: 12px;
    line-height: 1;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.faq-page__title {
    font-size: 30px;
}

.faq-page__content {
    font-family: "Roboto", sans-serif;
    color: #636466;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    position: relative;
}

.faq-page__questions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 70%;
    row-gap: 20px;
}

.faq-page__questions.full-width {
    width: 100%;
}

.faq-sidebar {
    background-color: #fff;
    margin-left: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 70px;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    row-gap: 20px;
    position: sticky !important;
    top: 90px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 340px;
}

.faq-sidebar > * {
    margin: 0;
}

.faq-sidebar__title {
    margin: 0;
    font-size: 24px;
}

.faq-sidebar__description {
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}

.faq-sidebar__image {
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
}

.faq-sidebar__image img {
    width: 100%;
    height: auto;
}

.faq-sidebar .faq-sidebar__button {
    width: 100%;
}

.faq-item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.25);
    border-radius: 10px;
    width: 100%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding: 20px 20px;
}

.shrinked .faq-item {
    padding: 20px 20px;
}

.faq-item--opened {
    background-color: #036666;
    color: #fff;
}

.faq-item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.faq-item__title {
    font-size: 24px;
    margin: 10px 0;
}

.faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.5s ease-out;
    transition: grid-template-rows 0.5s ease-out;
    transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
    overflow: hidden;
}

.faq-item__body--opened {
    grid-template-rows: 1fr;
    margin-top: 20px;
}

.faq-item__content {
    min-height: 0;
    font-weight: 400;
    font-size: 16px;
}

.faq-item .faq-item__toggle {
    margin-left: auto;
    z-index: 10;
}

.faq-item .faq-item__toggle:hover {
    background-color: #2DB0AF;
    color: #fff;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.vacancies-page {
    font-family: "Roboto", sans-serif;
    color: #636466;
    font-weight: 700;
    line-height: 1.4;
    font-size: 12px;
}

.vacancies-page__title {
    font-size: 30px;
}

.vacancies-page__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}

.vacancies-page__list,
.vacancies-page__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 70%;
    row-gap: 20px;
}

.vacancies-sidebar {
    background-color: #fff;
    margin-left: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    row-gap: 20px;
    font-size: 12px;
    padding: 70px 40px;
    position: sticky !important;
    top: 90px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 340px;
}

.vacancies-sidebar > * {
    margin: 0;
}

.vacancies-sidebar__title {
    margin: 0;
    font-size: 24px;
    color: #636466;
}

.vacancies-sidebar__description {
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}

.vacancies-sidebar__image {
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
    z-index: 4;
}

.vacancies-sidebar__image img {
    width: 100%;
    height: auto;
}

.vacancies-sidebar .vacancies-sidebar__button {
    width: 100%;
    z-index: 4;
}

.vacancies-item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 70px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    border-radius: 10px;
    width: 100%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    gap: 20px;
    position: relative;
}

.vacancies-item__description {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.vacancies-item__title {
    font-size: 24px;
    margin: 20px 0;
    line-height: 140%;
}

.vacancies-item__payment {
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

.vacancies-item__short {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.vacancies-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.vacancies-buttons__respond.btn,
.vacancies-buttons__detail.btn {
    width: 160px;
    z-index: 4;
}

.vacancies-buttons__detail {
    border: 1px solid #F07E26;
    text-decoration: none;
}

.vacancies-buttons__detail:hover {
    background: #F07E26;
    -webkit-box-shadow: 2px 2px 15px 0px rgba(240, 126, 38, 0.4);
    box-shadow: 2px 2px 15px 0px rgba(240, 126, 38, 0.4);
}

.vacancies-short__place,
.vacancies-short__schedule {
    font-weight: 400;
    color: #fff;
    border: 1px solid #DEDEDE;
    padding: 10px;
    border-radius: 5px;
}

.vacancies-short__place {
    background-color: #F07E26;
}

.vacancies-short__schedule {
    background-color: #036666;
}

.vacancies-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.vacancies-tags__item {
    font-weight: 400;
    color: #fff;
    border: 1px solid #DEDEDE;
    padding: 10px;
    border-radius: 5px;
    height: 40px;
    z-index: 4;
}

.vacancies-tags__item--place {
    background-color: #F07E26;
}

.vacancies-tags__item--schedule {
    margin-left: 15px;
    background-color: #036666;
}

.vacancies-detail {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 70px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    border-radius: 10px;
    gap: 20px;
    position: relative;
}

.vacancies-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.vacancies-content {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.vacancies-content__title {
    color: #636466;
}

.vacancies-content__text {
    font-size: 16px;
    font-weight: 400;
    color: #636466 !important;
}

.vacancies-content__text--company span {
    padding: 0;
    margin: 0;
    color: #036666;
}

.vacancies-content__text h2,
.vacancies-content__text h3,
.vacancies-content__text h4,
.vacancies-content__text h5,
.vacancies-content__text h6 {
    color: #636466 !important;
}

.vacancies-hot {
    width: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.vacancies-header__hot.vacancies-hot {
    position: static;
}

.order-history__title {
    margin-bottom: 30px;
}

.order-headers {
    display: grid;
    grid-template-columns: repeat(4, 150px);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.order-headers {
    padding: 20px 0;
    background: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.order-headers {
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
}

.order-headers__item {
    text-align: center;
}

.order-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}

.order-main {
    color: #636466;
}

.order-main > div {
    width: 150px;
    text-align: center;
}

.order-main__status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-main__id {
    font-weight: 600;
    width: 100px;
    margin-left: 10px;
}

.order-main__condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.order-main__sum {
    font-weight: 600;
}

.order-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    z-index: 999;
}

.order-actions__additional {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.button-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-detail::after {
    position: absolute;
    content: "";
    right: -10px;
    left: -10px;
    height: 40px;
}

.button-detail__icon {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.button-detail--active .button-detail__icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.order-additional__review {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #636466;
}

.order-additional__review svg {
    color: #DEDEDE;
    width: 100px;
    height: 20px;
}

.order-additional__reorder {
    color: #636466;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.order-additional__reorder {
    font-weight: 400;
    background-color: unset;
}

.order-additional__reorder:hover {
    text-decoration: underline;
}

.order-detail {
    display: none;
    padding: 10px;
}

.order-detail--active {
    display: block;
    -webkit-animation: slideDown 0.3s ease-out;
    animation: slideDown 0.3s ease-out;
}

.order-products__title {
    font-weight: 600;
    margin-bottom: 20px;
    color: #636466;
    font-size: 16px;
}

.order-products__mobile {
    display: none;
}

.order-table {
    margin-bottom: 30px;
    display: table;
    width: auto;
    border-collapse: collapse;
    table-layout: auto;
}

.order-table__headers {
    display: table-header-group;
}

.order-table__body {
    display: table-row-group;
}

.order-table__row {
    display: table-row;
}

.order-table-headers__cell {
    display: table-cell;
    padding: 20px 20px 20px 0;
    vertical-align: middle;
}

.order-table-headers__cell--number,
.order-table-headers__cell--quantity {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.order-table-headers__cell--price {
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
}

.order-table-headers__cell--name {
    text-align: left;
}

.order-table-row__cell {
    display: table-cell;
    padding: 20px 20px 20px 0;
    vertical-align: middle;
    font-size: 16px;
}

.order-table-row__cell {
    color: #636466;
}

.order-table-row__cell--number {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.order-table-row__cell--name {
    line-height: 1.4;
    text-align: left;
}

.order-table-row__cell--quantity,
.order-table-row__cell--price {
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.order-table-row__cell--price {
    text-align: right;
    padding: 0;
}

.order-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #636466;
    font-size: 12px;
}

.order-info__sum,
.order-info__payment,
.order-info__delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    gap: 5px;
    margin-bottom: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.order-info__title {
    font-weight: 600;
    width: 95px;
}

.order-info__value {
    width: 100%;
}

.order-info__additional {
    display: none;
}

.order-info__sum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-list {
    position: relative;
    z-index: 1;
}

.order-list__item {
    margin-top: 30px;
    overflow: hidden;
    padding: 10px;
    left: -10px;
    position: relative;
    width: calc(100% + 20px);
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.order-list__item--opened {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
}

.order-status-color__circle {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.order-status-color__circle--pending {
    fill: #FF9800;
}

.order-status-color__circle--completed {
    fill: #4CAF50;
}

.order-status-color__circle--cancelled {
    fill: #F44336;
}

.order-status-color__circle--processing {
    fill: #2196F3;
}

@-webkit-keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.order-item:hover {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.25);
}

.order-additional__review:has(.icon-star--deactive) {
    cursor: default;
}

.icon-star {
    -webkit-transition: fill 0.2s ease;
    transition: fill 0.2s ease;
}

.icon-star:hover {
    color: #036666;
}

.icon-star--deactive {
    pointer-events: none;
}

.icon-star--active,
.icon-star--hover {
    color: #036666 !important;
}

.form-rating-stars .icon-star--active:hover {
    color: #036666 !important;
}

.form-rating-stars .icon-star:hover {
    color: #dedede;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.cart-page__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    font-size: 12px;
}

.cart-page__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__heading {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 14px;
}

.cart-page__notauth {
    padding: 20px;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 5px 5px 10px 0 rgba(3, 102, 102, 0.4);
    box-shadow: 5px 5px 10px 0 rgba(3, 102, 102, 0.4);
    border-radius: 10px;
    margin: 10px 0 20px 0;
}

.cart-page__notauth a {
    color: #036666;
    text-decoration: underline;
}

.cart-page__notauth a:hover {
    text-decoration: none;
}

.cart-page__notauth-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background-size: cover;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAABJUlEQVR4nO3YT0sCQRyH8YeuUu0KG/RHUG8efAceetFBJ6noEKUI6iG1wHolxcIYg6wi67Qzs3w/IHga92F09zeCiIiIiMg/6QEPwKXDNRvAHXBLhYbADzAHLhysdwo8W2ueUJEMmJoPfj9yZ/KdeDRrfQNdKpYCY3MBC+DKQUQHT46JsSO+fEYUxSwPjMkjnkKKsGNGVsw1u50BLyFGFMWsdsQEH7GR7Ik534poE7hkK+YmxoiNJjAxF/4BvJr3n0CLyCTAmwnIX+uYdqJ2Ic06fLWSgjtXdD/2dM/tN5pnSHrA0z3Y0aTMvBVsTFpiAg5mfHc9xnuNyaxT4qLkKbFhzv7eTocZMHN41PUWM6zLnw99E+Miwo65BwYO1xQRERER4c8v6Th7MMbV15kAAAAASUVORK5CYII=");
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.cart-page__notauth-close:active {
    top: 16px;
}

.cart-page__cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__cart-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.cart-page__cart-actions [data-checkbox-field],
.cart-page__cart-actions [data-delete-items] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-page__cart-actions [data-delete-items] {
    position: relative;
    border-radius: 5px;
    padding: 20px 10px 20px 20px;
    cursor: pointer;
}

.cart-page__cart-actions [data-delete-items]:hover {
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
}

.cart-page__cart-actions [data-delete-items]:active {
    top: 1px;
}

.cart-page__cart-actions button {
    height: 30px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #636466;
}

.cart-page__cart-actions button:after {
    content: " ";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='21' viewBox='0 0 18 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5 3.5H13.125V1.75C13.125 1.28587 12.9406 0.840752 12.6124 0.512563C12.2842 0.184374 11.8391 0 11.375 0H6.125C5.66087 0 5.21575 0.184374 4.88756 0.512563C4.55937 0.840752 4.375 1.28587 4.375 1.75V3.5H0V5.25H1.75V18.375C1.75 19.0712 2.02656 19.7389 2.51884 20.2312C3.01113 20.7234 3.67881 21 4.375 21H13.125C13.8212 21 14.4889 20.7234 14.9812 20.2312C15.4734 19.7389 15.75 19.0712 15.75 18.375V5.25H17.5V3.5ZM6.125 1.75H11.375V3.5H6.125V1.75ZM14 18.375C14 18.6071 13.9078 18.8296 13.7437 18.9937C13.5796 19.1578 13.3571 19.25 13.125 19.25H4.375C4.14294 19.25 3.92038 19.1578 3.75628 18.9937C3.59219 18.8296 3.5 18.6071 3.5 18.375V5.25H14V18.375Z' fill='%2375132A'/%3E%3Cpath d='M7.875 8.75H6.125V15.75H7.875V8.75Z' fill='%2375132A'/%3E%3Cpath d='M11.375 8.75H9.625V15.75H11.375V8.75Z' fill='%2375132A'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
}

.cart-page__cart-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    margin-bottom: 20px;
}

.cart-page__cart-item [data-checkbox-field] {
    position: absolute;
    left: 10px;
    top: 10px;
}

.cart-page__cart-item [data-checkbox-field] input + label::before {
    margin-right: 0;
}

.cart-page__cart-item [data-spin-box-field] {
    max-width: 120px;
}

.cart-page__cart-item__props {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__cart-item__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-page__cart-item__image {
    display: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 10px;
    width: 120px;
}

.cart-page__cart-item__props .cart-page__cart-item__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-page__cart-item__image img {
    max-width: 100%;
    height: auto;
}

.cart-page__cart-item__picture img {
    max-width: 100%;
    height: auto;
}

.cart-page__cart-item__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 12px;
}

.cart-page__cart-item__article span {
    width: 100%;
}

.cart-page__cart-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: 10px;
}

.cart-page__cart-item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 20px;
}

.cart-page__cart-item__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding-right: 10px;
}

.cart-page__cart-item__prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 10px;
}

.cart-page__cart-item__prices s,
.cart-page__cart-item__prices b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-page__cart-item__prices s {
    font-size: 12px;
}

.cart-page__cart-item__prices b {
    font-size: 14px;
    font-weight: 700;
    color: #636466;
}

.cart-page__personal {
    margin-top: 20px;
}

.cart-page__personal-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__personal-form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-bottom: 20px;
}

.cart-page__personal-form__field:last-child {
    margin-bottom: 0;
}

.cart-page__personal-form__field label {
    margin-bottom: 10px;
}

.cart-page__delivery,
.cart-page__payment,
.cart-page__comment {
    margin-top: 20px;
}

.cart-page__delivery fieldset,
.cart-page__payment fieldset,
.cart-page__comment fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__delivery fieldset > [data-radio-field],
.cart-page__payment fieldset > [data-radio-field],
.cart-page__comment fieldset > [data-radio-field] {
    margin-bottom: 10px;
}

.cart-page__delivery fieldset .delivery-options,
.cart-page__payment fieldset .delivery-options,
.cart-page__comment fieldset .delivery-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__delivery fieldset .delivery-options [data-radio-field],
.cart-page__payment fieldset .delivery-options [data-radio-field],
.cart-page__comment fieldset .delivery-options [data-radio-field] {
    margin-bottom: 10px;
}

.cart-page__delivery fieldset .delivery-address,
.cart-page__payment fieldset .delivery-address,
.cart-page__comment fieldset .delivery-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
}

.cart-page__delivery fieldset .delivery-address label,
.cart-page__payment fieldset .delivery-address label,
.cart-page__comment fieldset .delivery-address label {
    margin-bottom: 10px;
}

.cart-page__delivery fieldset .delivery-address input[type=text],
.cart-page__payment fieldset .delivery-address input[type=text],
.cart-page__comment fieldset .delivery-address input[type=text] {
    margin-top: 10px;
}

.cart-page__comment label {
    margin-bottom: 10px;
}

.cart-page__comment textarea {
    height: 130px;
    font-size: 12px;
    resize: none;
}

.cart-page__summary {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 10px 0 rgba(3, 102, 102, 0.4);
    box-shadow: 5px 5px 10px 0 rgba(3, 102, 102, 0.4);
}

.cart-page__summary.fixed {
    position: sticky;
    top: 130px;
    z-index: 10;
}

.cart-page__summary-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #636466;
    font-weight: 600;
}

.cart-page__summary-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.cart-page__summary-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 10px 0;
    border-bottom: 1px dashed #636466;
}

.cart-page__summary-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cart-page__summary-item__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.cart-page__summary-item__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 5px;
}

.cart-page__summary-item__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
}

.cart-page__summary-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    font-weight: 600;
    margin: 20px 0;
}

.cart-page__summary-result span {
    margin-left: 10px;
}

.cart-page__summary-result > div {
    margin-bottom: 5px;
}

.cart-page__summary-result > div:last-child {
    margin-bottom: 0;
}

.cart-page__summary-text {
    font-size: 12px;
}

.cart-page__summary-text a {
    color: #036666;
}

.cart-page__summary-agree {
    margin: 20px 0 0 0;
}

.cart-page__summary-agree [data-radio-field] input + label::before {
    margin-right: 20px;
}

.cart-page__summary-sum {
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.cart-page__summary button {
    position: relative;
    margin: 0 auto;
}

.cart-page__summary button:active {
    top: 1px;
}

.cart-page__error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    font-size: 12px;
    color: #75132A;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.form__title {
    color: #636466;
}

.form__sub-title {
    color: #636466;
    font-size: 14px;
    margin-right: auto;
}

.form__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #DEDEDE;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
}

.form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 200px;
    gap: 10px;
}

.form__field--full {
    max-width: 420px;
    white-space: nowrap;
}

.form__field--bigger {
    max-width: 240px;
    white-space: nowrap;
}

.form__field--max {
    max-width: none;
}

.form__label {
    font-weight: 400;
    margin-bottom: 10px;
    color: #636466;
    font-size: 14px;
    line-height: 1.4;
}

.form__label sup {
    color: #75132A;
}

.form__input,
.form__textarea {
    -webkit-box-shadow: 0 2px 4px rgba(3, 102, 102, 0.25);
    box-shadow: 0 2px 4px rgba(3, 102, 102, 0.25);
    padding: 7px 10px;
    border-radius: 5px;
    color: #636466;
    font-size: 12px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: white;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
    color: #ADAEAE;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
    color: #ADAEAE;
}

.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
    color: #ADAEAE;
}

.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
    color: #ADAEAE;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #ADAEAE;
}

.form__input:focus,
.form__textarea:focus {
    border: 1px solid #2DB0AF;
}

.form__input--error {
    border-color: #75132A !important;
    -webkit-box-shadow: 0 0 5px 1px rgba(117, 19, 42, 0.3) !important;
    box-shadow: 0 0 5px 1px rgba(117, 19, 42, 0.3) !important;
}

.form__input--success {
    border-color: #036666;
}

.form__input-textarea {
    height: 80px;
    resize: none;
}

.form__textarea {
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
}

button.form-button {
    margin-left: auto;
}

.form-message {
    font-size: 12px;
    font-weight: 200;
    line-height: 1.4;
    margin-right: auto;
}

.form-message--success {
    color: #036666;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    margin: 0;
}

.form-message--error {
    color: #75132A;
}

.form-message--info {
    color: #636466;
}

.form-message--hidden {
    display: none;
}

.field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.field-group__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.field-group--max {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.phone-input__wrapper {
    position: relative;
}

.phone-input__country-code {
    color: #ADAEAE;
    font-size: 12px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form-validation__error {
    border-color: #75132A !important;
    -webkit-box-shadow: 0 0 5px 1px rgba(117, 19, 42, 0.3) !important;
    box-shadow: 0 0 5px 1px rgba(117, 19, 42, 0.3) !important;
}

.form-validation__success {
    border-color: #036666 !important;
}

.forms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-links {
    font-size: 12px;
    font-weight: 400;
    color: #636466;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.form-links a {
    color: #036666;
}

.form-success__logo {
    width: 100%;
}

html body form .cart-page__content input:-webkit-autofill,
html body form .cart-page__content input:-webkit-autofill:hover,
html body form .cart-page__content input:-webkit-autofill:focus,
html body form .cart-page__content input:-webkit-autofill:active {
    -webkit-box-shadow: 0 2px 4px rgba(3, 102, 102, 0.25) !important;
    box-shadow: 0 2px 4px rgba(3, 102, 102, 0.25) !important;
    -webkit-text-fill-color: #636466 !important;
    background-color: #fff !important;
    color: #636466 !important;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.docs-content,
.docs-results,
.docs-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.docs-content {
    gap: 20px;
    color: #636466;
    margin-top: 40px;
}

.docs-content__results {
    gap: 20px;
}

.docs-filters {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.docs-filter {
    font-size: 12px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}

.docs-filter__current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
}

.docs-filter__current .button-detail__icon {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.docs-filter--open .docs-filter__current .button-detail__icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.docs-filter--open .docs-filter__list {
    display: block;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.docs-filter__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 10px;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    z-index: 2;
    max-height: 270px;
    width: 300px;
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.docs-filter__list--align {
    left: auto;
    right: 0;
}

.docs-filter__item {
    padding: 5px 10px;
    min-height: 30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.docs-filter__item:hover {
    background-color: #DEDEDE;
    border-radius: 5px;
}

.docs-filter__item--current {
    font-weight: 700;
}

.docs-category {
    margin-bottom: 40px;
}

.docs-category:last-of-type {
    margin-bottom: 0;
}

.docs-category__items {
    display: grid;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.docs-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    color: #636466;
    overflow: hidden;
}

.docs-item__preview {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.docs-item__title {
    text-decoration: none;
    color: #636466;
    padding: 10px;
    font-size: 16px;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.docs-category__title {
    color: #636466;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.news__list {
    margin-top: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
}

.news__img {
    border-radius: 10px;
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
}

.news__name {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    color: #636466;
    margin: 20px 0 0 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.news .pagination {
    margin: 80px auto 0 auto;
}

.news-detail {
    margin-top: 40px;
}

.news-detail__contents {
    margin-top: 20px;
}

.news-detail__picture {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.news-detail__picture img {
    border-radius: 10px;
    width: 50%;
    height: auto;
}

.news-detail__text {
    font-size: 16px;
    margin-top: 20px;
}

.news-detail__text img {
    width: 100%;
    height: auto;
}

.news-detail__text h2 {
    margin-top: 20px;
}

.news-detail__text a {
    text-decoration: none;
    cursor: pointer;
    color: #2DB0AF;
}

.news-detail__products {
    margin-top: 20px;
}

.news-detail-contents__list {
    list-style: none;
    counter-reset: level1;
    padding-left: 0;
}

.news-detail-contents__list li {
    font-size: 14px;
    color: #6B6B6B;
    letter-spacing: -0.02em;
}

.news-detail-contents__list li a {
    color: #2DB0AF;
    text-decoration: none;
}

.news-detail-contents__number {
    font-weight: bold;
    margin-right: 5px;
    color: #636466;
}

.news-detail-contents__sublist {
    list-style: none;
    counter-reset: level2;
    padding-left: 20px;
    margin: 5px 0;
}

.news-detail-contents__heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 11px;
    letter-spacing: -0.025em;
}

.news-detail-contents__items {
    font-size: 11px;
    line-height: 1.28;
    margin: 0;
    list-style-type: disc;
}

.news-detail-contents__items a {
    text-decoration: none;
    border: 0;
}

.news-detail-contents__items a:hover {
    text-decoration: underline;
}

.news-detail-contents__item--level-1 {
    margin-left: 0;
}

.news-detail-contents__item--level-2 {
    margin-left: 10px;
}

.news-detail-contents__item--level-3 {
    margin-left: 20px;
}

.news-detail-contents__item--level-4 {
    margin-left: 30px;
}

.news-detail-contents__item--level-5 {
    margin-left: 40px;
}

.news-products.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-products__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 5px 0 5px 5px;
}

.news-product.swiper-slide {
    width: 100%;
    height: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.news-product.swiper-slide .catalog-product__image {
    height: 130px;
    width: 130px;
}

.news-navigation {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.news-pagination {
    margin-left: auto;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}

.pagination__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    color: #636466;
    font-size: 12px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 10px;
}

.pagination__link--current {
    cursor: default;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #2DB0AF;
}

.pagination__link--first,
.pagination__link--last {
    font-weight: 600;
}

.pagination__ellipsis {
    padding: 0 8px;
    font-size: 14px;
}

.reviews-page__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.reviews-page__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
}

.reviews-page__pagination {
    margin-top: 40px;
}

.reviews-page__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.25);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 730px;
    height: 500px;
}

.reviews-page__card:nth-child(6n+1),
.reviews-page__card:nth-child(6n+5) {
    width: calc(40% - 10px);
}

.reviews-page__card:nth-child(6n+2),
.reviews-page__card:nth-child(6n+6) {
    width: calc(25% - 10px);
}

.reviews-page__card:nth-child(6n+3),
.reviews-page__card:nth-child(6n+4) {
    width: calc(30% - 10px);
}

.review-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    font-size: 12px;
    width: 100%;
    height: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 140%;
}

.review-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
}

.review-card__name {
    font-size: 24px;
}

.review-card__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.review-card__position {
    margin-top: 10px;
}

.review-card__title,
.review-card__position {
    font-weight: 700;
    font-size: 16px;
}

.review-card__title {
    margin: 20px 0 5px 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.review-card__text {
    font-weight: 400;
    font-size: 16px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.review-card__date {
    margin: auto 0 0 auto;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.review-card__detail {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.review-card .button-detail__icon.opened {
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.rating-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
}

.rating-stars__item svg {
    width: 16px;
    height: 16px;
    fill: #DEDEDE;
}

.rating-stars__item--active svg {
    fill: #036666;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.methods,
.methods-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
}

.methods {
    margin-top: 40px;
    color: #636466;
}

.methods-section__title {
    color: #636466;
    margin: 0;
}

.methods-section__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.methods-section__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    border-radius: 10px;
    width: calc(50% - 10px);
    padding: 70px;
    height: -webkit-fill-available;
    height: stretch;
    max-height: 430px;
}

.methods-card__content {
    height: 100%;
    width: 60%;
}

.methods-card__text {
    font-size: 12px;
}

.methods-card__icon {
    margin-left: 70px;
    width: 40%;
    aspect-ratio: 170/126;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.methods-card__icon svg {
    width: 100%;
    height: 100%;
    max-width: 310px;
    -o-object-fit: contain;
    object-fit: contain;
}

.methods-card__title {
    margin: 0 0 20px 0;
}

.methods-card__title,
.methods-section__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
}

.popup-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
}

.popup-content {
    z-index: 1;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popup-loading {
    text-align: center;
    padding: 40px;
}

.popup-error {
    text-align: center;
    padding: 40px;
    color: #ff0000;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
}

.about-brands {
    width: 100%;
}

.about-brands__title {
    text-align: center;
    margin: 0;
    padding: 20px;
}

.about--sub-title {
    color: #6E6F71;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.4;
    margin: 0 auto;
}

.about--small-text {
    color: #6E6F71;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.about--main-title {
    color: #636466;
}

.about-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    min-height: 432px;
    position: relative;
}

.about-tabs__links {
    gap: 20px;
    background: #fff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    position: relative;
    overflow: hidden;
}

.about-tabs #tabs-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-tabs__link {
    cursor: pointer;
    margin: 0;
    position: relative;
}

.about-tabs__link--active {
    text-decoration: underline;
}

.about-tabs__contents {
    background-image: url("/local/templates/sprivod/images/tabs-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 100%;
}

.about-tabs__content {
    display: none;
}

.about-tabs__content ul {
    margin: 0;
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
}

.about-tabs__content--active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #DEDEDE;
}

.about-tabs__links,
.about-tabs__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 20px;
    width: 100%;
    border-radius: 20px;
}

.about-facts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-facts__list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-facts__list--mobile {
    display: none;
}

.about-facts__item {
    padding: 70px;
}

.about-brands-fullwidth {
    width: 98vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
}

.about-brands-fullwidth::before,
.about-brands-fullwidth::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.about-brands-fullwidth::before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#f8f9fa), to(transparent));
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.about-brands-fullwidth::after {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(#f8f9fa), to(transparent));
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.about-facts__list--mobile .about--small-text {
    color: #636466;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
}

.brands-carousel__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: ticker 25s linear infinite;
    animation: ticker 25s linear infinite;
}

.brands-carousel__track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.brands-carousel__slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    margin: 0 30px;
}

.brands-carousel__slide img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.brands-carousel__slide img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-33.333%);
        transform: translateX(-33.333%);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-33.333%);
        transform: translateX(-33.333%);
    }
}

.flip-card-container {
    width: 100%;
    height: 350px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.8s ease;
    transition: -webkit-transform 0.8s ease;
    transition: transform 0.8s ease;
    transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.flip-card-container:hover .flip-card {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.container--green .card-front,
.container--green .card-back {
    background: #036666 !important;
}

.container--green .about--small-text,
.container--green .about--sub-title {
    color: #fff;
}

.about-facts__list--mobile.container--green {
    background: #036666 !important;
}

.about-facts__list--mobile.container--orange {
    background: #F07E26 !important;
}

.container--orange .lines-block {
    --color-dot: #fff;
    --color-line: #fff;
}

.container--orange .card-front,
.container--orange .card-back {
    background: #F07E26 !important;
}

.container--orange .about--small-text,
.container--orange .about--sub-title {
    color: #fff;
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 70px;
}

.card-front {
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.card-back {
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    background: #fff;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.compare__filters {
    margin-top: 40px;
}

.compare {
    position: relative;
    z-index: 1;
    padding-top: 0 !important;
}

.compare .swiper-pagination {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-top: 0;
    margin-right: 20px;
}

.compare-products {
    width: 100%;
    overflow: hidden;
    padding: 5px;
}

.compare-products__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 10px;
}

.compare-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: auto;
    width: 280px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.compare-product.swiper-slide {
    height: auto;
}

.compare-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.characteristic-item {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 280px;
    min-height: auto;
    height: auto;
    padding-left: 5px;
}

.characteristic-values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.compare__characteristics {
    border-top: 1px solid #636466;
    padding-top: 20px;
}

.characteristic-row {
    min-height: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    background: none;
    margin: 10px 0;
    overflow: hidden;
}

.compare__characteristics .characteristic-row:nth-child(odd) {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.characteristic-slider {
    width: 100%;
    overflow: hidden;
}

.characteristic-slider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.characteristic-name {
    font-weight: 700;
    font-size: 12px;
    color: #636466;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-width: 200px;
    height: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.characteristic-value {
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    color: #636466;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 280px;
}

.compare .catalog-product__item {
    max-width: 280px;
}

.wrapper-full:has(.compare) {
    padding: 0;
}

.wrapper-full:has(.compare) h1,
.wrapper-full:has(.compare) .form__title {
    padding-bottom: 0 !important;
}

.wrapper-full:has(.compare) h1,
.wrapper-full:has(.compare) .form__title,
.compare {
    padding: 20px;
}

.compare__top {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 0 0 20px;
    width: 100vw;
    background: #F7FAFC;
    margin-left: calc(50% - 50vw);
}

.compare .docs-filter__current {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid #036666;
}

.compare .docs-filter__list {
    z-index: 999;
    margin: 20px 0 0 0;
}

.compare .docs-filter {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.compare__switch {
    margin-bottom: 20px;
}

.switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.switch__input {
    display: none;
}

.switch__slider {
    z-index: 2;
    position: relative;
    width: 44px;
    height: 24px;
    background: #fff;
    border-radius: 24px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    border: 1px solid #DEDEDE;
}

.switch__slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #636466;
    border-radius: 50%;
    top: 1px;
    left: 0;
    right: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.switch__input:checked + .switch__slider {
    background: #fff;
}

.switch__input:checked + .switch__slider:before {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    background: #036666;
}

.switch__label {
    font-size: 16px;
    font-weight: 700;
    color: #636466;
}

.characteristic-row.hidden {
    display: none !important;
}

.empty-compare {
    padding-left: 0 !important;
}

.characteristic-slider {
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
    position: relative;
}

.icon-compare--added svg {
    fill: #036666;
    stroke: #fff;
    width: 17px;
    height: 17px;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.page-404 {
    max-width: 650px;
    margin: 0 auto;
}

.page-404__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    fill: #036666;
}

.page-404__heading span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.page-404__heading svg {
    width: 100px;
    height: auto;
}

.page-404__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px rgba(3, 102, 102, 0.25);
    box-shadow: 1px 1px 10px rgba(3, 102, 102, 0.25);
    gap: 20px;
}

.page-404__subheading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-404__item {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #636466;
    gap: 10px;
    fill: #036666;
}

.page-404__item:hover {
    color: #036666;
}

.page-404__item--catalog {
    fill: #636466;
}

.page-404__item svg {
    width: 30px;
    height: 30px;
}

.page-404__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #036666;
    fill: #636466;
}

.page-404__search input {
    font-size: inherit;
    font-size: 12px;
    width: auto;
    width: 155px;
    padding: 0;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-404__search input:focus {
    border: 0;
}

.page-404__search svg {
    width: 30px;
    height: 30px;
}

.lines-block {
    --color-dot: #2DB0AF;
    --color-line: #2DB0AF;
    --gap: 15;
    position: relative;
}

.lines-block > * {
    position: relative;
}

.lines-block > * input,
.lines-block > * label,
.lines-block > * textarea,
.lines-block > * .form__title,
.lines-block > * .form-button.btn {
    position: relative;
    z-index: 2;
}

.lines-block > * .iti--allow-dropdown {
    position: relative;
    z-index: 10;
}

/*
.lines-block {
    .iti--allow-dropdown {
        z-index: 200;
    }
    .iti__country-container {
        z-index: 300 !important;
    }
}
 */

.lines-block > canvas {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */

.static-pages {
    padding: 40px 0 20px 0;
}

.static-pages h2,
.static-pages h3,
.static-pages h4,
.static-pages h5,
.static-pages h6 {
    margin-top: 24px;
}

.static-pages a {
    text-decoration: none;
    color: #036666;
}

.floating-widget {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    border-radius: 40px;
    gap: 10px;
    padding: 0;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.floating-widget.expanded {
    padding-left: 10px;
}

.floating-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 10;
    background: #FFFFFF;
}

.floating-main-btn:hover {
    background: #036666;
}

.floating-icon {
    width: 30px;
    height: 30px;
    -webkit-transition: color 0.6s ease;
    transition: color 0.6s ease;
}

.floating-main-btn .floating-icon use {
    -webkit-transition: color 0.6s ease;
    transition: color 0.6s ease;
    color: #036666;
}

.floating-main-btn:hover .floating-icon use {
    fill: #FFFFFF;
    color: #FFFFFF;
}

.floating-widget.expanded .floating-main-btn .floating-icon use {
    color: #FFFFFF;
}

.floating-main-btn.arrow-mode .floating-icon {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 20px;
    height: 20px;
}

.floating-main-btn.arrow-mode .floating-icon use {
    color: #036666;
}

.floating-main-btn.arrow-mode:hover .floating-icon use {
    color: #FFFFFF;
}

.floating-sub-buttons {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.floating-widget.expanded .floating-sub-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.floating-widget.expanded .floating-main-btn {
    background: #036666;
}

.floating-sub-btn {
    padding: 10px;
    background: #FFFFFF;
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid #F0F0F0;
    max-width: 44px;
    gap: 0;
}

.floating-sub-btn:hover {
    background: #036666;
    max-width: 200px;
    gap: 8px;
}

.floating-sub-btn .floating-sub-icon use {
    fill: #036666;
    color: #036666;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.floating-sub-btn:hover .floating-sub-icon use {
    fill: #FFFFFF;
    color: #FFFFFF;
    stroke: #FFFFFF;
}

.floating-sub-icon {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    stroke: #036666;
}

.floating-sub-btn:hover .floating-sub-icon {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.floating-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    display: none;
}

.floating-sub-btn:hover .floating-text {
    opacity: 1;
    max-width: 150px;
}

.floating-sub-buttons .floating-sub-btn {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    text-decoration: none;
}

.floating-widget.expanded .floating-sub-buttons .floating-sub-btn {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.selections-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-top: 40px;
}

.selections-block h2 {
    color: #636466;
    font-size: 14px;
    margin-bottom: 10px;
}

.selections-list {
    display: block;
}

.selections-list a {
    color: #036666 !important;
    text-decoration: underline;
    font-size: 12px;
    line-height: 140%;
}

.selections-list a:hover {
    text-decoration: none;
}

@media (min-width: 375px) {
    .fsz26 {
        font-size: 22px;
    }
}

@media (min-width: 425px) {
    .element-detail__right .attention-button-popup {
        width: 354px;
    }
}

@media (min-width: 475px) {
    .catalog-section__list .catalog-product__item {
        width: calc(33.3333333333% - 10px);
    }
}

@media (min-width: 540px) {
    .main-banner__slide {
        height: 320px;
    }

    .main-catalog__slide-item {
        min-height: 320px;
    }
}

@media (min-width: 576px) {
    .order-info__title {
        white-space: nowrap;
        overflow: hidden;
        width: auto;
        overflow: visible;
    }

    .form__container {
        padding: 40px;
        max-width: 500px;
    }

    .form-message--success {
        padding: 40px;
    }

    .news__list {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .flex-nowrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    body.fix-menu {
        margin-top: 92px;
    }

    .slider-block__heading,
  h2,
  .heading-h2,
  h1,
  .form__title,
  .heading-h1 {
        font-size: 24px;
    }

    button.btn--cart,
  .btn--cart {
        background: #fff;
        -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
        border: 1px solid #2DB0AF;
        padding: 10px 16px;
    }

    button.btn--cart:after,
  .btn--cart:after {
        margin-left: 10px;
    }

    button.btn u,
  .btn u {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .element-detail__actions [data-product-order] {
        padding: 20px 42px !important;
    }

    .slider-block {
        padding: 20px 40px;
    }

    .slider-block[data-catalog-slider] {
        padding: 20px 0 20px 40px;
    }

    .slider-block[data-catalog-slider] .slider-block__container {
        padding-right: 40px;
    }

    .slider-block[data-catalog-slider] .slider-block__arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .slider-block[data-popular-slider],
  .slider-block[data-articles-slider],
  .slider-block[data-documents-slider],
  .slider-block[data-catalog-sections-slider] {
        padding: 20px 0 20px 40px;
    }

    .slider-block[data-popular-slider] .swiper-pagination,
  .slider-block[data-articles-slider] .swiper-pagination,
  .slider-block[data-documents-slider] .swiper-pagination,
  .slider-block[data-catalog-sections-slider] .swiper-pagination {
        right: 40px;
    }

    .slider-block[data-popular-slider] .slider-block__arrows,
  .slider-block[data-catalog-sections-slider] .slider-block__arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .slider-block[data-documents-slider] .slider-block__arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .slider-block[data-articles-slider] .slider-block__header {
        height: 52px;
    }

    .slider-block[data-articles-slider] .slider-block__arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .slider-block__header {
        height: auto;
        background-image: url("data:image/svg+xml,%3Csvg width='691' height='52' viewBox='0 0 691 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 50H444.024C447.435 50 450.612 48.2604 452.449 45.3856L477.551 6.1144C479.388 3.23957 482.565 1.5 485.976 1.5H741' stroke='url(%23paint0_linear_84_26891)' stroke-width='3' stroke-linecap='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_84_26891' x1='1.5' y1='25.75' x2='741' y2='25.75' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.11' stop-color='white' stop-opacity='0'/%3E%3Cstop offset='0.44' stop-color='%23BEBEBF' stop-opacity='0.45'/%3E%3Cstop offset='0.76' stop-color='%23848587' stop-opacity='0.85'/%3E%3Cstop offset='0.93' stop-color='%236E6F71'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
        background-position: 120% 0;
    }

    .slider-block__arrows {
        padding-right: 40px;
    }

    .main-banner__slider {
        padding-bottom: 20px;
    }

    .main-banner__slider .banner-swiper-pagination {
        display: none;
    }

    .main-banner__slide {
        height: 430px;
    }

    .main-banner__text {
        font-size: 35px;
        margin: 20px 30px;
    }

    .main-banner__text small {
        font-size: 20px;
    }

    .main-catalog__slide {
        min-height: 230px;
    }

    .main-catalog__slide-item {
        min-height: 200px;
    }

    .main-catalog__slide-title {
        font-size: 14px;
    }

    [data-catalog-slider] .slider-block__header {
        margin-bottom: 20px;
    }

    .main-popular__slide {
        width: 214px;
    }

    .main-articles__slide {
        width: 334px;
    }

    .main-documents__slide {
        width: 216px;
        height: 365px;
    }

    .main-documents__slide-image {
        height: 305px;
    }

    .main-trust__slider {
        padding-bottom: 0;
    }

    .main-trust__slider > .swiper-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .main-trust__slide {
        width: 157px;
        margin-bottom: 20px;
    }

    .main-reviews__slider {
        padding-bottom: 0;
    }

    .main-reviews__slider > .swiper-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .main-reviews__slide {
        margin-bottom: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        height: auto;
    }

    .main-reviews__slide:nth-child(5),
  .main-reviews__slide:nth-child(6) {
        display: none;
    }

    .main-reviews__item {
        font-size: 14px;
    }

    [data-documents-slider] .slider-block__header,
  [data-popular-slider] .slider-block__header {
        margin-bottom: 10px;
    }

    [data-catalog-sections-slider] .catalog-sections__slider {
        padding: 20px 0 80px 15px;
    }

    [data-trust-slider] {
        padding: 20px 40px;
    }

    .wrapper-full {
        padding: 20px 40px;
    }

    .wrapper-right {
        padding: 20px 0 20px 40px;
    }

    .breadcrumbs {
        padding: 20px 40px;
    }

    .breadcrumbs__logo svg {
        width: 34px;
        height: 17px;
        margin-right: 8px;
    }

    .breadcrumbs span {
        margin: 0 8px 0 0;
    }

    .header-mobile {
        display: none;
    }

    .header-large {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .fixed .header-large {
        height: 50px;
    }

    .footer {
        padding: 40px;
        font-size: 14px;
    }

    .footer-menus {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .footer-menu:nth-child(1) {
        width: 38%;
    }

    .footer-menu:nth-child(2) {
        width: 38%;
    }

    .footer-menu:nth-child(3) {
        width: 24%;
    }

    .footer-menu__heading button {
        display: none;
    }

    .footer-menu__items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-right: 15px;
    }

    .footer-menu--information .footer-menu__items {
        padding-right: 0;
    }

    .footer-menu__item {
        margin-bottom: 20px;
    }

    .footer-contacts {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .footer-contacts__address,
  .footer-contacts__socials,
  .footer-contacts__schedule,
  .footer-contacts__contact {
        width: 50%;
        margin-top: 10px;
    }

    .footer-contacts__socials {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .footer-contacts__address {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .footer-contacts__schedule {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .footer-contacts__contact {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .footer-links {
        font-size: 14px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer-links span {
        margin: 15px;
        rotate: 90deg;
    }

    .main-about {
        padding: 20px 40px;
        font-size: 14px;
    }

    .main-about__container {
        background: #fff;
    }

    .main-about__container {
        padding: 40px 40px;
        -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        border-radius: 10px;
    }

    .main-about__icons {
        font-size: 14px;
    }

    .main-about__icon {
        width: 33.3333333333%;
    }

    .main-about__icon-image {
        width: 94px;
        height: 86px;
    }

    .catalog-section {
        padding: 10px 40px 10px 40px;
    }

    .catalog-options__filter-window {
        width: 350px;
    }

    .catalog-sections__slide {
        width: 216px;
    }

    .catalog-section__image {
        border-radius: 10px;
        width: 216px;
        height: 216px;
    }

    .catalog-section__image img {
        height: auto;
    }

    .catalog-section__title {
        font-size: 16px;
    }

    .catalog-section__list {
        padding: 20px 40px 20px 40px;
    }

    .catalog-section__list .catalog-section__list .catalog-product__item {
        width: calc(33.3333333333% - 10px);
        max-width: none;
    }

    .catalog-product__image {
        border-radius: 10px;
        min-height: 250px;
        width: 100%;
        height: 250px;
    }

    .catalog-product__picture img {
        height: auto;
    }

    .catalog-product__props {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .catalog-product__instock {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .catalog-product__title {
        font-size: 16px;
    }

    .catalog-product__buying {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .catalog-product__order.btn,
  .catalog-product__buy.btn {
        -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        height: auto;
    }

    .catalog-product__quantity-xs {
        display: none;
    }

    .catalog-product__quantity {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-height: 38px;
    }

    .element-detail__main {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .element-detail__left {
        width: calc(50% - 10px);
    }

    .element-detail__right {
        width: calc(50% - 10px);
    }

    .element-detail__right .attention-button-popup {
        width: 296px;
    }

    .element-detail__card {
        padding: 20px;
        position: relative;
        border-radius: 10px;
        background: #fff;
        -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    }

    .element-detail__options {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-top: 10px;
        padding-top: 20px;
        border-top: 1px solid #636466;
    }

    .element-detail__props {
        margin-top: 0;
    }

    .element-detail__instock {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .element-detail__actions [data-element-detail-click],
  .element-detail__actions [data-element-detail-basket] {
        padding: 8px 14px;
        border-radius: 5px;
    }

    .element-detail__actions [data-element-detail-click],
  .element-detail__actions [data-element-detail-basket] {
        padding: 14px;
    }

    .element-detail__worth {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: 0;
        border-bottom: none;
    }

    .element-detail__worth-item {
        width: calc(50% - 5px);
    }

    .element-detail__worth-item span {
        line-height: 1;
    }

    .element-detail__consultation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        width: 100%;
        height: 100px;
        padding: 23px 20px;
        margin-top: 20px;
        border-radius: 10px;
        background-color: #F07E26;
        background-image: url("/local/templates/sprivod/images/bg-consultation.png");
        background-position: right center;
        background-repeat: no-repeat;
        background-size: contain;
        color: #fff;
        text-decoration: none;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 14px;
    }

    .element-detail__consultation span {
        font-size: 18px;
        font-weight: 700;
    }

    .element-detail__consultation i {
        font-style: normal;
    }

    .element-detail__tabsheet {
        font-size: 14px;
    }

    .element-detail__tabs {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .element-detail__tab {
        padding: 5px 30px;
        border: solid 1px #DEDEDE;
        border-radius: 5px;
        width: auto;
        margin-right: 10px;
        margin-bottom: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .element-detail__tab button {
        display: none;
    }

    .element-detail__tab.expanded {
        background: #036666;
        color: #fff;
    }

    .element-detail__sheet {
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
    }

    .element-detail__sheet .data-table__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .element-detail .element-detail__card .catalog-product__quantity {
        height: 43px;
    }

    .main-catalog-menu {
        height: 400px;
        overflow-y: auto;
    }

    .main-catalog-menu.short {
        margin-top: 50px;
    }

    .footer-mobile-menu {
        display: none;
    }

    .bx-filter {
        font-size: 14px;
    }

    .bx-filter-parameters-box-title span {
        font-size: 14px;
    }

    .order-additional__review svg {
        width: 20px;
    }

    .order-info__value {
        white-space: nowrap;
        overflow: hidden;
    }

    .cart-page__content {
        font-size: 14px;
    }

    .cart-page__heading {
        font-size: 18px;
    }

    .cart-page__notauth {
        padding: 40px;
    }

    .cart-page__cart-actions [data-checkbox-field] {
        margin-left: 10px;
    }

    .cart-page__cart-actions [data-checkbox-field] input + label::before {
        margin-right: 10px;
    }

    .cart-page__cart-item {
        padding: 20px;
        height: 220px;
    }

    .cart-page__cart-item__props .cart-page__cart-item__image {
        display: none;
    }

    .cart-page__cart-item__image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }

    .cart-page__cart-item__picture {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 180px;
        height: 180px;
    }

    .cart-page__cart-item__prices b {
        font-size: 16px;
    }

    .cart-page__personal-form {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .cart-page__personal-form fieldset {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }

    .cart-page__personal-form__field {
        width: calc(33.3333333333% - 10px);
    }

    .cart-page__delivery,
  .cart-page__payment,
  .cart-page__comment {
        margin-bottom: 40px;
    }

    .cart-page__delivery fieldset .delivery-options,
  .cart-page__payment fieldset .delivery-options,
  .cart-page__comment fieldset .delivery-options {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .cart-page__delivery fieldset .delivery-options [data-radio-field]:first-child,
  .cart-page__payment fieldset .delivery-options [data-radio-field]:first-child,
  .cart-page__comment fieldset .delivery-options [data-radio-field]:first-child {
        margin-right: 150px;
    }

    .cart-page__delivery fieldset .delivery-options [data-radio-field] input + label::before,
  .cart-page__payment fieldset .delivery-options [data-radio-field] input + label::before,
  .cart-page__comment fieldset .delivery-options [data-radio-field] input + label::before {
        margin-right: 10px;
    }

    .cart-page__delivery fieldset .delivery-address input[type=text],
  .cart-page__payment fieldset .delivery-address input[type=text],
  .cart-page__comment fieldset .delivery-address input[type=text] {
        max-width: 455px;
    }

    .cart-page__payment fieldset {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .cart-page__payment fieldset [data-radio-field]:first-child {
        margin-right: 100px;
    }

    .cart-page__summary {
        padding: 40px;
    }

    .cart-page__summary-total {
        margin-bottom: 30px;
    }

    .cart-page__summary-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        border-bottom: none;
        font-size: 12px;
        padding: 0;
        margin-bottom: 20px;
    }

    .cart-page__summary-item:last-child {
        margin-bottom: 0;
    }

    .cart-page__summary-item__title span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        margin: 0 5px 5px;
        border-bottom: 1px dashed #ADAEAE;
    }

    .cart-page__summary-item__title span {
        width: 40px;
    }

    .cart-page__summary-item__quantity {
        padding-right: 10px;
    }

    .cart-page__summary-agree [data-radio-field] {
        font-size: 12px;
    }

    .cart-page__summary-agree [data-radio-field] input + label {
        max-width: 440px;
    }

    .cart-page__summary-sum {
        font-size: 18px;
    }

    .cart-page__summary-sum {
        font-size: 24px;
    }

    .form__sub-title {
        font-size: 16px;
    }

    .news__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .news__name {
        font-size: 14px;
    }

    .news-product.swiper-slide .catalog-product__image {
        height: 100%;
        width: 100%;
        max-height: 250px;
    }

    .reviews-page__grid {
        gap: 12px;
    }

    .review-card {
        font-size: 14px;
    }

    .methods-card__text {
        font-size: 14px;
    }

    .methods-card__title,
  .methods-section__title {
        font-size: 18px;
    }

    .about-brands__title {
        padding: 20px 40px;
    }

    .about--sub-title {
        font-size: 18px;
    }

    .about--small-text {
        font-size: 14px;
    }

    .about-tabs__links,
  .about-tabs__contents {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 50%;
        padding: 40px;
    }

    .compare .swiper-pagination {
        margin-right: 40px;
    }

    .wrapper-full:has(.compare) h1,
  .wrapper-full:has(.compare) .form__title,
  .compare {
        padding: 20px 40px;
    }

    .compare__top {
        padding-left: 40px;
    }

    .page-404__heading span {
        font-size: 24px;
    }

    .page-404__heading svg {
        width: 302px;
    }

    .page-404__body {
        padding: 70px;
        gap: 40px;
    }

    .page-404__subheading {
        font-size: 24px;
    }

    .page-404__item {
        font-size: 14px;
    }

    .page-404__search input {
        font-size: 14px;
        width: 180px;
    }

    .floating-widget {
        bottom: 30px;
        right: 30px;
    }

    .floating-widget.expanded {
        padding-left: 20px;
    }

    .floating-main-btn {
        width: 80px;
        height: 80px;
    }

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

    .floating-sub-btn:hover {
        padding: 10px 16px;
    }

    .floating-text {
        display: block;
    }

    .selections-block {
        margin-top: 60px;
    }

    .selections-block h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .selections-list a {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .main-reviews__slide:nth-child(1) {
        width: calc(45% - 10px);
    }

    .main-reviews__slide:nth-child(2) {
        width: calc(55% - 10px);
    }

    .main-reviews__slide:nth-child(3) {
        width: calc(55% - 10px);
    }

    .main-reviews__slide:nth-child(4) {
        width: calc(45% - 10px);
    }
}

@media (min-width: 768) {
    .news-detail-contents__heading {
        font-size: 30px;
        margin-bottom: 26px;
    }

    .news-detail-contents__items {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .element-detail__right .attention-button-popup {
        white-space: normal;
    }

    .bx-filter .bx-filter-section .col-md-4:nth-child(3n+1) {
        clear: both;
    }
}

@media (min-width: 1050px) {
    .element-detail__left {
        width: calc(35% - 10px);
    }

    .element-detail__middle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: calc(30% - 10px);
    }

    .element-detail__right {
        width: calc(35% - 10px);
    }

    .element-detail__brand {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .element-detail__brand-text {
        margin-top: 20px;
    }
}

@media (min-width: 1200px) {
    button.btn--cart,
  .btn--cart {
        padding: 13px 42px;
    }

    .slider-block {
        padding: 0 70px 20px 20px;
    }

    .slider-block[data-catalog-slider] {
        padding: 20px 0 20px 70px;
    }

    .slider-block[data-catalog-slider] .slider-block__container {
        padding-right: 70px;
    }

    .slider-block[data-popular-slider],
  .slider-block[data-articles-slider],
  .slider-block[data-documents-slider],
  .slider-block[data-catalog-sections-slider] {
        padding: 20px 0 20px 70px;
    }

    .slider-block[data-popular-slider] .swiper-pagination,
  .slider-block[data-articles-slider] .swiper-pagination,
  .slider-block[data-documents-slider] .swiper-pagination,
  .slider-block[data-catalog-sections-slider] .swiper-pagination {
        right: 70px;
    }

    .slider-block[data-articles-slider] .slider-block__header {
        background-image: none;
    }

    .slider-block[data-articles-slider] .slider-block__arrows {
        display: none;
    }

    .slider-block__header {
        background-position: 100%;
    }

    .slider-block__arrows {
        padding-right: 160px;
    }

    .main-banner__slider {
        display: none;
    }

    .main-banner__block {
        display: block;
    }

    .main-catalog__slide-item {
        min-height: 295px;
    }

    .main-catalog__slide-title {
        font-size: 16px;
        font-weight: 400;
        margin-top: 10px;
    }

    .main-popular__slide {
        width: 250px;
    }

    .main-popular__slide {
        width: 280px;
    }

    .main-popular__slide .catalog-product__item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .main-popular__slide .catalog-product__wrapper {
        height: 100%;
    }

    .main-popular__slide .catalog-product__title {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .main-popular__slide .catalog-product__image {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .main-articles__slider {
        display: none;
    }

    .main-articles__block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .main-articles__title {
        font-size: 16px;
    }

    .main-documents__slide {
        width: 250px;
        height: 440px;
    }

    .main-documents__slide-image {
        height: 350px;
    }

    .main-documents__slide-image {
        height: 395px;
    }

    .main-documents__slide-title {
        height: 64px;
        font-size: 16px;
    }

    .main-trust__slider {
        padding-bottom: 0;
    }

    .main-trust__slide {
        width: calc(25% - 20px);
        height: 200px;
    }

    .main-trust__slide img {
        height: auto;
    }

    .main-reviews__slide {
        padding: 20px;
    }

    .main-reviews__item {
        font-size: 16px;
    }

    .main-reviews__name {
        font-size: 24px;
    }

    .main-reviews__title {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .main-reviews__date {
        font-size: 16px;
    }

    .wrapper-full {
        padding: 30px 70px;
    }

    .wrapper-right {
        padding: 20px 0 20px 70px;
    }

    .breadcrumbs {
        padding: 20px 70px;
    }

    .header-large {
        height: 92px;
        padding: 0 70px;
    }

    .fixed .header-large {
        height: 62px;
    }

    .header-large__bottom {
        height: 62px;
    }

    .header-large__address {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
    }

    .header-large__address svg {
        width: 16px;
        height: 22px;
        margin: 0 18px 0 0;
    }

    .header-large__address i {
        font-style: normal;
    }

    .header-large__logo {
        width: 290px;
        height: 42px;
    }

    .header-large__logo svg:nth-child(1) {
        display: none;
    }

    .header-large__logo svg:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header-large__icon--compare {
        margin: 0 30px;
    }

    .header-large__search input[type=search] {
        width: 390px;
    }

    .footer {
        padding: 40px 70px;
        font-size: 16px;
    }

    .footer-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .footer-menus {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
        flex: 0 1 60%;
        padding-right: 15px;
    }

    .footer-contacts {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        -ms-flex-item-align: start;
        align-self: flex-start;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .footer-contacts__address,
  .footer-contacts__socials,
  .footer-contacts__schedule,
  .footer-contacts__contact {
        margin-top: 0;
    }

    .footer-contacts__address {
        width: 30%;
        margin-bottom: 0;
    }

    .footer-contacts__socials {
        width: 70%;
        margin-bottom: 0;
    }

    .footer-contacts__schedule {
        width: 38%;
        margin-top: 20px;
    }

    .footer-contacts__contact {
        width: 62%;
        margin-top: 20px;
    }

    .main-about {
        padding: 20px 70px;
    }

    .main-about__container {
        padding: 70px;
    }

    .main-about__icons {
        font-size: 16px;
    }

    .main-skew {
        background-position: center 70px;
    }

    .main-skew:before {
        top: 0;
        left: -30px;
        width: 130%;
        height: 150px;
    }

    .main-skew:after {
        bottom: -50px;
        left: -30px;
        width: 130%;
        height: 120px;
    }

    .catalog-section {
        padding: 10px 70px 10px 70px;
    }

    .catalog-options__view button[data-catalog-section-view-tile] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catalog-options__view button[data-catalog-section-view-list] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catalog-sections__slide {
        width: 320px;
    }

    .catalog-section__item:hover .catalog-section__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: #fff;
        -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    }

    .catalog-section__item:hover .catalog-section__image {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .catalog-section__image {
        width: 320px;
        height: 320px;
    }

    .catalog-section__image img {
        max-height: 310px;
    }

    .catalog-section__list {
        padding: 0 70px 20px 70px;
    }

    .catalog-product__item {
        max-width: 250px;
    }

    .catalog-section__list .catalog-product__item {
        width: 25%;
        max-width: none;
    }

    .slider-block .catalog-product__item {
        max-width: none;
    }

    .catalog-section__list--list .catalog-product__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        width: 100%;
    }

    .catalog-product__item [data-element-detail-click] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catalog-product__wrapper {
        padding: 10px;
    }

    .catalog-section__list--list .catalog-product__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        width: 100%;
    }

    .catalog-section__list--list .catalog-product__image {
        width: 250px;
        height: 250px;
        margin-right: 20px;
        max-width: 250px;
    }

    .catalog-section__list--list .catalog-product__props-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .catalog-product__picture {
        min-height: 250px;
    }

    .catalog-product__picture img {
        height: auto;
    }

    .catalog-section__list--list .catalog-product__props {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 0;
    }

    .catalog-section__list--list .catalog-product__properties {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .catalog-product__properties-list {
        display: none;
        font-size: 12px;
        margin-top: 10px;
    }

    .catalog-section__list--list .catalog-product__properties-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .catalog-product__properties-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        margin: 5px 0;
    }

    .catalog-product__properties-prop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
        flex: 1 1 40%;
    }

    .catalog-product__properties-value {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
        flex: 1 1 60%;
    }

    .catalog-section__list--list .catalog-product__article {
        display: none;
    }

    .catalog-section__list--list .catalog-product__title {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .catalog-section__list--list .catalog-product__buying {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .catalog-section__list--list .catalog-product__price {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 30px;
    }

    .catalog-product__price b {
        font-size: 16px;
    }

    .catalog-section__list--list .catalog-product__action {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catalog-section__list--list .catalog-product__action [data-element-detail-click] {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        margin-right: 30px;
        border: 1px solid #f07e26;
    }

    .catalog-section__list--list .catalog-product__action [data-element-detail-click]:hover {
        background: #f07e26;
        -webkit-box-shadow: 2px 2px 15px 0 rgba(240, 126, 38, 0.4);
        box-shadow: 2px 2px 15px 0 rgba(240, 126, 38, 0.4);
    }

    .catalog-product__quantity {
        max-height: none;
    }

    .element-detail__left {
        width: calc(33.3333333333% - 10px);
    }

    .element-detail__middle {
        width: calc(33.3333333333% - 10px);
    }

    .element-detail__right {
        width: calc(33.3333333333% - 10px);
    }

    .element-detail__brand {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .element-detail__options {
        margin-top: 20px;
    }

    .element-detail__attention {
        border-top: 1px solid #636466;
    }

    .element-detail__characteristics {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .element-detail__consultation {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        max-width: 340px;
        padding: 16px 20px;
    }

    .element-detail__consultation span {
        font-size: 24px;
        max-width: 250px;
        line-height: 140%;
    }

    .element-detail__consultation i {
        display: none;
    }

    .element-detail__tabsheet {
        font-size: 16px;
    }

    .element-detail__tab {
        padding: 5px 20px;
    }

    .element-detail__sheet .data-table__param {
        white-space: nowrap;
        width: 50%;
    }

    .element-detail__sheet .data-table__value {
        width: 50%;
    }

    .element-detail .element-detail__card .catalog-product__quantity {
        height: 44px;
    }

    .main-catalog-menu {
        height: auto;
        overflow-y: auto;
        margin-top: 92px;
        padding: 70px 190px;
    }

    .main-catalog-menu.short {
        margin-top: 62px;
    }

    .main-catalog-menu__block {
        width: calc(33.3333333333% - 10px);
    }

    .bx-filter input[type=text] {
        font-size: 14px;
    }

    .bx-filter .bx-filter-button-box input {
        font-size: 14px;
    }

    .bx-filter .bx-filter-popup-result {
        padding: 8px 20px;
    }

    .cart-page__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }

    .cart-page__left {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-right: 10px;
    }

    .cart-page__right {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 10px;
    }

    .cart-page__heading {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cart-page__cart-item__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 180px;
    }

    .cart-page__cart-item__title {
        font-size: 16px;
    }

    .cart-page__comment label {
        margin-bottom: 15px;
    }

    .cart-page__summary {
        max-width: 600px;
    }

    .cart-page__summary-total {
        font-size: 16px;
    }

    .cart-page__summary-item__total {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .cart-page__summary-result {
        font-size: 16px;
    }

    .news__list {
        grid-template-columns: repeat(4, 1fr);
    }

    .news__name {
        font-size: 16px;
    }

    .reviews-page__card {
        padding: 20px;
    }

    .review-card {
        font-size: 16px;
    }

    .methods-card__text {
        font-size: 16px;
    }

    .methods-card__title,
  .methods-section__title {
        font-size: 24px;
    }

    .about-brands__title {
        padding: 30px 70px;
    }

    .about--sub-title {
        margin: 0;
        font-size: 24px;
    }

    .about--small-text {
        font-size: 16px;
    }

    .about-tabs__links,
  .about-tabs__contents {
        padding: 70px;
    }

    .compare .swiper-pagination {
        margin-right: 70px;
    }

    .wrapper-full:has(.compare) h1,
  .wrapper-full:has(.compare) .form__title,
  .compare {
        padding: 30px 70px;
    }

    .compare__top {
        padding-left: 70px;
    }

    .selections-block h2 {
        font-size: 24px;
    }

    .selections-list a {
        font-size: 16px;
    }
}

@media (min-width: 1200px) and (min-width: 1700px) {
    .catalog-product__properties-prop {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 20%;
        flex: 1 1 20%;
    }

    .catalog-product__properties-value {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 80%;
        flex: 1 1 80%;
    }
}

@media (min-width: 1366px) {
    body.is-detail-page {
        max-width: 1366px;
    }

    body.is-detail-page {
        max-width: 1366px;
    }

    .element-detail__left {
        width: 340px;
    }

    .element-detail__middle {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 0 20px;
    }

    .element-detail__right {
        width: 340px;
    }
}

@media (min-width: 1600px) {
    .element-detail__left {
        width: 340px;
    }

    .element-detail__right {
        width: 340px;
    }

    .form__container {
        padding: 70px;
        max-width: 560px;
    }

    .form-message--success {
        padding: 70px;
    }
}

@media (min-width: 1700px) {
    body {
        max-width: 1930px;
    }

    .slider-block {
        padding: 30px 0 0 70px;
    }

    .slider-block__header {
        background-position: 100%;
    }

    .main-banner__block-accordion .caption div {
        font-weight: 700;
    }

    .main-catalog__slide-item {
        min-height: 500px;
    }

    .main-articles__block {
        height: 880px;
    }

    .main-documents__slide {
        width: 280px;
        height: 460px;
    }

    .main-trust__slider {
        padding-right: 70px;
    }

    .main-trust__slide {
        width: calc(25% - 20px);
        height: 200px;
        padding: 0 30px;
    }

    .main-reviews__slider {
        padding-right: 70px;
    }

    .main-reviews__slide:nth-child(1) {
        width: calc(40% - 10px);
    }

    .main-reviews__slide:nth-child(2) {
        width: calc(25% - 10px);
    }

    .main-reviews__slide:nth-child(3) {
        width: calc(35% - 10px);
    }

    .main-reviews__slide:nth-child(4) {
        width: calc(35% - 10px);
    }

    .main-reviews__slide:nth-child(5) {
        width: calc(40% - 10px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .main-reviews__slide:nth-child(6) {
        width: calc(25% - 10px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header-large__menu-item:hover.is-hide > .header-large__menu-submenu {
        display: none;
    }

    .header-large__search input[type=search] {
        width: 675px;
    }

    .footer-contacts__address {
        width: 50%;
    }

    .footer-contacts__socials {
        width: 50%;
    }

    .footer-contacts__schedule {
        width: 50%;
    }

    .footer-contacts__contact {
        width: 50%;
    }

    .main-about__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .main-about__container {
        padding: 70px;
        width: calc(50% - 10px);
    }

    .main-about__philosophy {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        width: calc(50% - 10px);
    }

    .main-about__description {
        font-size: 16px;
    }

    .main-skew:before {
        top: -70px;
        left: -30px;
        width: 130%;
        height: 250px;
        -webkit-transform: rotate(354deg);
        transform: rotate(354deg);
    }

    .main-skew:after {
        bottom: -120px;
        left: -30px;
        width: 130%;
        height: 250px;
        -webkit-transform: rotate(354deg);
        transform: rotate(354deg);
    }

    .catalog-section__list .catalog-product__item {
        width: 16.6666666667%;
        max-width: none;
    }

    .catalog-product__item {
        max-width: 292px;
    }

    .catalog-section__list--list .catalog-product__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        width: 100%;
    }

    .catalog-product__item:hover .catalog-product__wrapper {
        background: #fff;
        -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    }

    .catalog-product__item:hover .catalog-product__image {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .catalog-section__list--list .catalog-product__image {
        width: 280px;
        height: 280px;
        max-width: 280px;
    }

    .element-detail__left {
        width: calc(33.3333333333% - 10px);
    }

    .element-detail__middle {
        width: calc(33.3333333333% - 10px);
    }

    .element-detail__right {
        width: calc(33.3333333333% - 10px);
    }

    .element-detail__brand {
        margin-bottom: 10px;
    }

    .element-detail__brand-logo img {
        max-width: 280px;
    }

    .element-detail__documents {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .element-detail__options {
        border-top: none;
    }

    .element-detail__options .icon:first-child {
        display: none;
    }

    .element-detail__price-old {
        font-size: 16px;
    }

    .element-detail__price-current {
        font-size: 24px;
    }

    .element-detail__attention {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .element-detail__consultation {
        max-width: 100%;
        height: 125px;
        -webkit-box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0 rgba(3, 102, 102, 0.2509803922);
    }

    .element-detail__consultation span {
        max-width: 100%;
    }

    .element-detail__consultation i {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 300px;
        font-size: 16px;
    }

    .element-detail__right .element-detail__consultation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .element-detail__characteristics .element-detail__consultation {
        display: none;
    }

    .element-detail__sheet .data-table__param {
        white-space: nowrap;
        width: 20%;
    }

    .element-detail__sheet .data-table__value {
        width: 80%;
    }

    .cart-page__left {
        padding-right: 0;
    }

    .cart-page__right {
        padding-left: 0;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .reviews-page__grid {
        gap: 16px;
    }

    .page-404__heading span {
        font-size: 35px;
    }

    .page-404__subheading {
        font-size: 30px;
    }

    .page-404__item {
        font-size: 16px;
    }

    .page-404__search input {
        font-size: 16px;
        width: 210px;
    }

    .selections-block {
        margin-top: 120px;
    }
}

@media (min-width: 1900px) {
    .compare__top {
        width: 99.6vw;
    }
}

@media (max-width: 1550px) {
    .about-facts__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1500px) {
    .reviews-page__card {
        height: 650px;
    }
}

@media (max-width: 1450px) {
    .contacts-page__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .contacts-page__scheme,
  .contacts-page__commercial {
        width: 100%;
        max-height: 460px;
    }

    .contacts-page__scheme-image img,
  .contacts-page__commercial-image img {
        max-width: 505px;
    }

    .contacts-page__requisites {
        width: 100%;
    }

    .contacts-page__commercial-image {
        position: static;
    }

    .contacts-page__commercial img {
        min-height: 360px;
    }
}

@media (max-width: 1200px) {
    [data-product-order] {
        width: -webkit-min-content !important;
        width: -moz-min-content !important;
        width: min-content !important;
        padding: 10px 20px !important;
    }

    .contacts-page__office {
        width: calc(60% - 20px);
    }

    .contacts-page__map {
        width: 40%;
    }

    .contacts-page__commercial {
        width: 100%;
    }

    .faq-page__title {
        font-size: 24px;
    }

    .faq-sidebar {
        padding: 70px 40px;
        top: 70px;
    }

    .faq-sidebar {
        padding: 40px;
    }

    .faq-sidebar__title {
        font-size: 18px;
    }

    .faq-sidebar__image {
        max-width: 110px;
    }

    .faq-item {
        padding: 40px;
    }

    .faq-item__title {
        font-size: 18px;
    }

    .faq-item__body {
        font-size: 14px;
    }

    .faq-item__content {
        font-size: 14px;
    }

    .vacancies-page__title {
        font-size: 24px;
    }

    .vacancies-sidebar {
        padding: 40px;
        top: 70px;
    }

    .vacancies-sidebar__title {
        font-size: 18px;
    }

    .vacancies-sidebar__description {
        font-size: 14px;
    }

    .vacancies-sidebar__image {
        max-width: 110px;
    }

    .vacancies-item {
        padding: 40px;
    }

    .vacancies-item__title {
        font-size: 18px;
    }

    .vacancies-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .vacancies-detail {
        padding: 40px;
    }

    .vacancies-content__text {
        font-size: 14px;
    }

    .vacancies-hot {
        top: 15px;
        right: 15px;
    }

    .order-headers {
        grid-template-columns: repeat(4, 110px);
    }

    .order-headers {
        font-size: 14px;
    }

    .order-main {
        font-size: 14px;
    }

    .order-main > div {
        width: 110px;
    }

    .order-additional__reorder {
        font-size: 14px;
    }

    .order-products__title {
        font-size: 14px;
    }

    .order-table-row__cell {
        font-size: 14px;
    }

    .docs-category__items {
        grid-template-columns: repeat(4, 1fr);
    }

    .docs-item__title {
        font-size: 14px;
    }

    .news__img {
        height: 250px;
    }

    .news-detail__text {
        font-size: 14px;
    }

    .reviews-page__card {
        height: 500px;
    }

    .reviews-page__card:nth-child(4n+1),
  .reviews-page__card:nth-child(4n+4) {
        width: calc(55% - 10px);
    }

    .reviews-page__card:nth-child(4n+2),
  .reviews-page__card:nth-child(4n+3) {
        width: calc(45% - 10px);
    }

    .review-card__name {
        font-size: 18px;
    }

    .review-card__title,
  .review-card__position {
        font-size: 14px;
    }

    .review-card__text {
        font-size: 14px;
    }

    .review-card__date {
        font-size: 14px;
    }

    .methods-section__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-height: 704px;
    }

    .methods-card__content {
        width: 100%;
    }

    .methods-card__icon {
        padding: 70px;
        margin: 20px auto 0 auto;
        width: 100%;
    }

    .about-facts__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-facts__list--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px;
        gap: 20px;
        text-align: left;
        border-radius: 20px;
        background: #fff;
        -webkit-box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
        box-shadow: 1px 1px 10px 0px rgba(3, 102, 102, 0.2509803922);
    }

    .flip-card-container {
        height: 245px;
    }

    .flip-card-container {
        display: none;
    }

    .card-back {
        -webkit-transform: none;
        transform: none;
    }

    .compare-product {
        width: 265px;
    }

    .characteristic-item {
        width: 265px;
    }

    .characteristic-value {
        width: 265px;
    }

    .compare .catalog-product__item {
        max-width: 265px;
    }
}

@media (max-width: 1000px) {
    .methods-card__icon {
        padding: 40px;
    }
}

@media (max-width: 900px) {
    .vacancies-page__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .vacancies-page__list,
  .vacancies-page__detail {
        width: 100%;
    }

    .vacancies-sidebar {
        width: 100%;
        margin: 20px 0 0 0;
    }
}

@media (max-width: 768px) {
    .contacts-page__scheme-description,
  .contacts-page__commercial-description {
        padding: 40px;
    }

    .contacts-page__office {
        width: 100%;
        padding: 40px;
    }

    .contacts-page__office,
  .contacts-page__requisites {
        padding: 40px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .contacts-page__requisites-item {
        font-size: 14px;
    }

    .contacts-page__title {
        font-size: 18px;
    }

    .contacts-page__text {
        font-size: 14px;
    }

    .contacts-page__map {
        height: 500px;
        width: 100%;
    }

    .profile__content {
        margin-top: 20px;
    }

    .faq-page__title {
        font-size: 18px;
    }

    .faq-page__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .faq-page__questions {
        width: 100%;
    }

    .faq-sidebar {
        width: 100%;
        padding: 20px;
        margin: 20px 0 0 0;
        position: static;
        top: auto;
        min-width: 280px;
    }

    .faq-sidebar__title {
        font-size: 14px;
    }

    .faq-sidebar__description {
        font-size: 14px;
    }

    .faq-sidebar__image {
        max-width: 170px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item__title {
        font-size: 14px;
    }

    .faq-item__body {
        font-size: 12px;
    }

    .faq-item__content {
        font-size: 12px;
    }

    .vacancies-page__title {
        font-size: 18px;
    }

    .vacancies-page__content {
        margin-top: 20px;
    }

    .vacancies-sidebar {
        width: 100%;
        padding: 20px;
        margin: 20px 0 0 0;
        position: static;
        top: auto;
        min-width: 280px;
    }

    .vacancies-sidebar__title {
        font-size: 14px;
    }

    .vacancies-sidebar__description {
        font-size: 12px;
    }

    .vacancies-sidebar__image {
        max-width: 170px;
    }

    .vacancies-item {
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
    }

    .vacancies-item__title {
        font-size: 14px;
    }

    .vacancies-item__payment {
        font-size: 14px;
    }

    .vacancies-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .vacancies-detail {
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background-color: unset;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        gap: 20px;
    }

    .vacancies-hot {
        top: 20px;
        right: 20px;
    }

    .order-history {
        padding: 10px;
    }

    .order-headers {
        font-size: 12px;
    }

    .order-headers__item--mobile-hide {
        display: none;
    }

    .order-main {
        font-size: 12px;
    }

    .order-main__status {
        display: none;
    }

    .order-main__sum {
        display: none;
    }

    .order-actions__additional {
        display: none;
    }

    .order-additional__reorder {
        font-size: 12px;
    }

    .order-products__title {
        font-size: 12px;
    }

    .order-products__mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .order-table {
        display: none;
    }

    .order-table-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-bottom: 20px;
        border-bottom: 1px dotted rgb(99, 100, 102);
        margin-bottom: 20px;
    }

    .order-table-row__cell {
        font-size: 12px;
    }

    .order-table-row__cell {
        display: block;
        padding: 0;
        margin-bottom: 10px;
        white-space: normal;
        text-align: left;
    }

    .order-table-row__cell:last-of-type {
        margin-bottom: 0;
    }

    .order-table-row__cell--name {
        margin-left: 10px;
    }

    .order-info__additional {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .order-info__sum {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 5px;
    }

    .order-list__item {
        position: static;
        width: 100%;
    }

    .field-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .docs-content {
        margin-top: 20px;
    }

    .docs-filter__list {
        width: 280px;
    }

    .docs-category__items {
        grid-template-columns: repeat(3, 1fr);
    }

    .docs-item__title {
        font-size: 12px;
    }

    .news__img {
        height: 216px;
    }

    .news-detail {
        margin-top: 20px;
    }

    .news-detail__picture img {
        width: 90%;
    }

    .news-detail__text {
        font-size: 12px;
    }

    .reviews-page__pagination {
        margin-top: 20px;
    }

    .review-card__name {
        font-size: 14px;
    }

    .review-card__title,
  .review-card__position {
        font-size: 12px;
    }

    .review-card__date {
        margin: 15px 0 0 auto;
    }

    .methods-section__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .methods-section__item {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-height: 276px;
    }

    .methods-card__content {
        width: 60%;
    }

    .methods-card__icon {
        padding: 0;
        margin: 0 0 0 70px;
        width: 40%;
    }

    .about {
        padding-top: 20px;
    }

    .about-tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about-tabs__contents {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .compare-product {
        max-width: 230px;
    }

    .characteristic-item {
        max-width: 230px;
    }

    .characteristic-value {
        max-width: 230px;
    }

    .compare .catalog-product__item {
        max-width: 230px;
    }

    .compare__filters .docs-filters__category,
  .compare__filters .docs-filter__list {
        width: 220px;
    }

    .switch__label {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .bx-touch .bx-filter .bx-filter-popup-result {
        line-height: 14px;
        position: fixed !important;
        z-index: 1001;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        margin-top: 0;
        margin-left: 0;
        width: auto;
        height: auto;
        padding: 10px;
        border-radius: 2px;
        border: 1px solid #c6dae7;
        background: rgba(255, 255, 255, 0.9);
    }

    .bx-touch .bx-filter .bx-filter-popup-result br {
        display: none;
    }

    .bx-filter .bx-filter-popup-result .arrow {
        display: none;
    }
}

@media (max-width: 750px) {
    .reviews-page__card {
        height: auto;
    }

    .reviews-page__card:nth-child(odd) {
        width: 100%;
    }

    .reviews-page__card:nth-child(even) {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contacts-page__scheme,
  .contacts-page__commercial {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-height: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .contacts-page__scheme-image,
  .contacts-page__commercial-image {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .contacts-page__scheme-image img,
  .contacts-page__commercial-image img {
        max-width: 260px;
    }

    .contacts-page__scheme-description,
  .contacts-page__commercial-description {
        width: 100%;
        max-width: 100%;
    }

    .contacts-page__scheme-link,
  .contacts-page__commercial-link {
        min-height: 0;
        margin-top: 20px;
    }

    .contacts-page__commercial-button.btn {
        width: 100%;
    }

    .contacts-page__commercial-image {
        display: none;
    }

    .contacts-page__commercial img {
        min-height: 180px;
    }

    .contacts-page__mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .vacancies-content__text {
        font-size: 12px;
    }

    .popup-content {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .news__img {
        height: 280px;
    }
}

@media (max-width: 520px) {
    .reviews-page__card:nth-child(odd) {
        width: 100%;
    }

    .reviews-page__card:nth-child(even) {
        width: 100%;
    }

    .review-card__title {
        margin: 0;
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .review-card__title--opened {
        max-height: 100px;
        opacity: 1;
        margin: 20px 0 5px 0;
    }

    .review-card__text {
        font-size: 12px;
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .review-card__text--opened {
        max-height: 200px;
        opacity: 1;
        margin-bottom: 10px;
    }

    .review-card__date {
        margin-top: 0;
        font-size: 12px;
        display: block;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }

    .review-card__date--opened {
        max-height: 50px;
        opacity: 1;
        margin: auto 0 0 auto;
    }

    .review-card__detail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 500px) {
    .catalog-section__list [data-product-order] {
        border: none !important;
        padding: 0;
        background: unset !important;
    }

    .catalog-section__list [data-product-order]:after {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .faq-sidebar__image {
        max-width: 210px;
    }

    .vacancies-sidebar__image {
        max-width: 210px;
    }

    .vacancies-buttons__respond.btn,
  .vacancies-buttons__detail.btn {
        width: 110px;
        padding: 10px;
    }

    .docs-category__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-page__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .methods {
        margin-top: 20px;
    }

    .methods-section__item {
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-height: 100%;
    }

    .methods-card__content {
        width: 100%;
    }

    .methods-card__icon {
        padding: 40px;
        margin: 20px auto 0 auto;
        width: 100%;
    }

    .about-facts__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .compare-product {
        max-width: 140px;
    }

    .characteristic-item {
        max-width: 140px;
    }

    .characteristic-value {
        max-width: 140px;
    }

    .compare .catalog-product__item {
        max-width: 140px;
    }
}

@media (max-width: 450px) {
    .contacts-page__content {
        margin-top: 20px;
    }

    .contacts-page__scheme-description {
        padding: 20px 20px 0 20px;
    }

    .contacts-page__scheme-description,
  .contacts-page__commercial-description {
        padding: 20px;
    }

    .contacts-page__office {
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
    }

    .contacts-page__office-title {
        margin: 0;
    }

    .contacts-page__office,
  .contacts-page__requisites {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .contacts-page__requisites {
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
    }

    .contacts-page__requisites-title {
        margin: 0;
    }

    .contacts-page__requisites-item {
        font-size: 12px;
    }

    .contacts-page__title {
        font-size: 14px;
    }

    .contacts-page__text {
        font-size: 12px;
    }
}

@media (min-width: 800px) and (max-width: 1199px) {
    .main-trust__slide {
        width: calc(25% - 20px);
        margin-bottom: 20px;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
    .header-mobile__burger:active,
  .header-large__burger:active {
        background: transparent;
    }

    .header-mobile__burger:active:before,
  .header-large__burger:active:before {
        top: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header-mobile__burger:active:after,
  .header-large__burger:active:after {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .bx-filter .bx-filter-section .col-md-4:nth-child(2n+1) {
        clear: both;
    }
}
.catalog-product__title {
    overflow-wrap:break-word;
}
/* End */


/* Start:/local/templates/sprivod/styles.css?1765454696171*/
/*!
DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
*/

/**
Breakpoints:

  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
 */
/* End */
/* /local/templates/sprivod/css/swiper-bundle.css?176103434419584 */
/* /local/templates/sprivod/css/inti-tel-input.css?176457757818854 */
/* /local/templates/sprivod/template_styles.css?1765990503314282 */
/* /local/templates/sprivod/styles.css?1765454696171 */
