@charset "UTF-8";
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --container-width: 1520px;
  --main-outer-width: 1920px;
  --container-padding: 30px;
  --calculated-padding: calc((100% - var(--container-width)) / 2);
  --theme-color-accent: rgba(20, 102, 185, 1);
  --theme-color-accent-80: rgba(20, 102, 185, 0.8);
  --theme-color-grey: #a8a8aa;
  --theme-color-text-common: #3f3f40;
  --theme-border-color: #ececec;
  --theme-animation-duration: 200ms;
  --theme-animation-duration-fast: 100ms;
  --second-family: "Poppins", sans-serif;
  --third-family: "Noah", sans-serif;
}
@media (max-width: 767px) {
  :root {
    --container-padding: 20px;
  }
}
@media (max-width: 575px) {
  :root {
    --container-padding: 15px;
  }
}

:root .os-theme-aw {
  --os-size: 11px;
  --os-padding-perpendicular: 3px;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: none;
  --os-track-bg-hover: none;
  --os-track-bg-active: none;
  --os-track-border: none;
  --os-track-border-hover: none;
  --os-track-border-active: none;
  --os-handle-border-radius: 2.5px;
  --os-handle-bg: rgba(240, 240, 240, 1);
  --os-handle-bg-hover: rgba(240, 240, 240, 1);
  --os-handle-bg-active: rgba(240, 240, 240, 1);
  --os-handle-border: none;
  --os-handle-border-hover: none;
  --os-handle-border-active: none;
  --os-handle-min-size: 33px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 100%;
  --os-handle-perpendicular-size-hover: 100%;
  --os-handle-perpendicular-size-active: 100%;
  --os-handle-interactive-area-offset: 0;
}
:root .os-theme-aw .os-scrollbar-track {
  cursor: pointer;
}

/*
Псевдоэлемент-расширитель для кнопок:
1. Помогает попадать по небольшим кнопкам
2. Помогает отлавливать событие нажатия на кнопку при наличии в ней различных элементов
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

input,
button,
textarea {
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

html,
body {
  height: 100%;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

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

a {
  text-decoration: none;
}

.main-wrapper-outer {
  width: 100%;
  min-height: 100%;
  max-width: var(--main-outer-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
body:not(.mp) .main {
  padding-bottom: clamp(50px, 5vw, 100px);
}

.container {
  padding-left: max(var(--calculated-padding), var(--container-padding));
  padding-right: max(var(--calculated-padding), var(--container-padding));
}
.container__inner {
  width: 100%;
  position: relative;
}

.container.container_extract-l {
  padding-left: 0;
}

.container.container_extract-lp {
  padding-left: var(--container-padding);
}

.container.container_extract-r {
  padding-right: 0;
}

.container.container_extract-rp {
  padding-right: var(--container-padding);
}

.container.container_extract-lr {
  padding-left: 0;
  padding-right: 0;
}

.container.container_extract-lrp {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container.container_blog {
  --calculated-padding: calc((100% - 1195px) / 2);
}

.form-grid1 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px 20px;
}
.form-grid1__row {
  grid-column: span 12;
}
.form-grid1__row_2 {
  grid-column: span 6;
}
.form-grid1__row_4 {
  grid-column: span 3;
}

.grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.block1 {
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  .block1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .block1 {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .block1.block-intro, .block1.block-feedback {
    margin-bottom: 0;
  }
}

.btn {
  --height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  padding: 5px 24px;
  border-radius: calc(var(--height) / 2);
  min-height: var(--height);
  position: relative;
  -webkit-transition: background-color var(--theme-animation-duration);
  transition: background-color var(--theme-animation-duration);
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.btn svg + * {
  margin-left: 12px;
}
.btn span + svg {
  margin-left: 10px;
}
.btn_xsmall {
  font-size: 14px;
  min-height: 38px;
  border-radius: 5px;
}
.btn_small {
  --height: 36px;
  font-size: 14px;
  font-weight: 400;
}
.btn_big {
  --height: 60px;
  text-transform: uppercase;
  padding-left: 40px;
  padding-right: 40px;
}
.btn_wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.btn_primary {
  background-color: var(--theme-color-accent);
  color: #fff;
}
.btn_primary.btn_hollow {
  background: none;
  border: 1.5px var(--theme-color-accent) solid;
  color: var(--theme-color-accent);
}
.btn_primary.btn_hollow:hover {
  background-color: var(--theme-color-accent);
  color: #fff;
}
.btn_primary svg {
  fill: #fff;
}
.btn_primary:not(.btn_hollow):focus-visible, .btn_primary:not(.btn_hollow):hover {
  background-color: var(--theme-color-accent-80);
}
.btn_white {
  background-color: #fff;
  color: inherit;
}
.btn_white.btn_hollow {
  background: none;
  border: 1px #fff solid;
  color: #fff;
}
.btn_white:not(.btn_hollow):hover {
  color: var(--theme-color-accent);
}
.btn_black {
  background-color: var(--theme-color-text-common);
  color: #fff;
}
.btn_black.btn_hollow {
  background: none;
  border: 1px var(--theme-color-text-common) solid;
  color: var(--theme-color-text-common);
}
.btn_grey {
  background-color: #dee0e0;
  color: #fff;
}
.btn_grey.btn_hollow {
  background: none;
  border: 1px #dee0e0 solid;
  color: inherit;
}
.btn_grey:hover:not(:disabled, .btn_hollow), .btn_grey:focus-visible:not(:disabled, .btn_hollow) {
  background-color: var(--theme-color-accent);
}
.btn_grey.btn_hollow:hover:not(:disabled), .btn_grey.btn_hollow:focus-visible:not(:disabled) {
  border-color: var(--theme-color-accent);
  color: var(--theme-color-accent);
}
.btn_grey:disabled {
  opacity: 0.5;
}
.btn_grey svg {
  fill: var(--theme-color-text-common);
}
.btn_grey:hover svg {
  fill: var(--theme-color-accent);
}
.btn_arrow1 {
  text-transform: uppercase;
}
.btn_arrow1 svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: 8px;
}
.btn_arrow1:hover:not(:disabled) svg, .btn_arrow1:focus-visible:not(:disabled) svg {
  fill: var(--theme-color-accent);
}
.btn_circle {
  width: var(--height);
  padding: 0;
}
.btn_social.btn {
  --height: 34px;
  padding: 0;
}
.btn_social.btn svg {
  display: block;
}
.btn:disabled {
  cursor: default;
}
.btn__count {
  position: absolute;
  top: 0;
  right: 0;
  height: 18px;
  min-width: 18px;
  border-radius: 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
  background-color: var(--theme-color-accent);
}
@media (max-width: 768px) {
  .btn {
    --height: 39px;
    font-size: 14px;
  }
  .btn:not(.btn_circle) {
    padding: 5px 20px;
  }
  .btn svg + * {
    margin-left: 8px;
  }
  .btn span + svg {
    margin-left: 8px;
  }
  .btn_big {
    --height: 52px;
    font-size: 14px;
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 500px) {
  .btn {
    --height: 32px;
    font-size: 12px;
  }
  .btn:not(.btn_circle) {
    padding: 3px 15px;
  }
  .btn_arrow1 svg {
    max-height: 15px;
    margin-left: 7px;
  }
  .btn .nomobile {
    display: none;
  }
  .btn_big {
    --height: 44px;
    font-size: 12px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.dropdown {
  position: relative;
}
.dropdown > .btn {
  z-index: 1;
}
.dropdown__dropdown {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 18px;
  padding-top: 36px;
  border: 1px var(--theme-color-accent) solid;
  overflow: hidden;
  display: none;
}
.dropdown__dropdown-inner {
  background-color: #fff;
  padding: 6px 24px 14px 24px;
}
.dropdown__dropdown-inner > *:not(:last-child) {
  margin-bottom: 12px;
}
.dropdown.dropdown_active {
  z-index: 2;
}
.dropdown.dropdown_active .btn {
  border-color: transparent !important;
}
.dropdown.dropdown_active .dropdown__dropdown {
  display: block;
}
.dropdown .socials > * {
  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;
}
.dropdown .socials > *:not(:last-child) {
  margin-bottom: 12px;
}
.dropdown .socials a > span:not(.btn) {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.dropdown .socials .btn {
  --height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.dropdown .socials .btn svg {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.btn-text {
  font-size: 14px;
  color: var(--theme-color-accent);
}

.btn-catalog {
  font-size: 18px;
  font-weight: 400;
}
.btn-catalog svg {
  fill: #fff;
}
.btn-catalog svg + * {
  margin-left: 16px;
}

.btn-burger {
  width: 32px;
  height: 18px;
  position: relative;
}
.btn-burger svg {
  stroke: var(--theme-color-accent);
}
.btn-burger::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

.btn-burger-close {
  width: 32px;
  height: 18px;
  position: relative;
  display: none;
}
.btn-burger-close svg {
  stroke: var(--theme-color-accent);
}
.btn-burger-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

.form-group {
  position: relative;
}
.form-group__error {
  position: absolute;
  right: 5px;
  bottom: 3px;
  font-size: 12px;
  color: #b91414;
}
.form-group_error .field-input1, .form-group_error .field-input2 {
  border-color: #b91414;
}

.form-group1 {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}
.form-group1__placeholder {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #313c41;
  font-size: 14px;
  line-height: 1.25;
  pointer-events: none;
}
.form-group1__placeholder_req::after {
  content: "*";
  color: var(--theme-color-accent);
  margin-left: 3px;
}
.field-input1:not(:-moz-placeholder-shown) + .form-group1__placeholder {
  opacity: 0;
}
.field-input1:not(:-ms-input-placeholder) + .form-group1__placeholder {
  opacity: 0;
}
.field-input1:focus-visible + .form-group1__placeholder, .field-input1:not(:placeholder-shown) + .form-group1__placeholder {
  opacity: 0;
}
textarea.field-input1 + .form-group1__placeholder {
  top: 17px;
  -webkit-transform: none;
          transform: none;
}

.form-group2 {
  position: relative;
}
.form-group2__error {
  position: absolute;
  right: 5px;
  bottom: 3px;
  font-size: 12px;
  color: #b91414;
}
.form-group2__label {
  display: block;
  color: rgba(63, 63, 64, 0.5);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.form-group2__label_req::after {
  content: "*";
  color: #cd1311;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .form-group2__label {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.field-input1 {
  width: 100%;
  height: 52px;
  background: none;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.25;
  border-radius: 10px;
  border: 1px transparent solid;
  color: var(--theme-color-text-common);
}

textarea.field-input1 {
  height: 108px;
  padding-top: 17px;
  resize: none;
}

.field-input2 {
  width: 100%;
  border: 1px #dee0e0 solid;
  border-radius: 10px;
  background: none;
  padding: 12px 20px;
  height: 50px;
  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;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #3f3f40;
}

.checklist {
  font-size: 0;
}
.checklist__item .order-checkbox-text.checked,
.bx-selected:not(.bx-soa-section) .order-checkbox-text {
  border: 1px solid #1466b9!important;
}

.checklist__item:not(:last-child) {
  margin-bottom: 10px;
}
.checklist[data-item-expandable=collapsed] .checklist__item[data-item-expandable-item] {
  display: none;
}

.checkbox {
  position: relative;
  font-size: 0;
}
.checkbox.disabled {
  opacity: 0.3;
  cursor: default;
}
.checkbox.disabled .checkbox__visual {
  cursor: default;
}
.checkbox.disabled + .checkbox-text__label {
  opacity: 0.3;
  cursor: default;
}
.checkbox__input {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.checkbox__visual {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  height: 16px;
  border: 1px solid #dee0e0;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox__visual.checkbox__visual-radio {
	border-radius: 50%;
}

.checkbox__visual svg {
  fill: var(--theme-color-accent);
  opacity: 0;
}
.checkbox__input:checked + .checkbox__visual {
  border-color: var(--theme-color-accent);
}
.checkbox__input:checked + .checkbox__visual svg {
  opacity: 1;
}
.checkbox__input:not(:disabled):focus-visible + .checkbox__visual, .checkbox__input:not(:disabled):hover + .checkbox__visual {
  border-color: var(--theme-color-accent);
}

.radio {
  position: relative;
  font-size: 0;
}
.radio__input {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.radio__visual {
  cursor: pointer;
  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: 20px;
  height: 20px;
  border: 1px var(--theme-color-accent) solid;
  border-radius: 50%;
}
.radio__input:checked + .radio__visual,
.bx-selected:not(.bx-soa-section) .checkbox-text.order-checkbox-text .radio__visual {
  border-width: 6px;
}

.checkbox-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  cursor: pointer;
}
.checkbox-text.checkbox-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-text img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 20px 0px 0px;
}
.checkbox-text img.checkbox-text__icon {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	margin: 0;
}

.checkbox-text__titles {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.checkbox-text__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .checkbox-text__title {
    font-size: 14px;
    line-height: 171%;
  }
}
.checkbox-text__subtitle {
  margin: 15px 0px 0px 0px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(63, 63, 64, 0.6);
}
@media (max-width: 767px) {
  .checkbox-text__subtitle {
    font-size: 12px;
    margin: 5px 0px 0px 0px;
  }
}
.checkbox-text__price {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 0px 10px;
}
@media (max-width: 992px) {
  .checkbox-text__price {
    display: none;
  }
}
.checkbox-text__price-mob {
  display: none;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 171%;
  margin: 5px 0px 0px 0px;
}
@media (max-width: 992px) {
  .checkbox-text__price-mob {
    display: block;
  }
}
.checkbox-text .checkbox,
.checkbox-text .radio {
  margin-right: 10px;
}
.checkbox-text__label {
  width: 100%;
  /* -webkit-box-pack: justify; */
      /* -ms-flex-pack: justify; */
          /* justify-content: space-between; */
  font-weight: 400;
  font-size: 14px;
  /* line-height: 100%; */
  line-height: 16px;
  color: var(--theme-color-text-common);
  min-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}
.checkbox-text__label svg {
	flex: 0 0 auto;
}

.checkbox-text__label a {
  color: var(--theme-color-accent);
}

.checkbox-text:has(.checkbox.disabled) {
  cursor: default;
}

.select {
  display: inline-block;
  position: relative;
  z-index: 100;
}
.select__handle {
  cursor: pointer;
  position: relative;
  height: 44px;
  border-radius: 30px;
  border: 1px solid rgba(30, 30, 30, 0.3);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 50px 5px 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1;
  color: var(--theme-color-text-common);
  -webkit-transition: border-color var(--theme-animation-duration-fast);
  transition: border-color var(--theme-animation-duration-fast);
}
.select__handle:focus-visible {
  outline: none;
  border-color: var(--theme-color-accent);
}
.select__handle:hover {
  border-color: #1e1e1e;
}
.select__chevron {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(0, -35%);
          transform: translate(0, -35%);
}
.select.dropdown-active .select__chevron {
  -webkit-transform: translate(0, -35%) rotate(180deg);
          transform: translate(0, -35%) rotate(180deg);
}
.select.dropdown-active {
  z-index: 101;
}
.select__option {
  padding-top: 10px;
  padding-bottom: 10px;
}
.select__dropdown .ts-dropdown-content {
  margin-top: -10px;
  margin-bottom: -10px;
}
.select__dropdown.dropdown {
  width: 100%;
  min-width: 244px;
  left: 0;
  top: calc(100% + 4px);
  font-size: 14px;
  line-height: 1.2;
  padding: 22px 20px;
}
.select__dropdown.dropdown a {
  color: var(--theme-color-text-common);
}
.select__dropdown.dropdown a:hover {
  color: var(--theme-color-accent);
}
.select__dropdown.dropdown li:not(:last-child) {
  margin-bottom: 20px;
}
.select_active .select__handle {
  border-color: var(--theme-color-accent);
}
.select_active .select__chevron {
  -webkit-transform: translate(0, -35%) rotate(180deg);
          transform: translate(0, -35%) rotate(180deg);
}
.select_1 .select__handle {
  border-radius: 4px;
  padding-right: 40px;
}
.select_1 .select__handle:focus-visible {
  border-color: var(--theme-color-text-common);
}
.select_1 .select__chevron {
  right: 18px;
}
.select_1 .dropdown {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
  border: 1px solid rgba(30, 30, 30, 0.3);
  color: #82879a;
}
.select_wide {
  width: 100%;
}
.select_wide .select__handle {
  width: 100%;
}

.tomselected {
  display: none !important;
}

.ts-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
}
.ts-wrapper_wide {
  display: block;
  width: 100%;
}
.ts-wrapper_wide .ts-control {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ts-wrapper.dropdown-active {
  z-index: 5;
}

.ts-control {
  width: 100%;
  height: 44px;
  border: 1px solid #dee0e0;
  border-radius: 6px;
  background-color: transparent;
  padding: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  outline: none;
}
.ts-control svg {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: var(--theme-color-text-common);
}
.ts-control .item {
  color: var(--theme-color-text-common);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #3f3f40;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}

.ts-wrapper.focus .ts-control {
  border-color: #acacac;
}

.ts-wrapper.disabled {
  background-color: #f5f5f5;
}

.ts-wrapper.disabled .ts-control {
  cursor: default;
}

.ts-wrapper.disabled .ts-control svg {
  opacity: 0.5;
}

.ts-wrapper.dropdown-active .ts-control svg {
  -webkit-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.ts-dropdown {
  border: none;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  border: 1px solid #dee0e0;
  border-radius: 6px;
  min-width: 100%;
  padding: 15px;
  overflow-x: visible;
  overflow-y: auto;
  max-height: 375px;
  background-color: #fff;
}

.ts-dropdown-content {
  margin-top: -10px;
  margin-bottom: -10px;
}

.ts-dropdown .option {
  font-size: 14px;
  line-height: 1.25;
  padding: 10px 0;
  cursor: pointer;
  color: var(--theme-color-text-common);
}
.ts-dropdown .option.selected {
  color: var(--theme-color-accent);
}
.ts-dropdown .option:not([aria-disabled=true]):hover {
  color: var(--theme-color-accent);
}
.ts-dropdown .option[aria-disabled=true] {
  opacity: 0.5;
  cursor: default;
}

.input-group1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 8px;
}
.input-group1__field {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.input-group1__field::-webkit-input-placeholder {
  color: #82879a;
  -webkit-transition: color var(--theme-animation-duration-fast);
  transition: color var(--theme-animation-duration-fast);
}
.input-group1__field::-moz-placeholder {
  color: #82879a;
  -moz-transition: color var(--theme-animation-duration-fast);
  transition: color var(--theme-animation-duration-fast);
}
.input-group1__field:-ms-input-placeholder {
  color: #82879a;
  -ms-transition: color var(--theme-animation-duration-fast);
  transition: color var(--theme-animation-duration-fast);
}
.input-group1__field::-ms-input-placeholder {
  color: #82879a;
  -ms-transition: color var(--theme-animation-duration-fast);
  transition: color var(--theme-animation-duration-fast);
}
.input-group1__field::placeholder {
  color: #82879a;
  -webkit-transition: color var(--theme-animation-duration-fast);
  transition: color var(--theme-animation-duration-fast);
}
.input-group1__field:focus::-webkit-input-placeholder {
  color: transparent;
}
.input-group1__field:focus::-moz-placeholder {
  color: transparent;
}
.input-group1__field:focus:-ms-input-placeholder {
  color: transparent;
}
.input-group1__field:focus::-ms-input-placeholder {
  color: transparent;
}
.input-group1__field:focus::placeholder {
  color: transparent;
}
.input-group1__btn {
  width: 156px;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.input-group1__btn-arr {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.input-group1__btn-arr svg {
  width: 16px;
  height: 14px;
  fill: #fff;
}

.pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 12px;
  margin: 50px 0px 0px 0px;
}
@media (max-width: 767px) {
  .pagination {
    margin: 30px 0px 0px 0px;
    gap: 0px 0px;
  }
}
.pagination__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--theme-color-text-common);
  outline: none;
  -webkit-transition: background-color var(--theme-animation-duration-fast) 100ms, color var(--theme-animation-duration-fast);
  transition: background-color var(--theme-animation-duration-fast) 100ms, color var(--theme-animation-duration-fast);
}
@media (max-width: 767px) {
  .pagination__item {
    height: 32px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    font-size: 12px;
  }
}
.pagination__item.pagination__item_nav-prev {
  margin: 0px 14px 0px 0px;
}
@media (max-width: 767px) {
  .pagination__item.pagination__item_nav-prev {
    margin: 0px 10px 0px 0px;
  }
}
.pagination__item.pagination__item_nav-next {
  margin: 0px 0px 0px 14px;
}
@media (max-width: 767px) {
  .pagination__item.pagination__item_nav-next {
    margin: 0px 0px 0px 10px;
  }
}
.pagination__item:not(.pagination__item_active, .pagination__item_disabled):hover, .pagination__item:not(.pagination__item_active, .pagination__item_disabled):focus-visible {
  color: var(--theme-color-accent);
  background-color: #f4f7fb;
}
.pagination__item:not(.pagination__item_active, .pagination__item_disabled):hover svg, .pagination__item:not(.pagination__item_active, .pagination__item_disabled):focus-visible svg {
  fill: var(--theme-color-accent);
}
.pagination__item_active {
  background-color: var(--theme-color-accent);
  color: #fff;
}
.pagination__item_nav {
  background-color: #f7f7f7;
  border-radius: 24px;
  width: 52px;
  height: 40px;
}
@media (max-width: 767px) {
  .pagination__item_nav {
    width: 40px;
    height: 32px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
}
.pagination__item_nav svg {
  fill: #3f3f40;
}
@media (max-width: 767px) {
  .pagination__item_nav svg {
    width: 14px;
    height: 16px;
  }
}
.pagination__item_nav-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pagination__item_ellipsis {
  pointer-events: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
}
.pagination__item_disabled svg {
  fill: #82879a;
}

.expandable [data-expandable-handle] {
  cursor: pointer;
}
.expandable [data-expandable-handle]:hover .expandable__label {
  color: var(--theme-color-accent);
}
.expandable [data-expandable-handle]:hover .expandable__chevron {
  fill: var(--theme-color-accent);
}
.expandable__top {
  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;
  gap: 0 20px;
  margin: 0;
  -webkit-transition: 250ms margin ease;
  transition: 250ms margin ease;
}
.expandable__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-color-text-common);
  -webkit-transition: color var(--theme-animation-duration-fast);
  transition: color var(--theme-animation-duration-fast);
}
.expandable__chevron {
  display: block;
  width: 8px;
  height: 13px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: 1px;
  right: 5.27px;
  -webkit-transition: fill var(--theme-animation-duration-fast);
  transition: fill var(--theme-animation-duration-fast);
}
.expandable__bottom {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  -webkit-transition: grid-template-rows var(--theme-animation-duration), opacity var(--theme-animation-duration);
  transition: grid-template-rows var(--theme-animation-duration), opacity var(--theme-animation-duration);
  transition: grid-template-rows var(--theme-animation-duration), opacity var(--theme-animation-duration), -ms-grid-rows var(--theme-animation-duration);
}
.expandable__bottom-inner {
  overflow: hidden;
}
.expandable[data-expandable=expanded] .expandable__bottom {
  grid-template-rows: 1fr;
  opacity: 1;
}
.expandable[data-expandable=expanded] .expandable__chevron {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.expandable[data-expandable=expanded] .expandable__top {
  margin: 0 0 25px 0;
}

.stepcounter {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 136px;
          flex: 0 0 136px;
  width: 136px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767px) {
  .stepcounter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 102px;
            flex: 0 0 102px;
    width: 102px;
    height: 38px;
  }
}
.stepcounter__btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
  border: 1px solid #dee0e0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
@media (max-width: 767px) {
  .stepcounter__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 38px;
            flex: 0 0 38px;
    height: 38px;
  }
}
.stepcounter__btn svg {
  fill: var(--theme-color-text-common);
}
.stepcounter__btn:hover {
  border: 1px solid var(--theme-color-accent);
}
.stepcounter__btn[data-stepcounter="-"] svg {
  width: 16px;
  height: 2px;
}
@media (max-width: 767px) {
  .stepcounter__btn[data-stepcounter="-"] svg {
    width: 12px;
  }
}
.stepcounter__btn[data-stepcounter="+"] svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .stepcounter__btn[data-stepcounter="+"] svg {
    width: 12px;
    height: 12px;
  }
}
.stepcounter__btn:disabled {
  cursor: default;
}
.stepcounter__btn:disabled svg {
  fill: #82879a;
}
.stepcounter__btn:focus-visible {
  position: relative;
  z-index: 1;
  outline: 1px var(--theme-color-accent) solid;
}
.stepcounter__input {
  width: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--theme-color-text-common);
}
@media (max-width: 767px) {
  .stepcounter__input {
    width: 26px;
  }
}
.stepcounter__input::-webkit-outer-spin-button, .stepcounter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.stepcounter_accent {
  border: none;
  height: 48px;
  background-color: transparent;
}
@media (max-width: 767px) {
  .stepcounter_accent {
    height: 38px;
  }
}
.stepcounter_accent .stepcounter__input {
  width: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--theme-color-text-common);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 767px) {
  .stepcounter_accent .stepcounter__input {
    width: 26px;
  }
}
.stepcounter_accent .stepcounter__btn {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.stepcounter_accent .stepcounter__btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.form-feedback .btn_big {
  --height: 62px;
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .form-feedback .btn_big {
    --height: 52px;
    font-size: 16px;
  }
  .form-feedback .textblock1.textblock1_small {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .form-feedback .textblock1.textblock1_small {
    font-size: 10px;
  }
  .form-feedback .btn_big {
    --height: 50px;
    font-size: 14px;
  }
}

.header {
  border-bottom: 1px var(--theme-border-color) solid;
  position: relative;
  top: 0;
  background-color: #fff;
  z-index: 50;
  padding-top: 16px;
  padding-bottom: 16px;
}
.filter-open .header {
  z-index: 40;
}
.header__grid {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr;
}
.header__logo1 a {
  display: block;
}
.header__logo1 img {
  display: block;
  max-width: 100%;
}
.header__logo2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 34px;
}
.header__logo3 {
  display: block;
  width: 100%;
  max-width: 149px;
}
.header__top {
  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;
}
.header__bottom {
  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-left: 55px;
  position: relative;
}
.header__right {
  position: relative;
}
.header__search {
  position: absolute;
  /* right: 116px; */
  right: 58px;
  bottom: 0;
}
.header__cart {
  position: absolute;
  right: 0;
  bottom: 0;
}
.header__inner {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.header__buttons1 {
  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;
}
.header__buttons1 .btn {
  font-size: 14px;
  font-weight: 400;
}
.header__buttons1 .btn_call {
  border: 1px solid var(--theme-color-accent);
}
@media (max-width: 1300px) {
  .header__buttons1 .btn_call {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.header__burger {
  display: none;
}
.header__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  margin: 0px 30px 0px 0px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 1400px) {
  .header__email {
    margin: 0px 10px 0px 0px;
  }
}
@media (max-width: 1300px) {
  .header__email {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0px 0px 20px 0px;
  }
}
.header__email svg {
  margin: 2px 7px 0px 0px;
  fill: var(--theme-color-accent);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__email:hover {
  color: var(--theme-color-accent);
}
.header__phones {
  margin: 0px 26px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1400px) {
  .header__phones {
    margin: 0px 10px 0px 0px;
  }
}
@media (max-width: 1300px) {
  .header__phones {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0px 0px 23px 0px;
  }
}
.header__phones svg {
  fill: var(--theme-color-accent);
  margin: 0px 7px 0px 0px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__phones:hover .header__phone {
  color: var(--theme-color-accent);
}
.header__phone {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__phone span {
  position: absolute;
  top: 100%;
  left: 0;
  font-weight: 400;
  font-size: 12px;
  color: #9f9fa0;
  display: block;
  margin: 4px 0px 0px 0px;
}
@media (max-width: 1300px) {
  .header__phone span {
    top: 0;
    position: relative;
  }
}
.header__login {
  /* margin-right: 68px; */
  margin-right: 126px;
}
.header__favorites {
  margin-right: 58px;
}
@media (max-width: 1460px) {
  .header__bottom {
    padding-left: 0;
  }
  .header__nav2 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    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;
  }
}
@media (max-width: 1300px) {
  .header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .header__nav2, .header__nav1 {
    display: block;
    width: 100%;
  }
  .header__buttons1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 25px 0px 0px 0px;
  }
  .header__buttons1 .dropdown > .btn:not(.header__favorites) {
    width: 100%;
  }
  .header__buttons1 > *:not(.header__favorites) {
    width: 100%;
  }
  .header__top, .header__bottom {
    -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;
  }
  .header__top {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__bottom {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__bottom .header__buttons1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    padding-bottom: 16px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__bottom .header__buttons1 .btn {
    --height: 38px;
  }
  .header__bottom .header__buttons1::after {
    content: "";
    height: 1px;
    border-bottom: 1px #dee0e0 solid;
    position: absolute;
    left: calc(-1 * var(--container-padding));
    width: calc(100% + var(--container-padding) + var(--container-padding));
    bottom: 0;
  }
  .header__bottom .header__buttons1 .header__favorites {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 0 0 15px;
  }
  .header__bottom .header__buttons1 .header__favorites svg {
    width: 19px;
  }
  .header__bottom .header__buttons1 .header__login {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0;
  }
  .header__bottom .header__nav2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 22px 0 27px 0;
  }
  .header__burger {
    display: block;
  }
  .header__search {
    position: relative;
    right: 0;
  }
  .header__cart {
    position: relative;
  }
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__right > *:not(.header__inner, .header__burger) {
    margin-left: 10px;
  }
  .header__right > .header__burger {
    margin-left: 18px;
  }
  .header__inner {
    position: absolute;
    background-color: #fff;
    right: calc(-1 * var(--container-padding));
    top: calc(100% + 13px);
    width: calc(270px + var(--container-padding) + var(--container-padding));
    padding: 15px var(--container-padding) var(--container-padding) var(--container-padding);
    border-bottom-left-radius: 20px;
    display: none;
  }
  .header__inner.header__inner_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo1 {
    width: 80px;
  }
  .header__logo2 {
    padding-left: 20px;
  }
  .header__logo3 {
    max-width: 120px;
  }
  .header .btn-catalog {
    --height: 40px;
    padding-left: 10px;
    padding-right: 15px;
    font-size: 16px;
  }
  .header .btn-catalog svg {
    width: 22px;
    display: block;
  }
  .header .btn-catalog span {
    margin-left: 10px;
  }
  .header .dropdown__dropdown {
    top: unset;
    bottom: 0;
    padding-top: 6px;
    padding-bottom: 26px;
  }
}
@media (max-width: 900px) {
  .header .header__search > .btn {
    --height: 38px;
  }
  .header .header__search > .btn svg {
    width: 14px;
  }
  .header .header__search .header-search__inner .btn {
    --height: 32px;
    top: 3px;
    right: 3px;
  }
  .header .header__search .header-search__inner .btn svg {
    width: 14px;
  }
  .header .header__cart {
    --height: 38px;
  }
  .header .header__cart svg {
    width: 16px;
  }
  .header .header__cart .btn__count {
    top: -3px;
    right: -3px;
  }
}
@media (max-width: 768px) {
  .header__logo1 {
    width: 60px;
  }
  .header__logo2 {
    padding-left: 18px;
  }
  .header__logo3 {
    max-width: 82px;
  }
  .header .btn-catalog {
    --height: 27px;
    padding-left: 7px;
    padding-right: 10px;
    font-size: 9px;
  }
  .header .btn-catalog svg {
    width: 9px;
    display: block;
  }
  .header .btn-catalog span {
    margin-left: 6px;
  }
}
@media (max-width: 500px) {
  .header.header_search-active .header__logo1,
  .header.header_search-active .header__logo2 {
    opacity: 0;
  }
}
@media (max-width: 400px) {
  .header.header_search-active .header__cart {
    opacity: 0;
  }
  .header.header_search-active .btn-burger-close[data-action=hideMenuMobile],
  .header.header_search-active .btn-burger {
    display: none;
  }
  .header.header_search-active .btn-burger-close[data-action=hideSearch] {
    display: inline-block;
  }
}

.menu1 {
  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;
  margin: 0 -15px;
}
.menu1 li {
  margin: 0 15px;
}
.menu1 a {
  font-size: 14px;
}
.menu1 a:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 1460px) {
  .menu1 {
    margin: 0 -7px;
  }
  .menu1 > li {
    margin: 0 7px;
  }
}
@media (max-width: 1360px) {
  .menu1 a {
    font-size: 12px;
  }
}
@media (max-width: 1300px) {
  .menu1 {
    display: block;
    margin: 0 0 28px 0;
    padding-top: 22px;
    border-top: 1px #dee0e0 solid;
  }
  .menu1 li {
    margin: 0;
  }
  .menu1 li:not(:last-child) {
    margin-bottom: 14.4px;
  }
  .menu1 a {
    font-size: 14px;
  }
}

.menu2 {
  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;
  margin: 0 -15px;
}
.menu2 > li {
  margin: 0 15px;
  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;
  position: relative;
  min-height: 48px;
}
.menu2 > li > a {
  font-size: 16px;
  text-transform: uppercase;
}
.menu2 > li.menu2__sub::after {
  content: "";
  margin-left: 8px;
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.862 0.862305L11.8048 1.80511L6.00005 7.60991L0.195312 1.80511L1.13812 0.862305L6.00005 5.72423L10.862 0.862305Z' fill='%233F3F40'/%3E%3C/svg%3E%0A");
}
.menu2 > li:hover > .menu2__submenu {
  display: block;
  visibility: visible;
}
.menu2 > li.menu2__sub:hover::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.menu2__submenu {
  position: absolute;
  top: 100%;
  left: -40px;
  visibility: hidden;
  display: none;
  padding-top: 17px;
}
.menu2__submenu ul {
  padding: 30px 40px;
  background-color: #fff;
}
.menu2__submenu ul > li {
  white-space: nowrap;
  position: relative;
  padding-right: 49px;
}
.menu2__submenu ul > li:not(:last-child) {
  margin-bottom: 20px;
}
.menu2__submenu ul > li > a {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}
.menu2__submenu ul > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 19px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.0498 10.0336H0V7.96635H15.0498L8.55674 1.46178L10.0159 0L19 8.99999L10.0159 18L8.55674 16.5382L15.0498 10.0336Z' fill='%233F3F40'/%3E%3C/svg%3E%0A");
}
.menu2__submenu ul > li > a:hover {
  color: var(--theme-color-accent);
}
.menu2__submenu ul > li > a:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.0498 10.0336H0V7.96635H15.0498L8.55674 1.46178L10.0159 0L19 8.99999L10.0159 18L8.55674 16.5382L15.0498 10.0336Z' fill='%231466B9'/%3E%3C/svg%3E%0A");
}
@media (max-width: 1460px) {
  .menu2 {
    margin: 0 -7px;
  }
  .menu2 > li {
    margin: 0 7px;
  }
}
@media (max-width: 1360px) {
  .menu2 > li > a {
    font-size: 14px;
  }
}
@media (max-width: 1300px) {
  .menu2 {
    display: block;
    margin: 0;
    width: 100%;
  }
  .menu2 > li {
    margin: 0;
    min-height: 0;
    width: 100%;
    display: block;
  }
  .menu2 > li:not(:last-child) {
    margin-bottom: 18px;
  }
  .menu2 > li.menu2__sub {
    padding-right: 20px;
  }
  .menu2 > li.menu2__sub::after {
    margin: 0;
    position: absolute;
    right: 0;
    top: 6px;
  }
  .menu2 > li > a {
    font-size: 14px;
  }
  .menu2__submenu {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    padding-top: 0;
  }
  .menu2__submenu ul {
    padding: 18px 0 0 0;
  }
  .menu2__submenu ul > li {
    white-space: normal;
    position: relative;
    padding-right: 0;
  }
  .menu2__submenu ul > li:not(:last-child) {
    margin-bottom: 17px;
  }
  .menu2__submenu ul > li > a {
    font-size: 14px;
    font-weight: 600;
  }
  .menu2__submenu ul > li > a::after {
    display: none;
  }
}

.header-search__inner {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity var(--theme-animation-duration-fast), left var(--theme-animation-duration);
  transition: opacity var(--theme-animation-duration-fast), left var(--theme-animation-duration);
}
.header-search__inner form {
  height: 100%;
  width: 100%;
}
.header-search__inner .btn {
  --height: 38px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.header-search__input {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px #dee0e0 solid;
  border-radius: 24px;
  font-size: 14px;
  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: 5px 30px 5px 20px;
  color: var(--theme-color-text-common);
}
.header-search__input:focus-visible::-webkit-input-placeholder {
  color: transparent;
}
.header-search__input:focus-visible::-moz-placeholder {
  color: transparent;
}
.header-search__input:focus-visible:-ms-input-placeholder {
  color: transparent;
}
.header-search__input:focus-visible::-ms-input-placeholder {
  color: transparent;
}
.header-search__input:focus-visible::placeholder {
  color: transparent;
}
.header-search__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  background-color: #fff;
  border-radius: 24px;
  border: 1px #dee0e0 solid;
  width: 100%;
  padding: 20px 25px;
  display: none;
}
.header-search__dropdown.header-search__dropdown_active {
  display: block;
}
.header-search__nofound {
  font-size: 14px;
}
.header-search__results {
  font-size: 14px;
  line-height: 1.5;
}
.header-search__results li:not(:last-child) {
  margin-bottom: 10px;
}
.header-search__results a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-search__results a img {
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header-search__results a:hover {
  color: var(--theme-color-accent);
}
.header-search.header-search_active {
  z-index: 1;
}
.header-search.header-search_active .header-search__inner {
  left: -992px;
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1580px) {
  .header-search.header-search_active .header-search__inner {
    left: calc(-1 * (100vw - 588px));
  }
}
@media (max-width: 1300px) {
  .header-search.header-search_active .header-search__inner {
    left: calc(-1 * (100vw - 480px));
  }
}
@media (max-width: 768px) {
  .header-search.header-search_active .header-search__inner {
    left: calc(-1 * (100vw - 350px));
  }
}
@media (max-width: 575px) {
  .header-search.header-search_active .header-search__inner {
    left: calc(-1 * (100vw - 233px));
  }
}
@media (max-width: 500px) {
  .header-search.header-search_active .header-search__inner {
    left: calc(-1 * (100vw - 165px));
  }
}
@media (max-width: 400px) {
  .header-search.header-search_active .header-search__inner {
    right: -58px;
  }
}

.header__products.active .menu-block {
  left: 0;
}
.header__products .menu-block {
  border: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 555px;
  height: 100%;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 50;
  border-radius: 0px;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header__products .menu-block::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .header__products .menu-block {
    width: 100%;
  }
}
.header__products .menu-block__body {
  display: block;
  padding: 0px 30px 30px 30px;
  position: relative;
  top: 0;
  border: none;
}
.header__products .menu-block__body a svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 992px) {
  .header__products .menu-block__body a svg {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.header__products .menu-block__body a._spoller-active svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 992px) {
  .header__products .menu-block__body a._spoller-active svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media (max-width: 992px) {
  .header__products .menu-block__body {
    padding: 20px 15px 20px 15px;
  }
}
.header__products .menu-block__items {
  position: relative;
  left: 0;
  top: 0;
  border: none;
  width: 100%;
  padding: 5px 0px 30px 0px;
}
@media (max-width: 992px) {
  .header__products .menu-block__items {
    padding: 0px 0px 30px 15px;
  }
}
.header__products .menu-block__items ul {
  gap: 20px 0px;
}
@media (max-width: 992px) {
  .header__products .menu-block__items ul {
    gap: 16px 0px;
  }
}
.header__products .menu-block__subitems {
  position: relative;
  left: 0;
  top: 0;
  border: none;
  width: 100%;
  padding: 20px 20px 0px 30px;
}
@media (max-width: 992px) {
  .header__products .menu-block__subitems {
    padding: 15px 0px 5px 0px;
  }
}
.header__products .menu-block__subitems ul {
  gap: 16px 0px;
}
.header__products .menu-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: none;
  padding: 15px 15px 20px 15px;
}
.header__products .menu-block__title span {
  display: none;
}
@media (max-width: 992px) {
  .header__products .menu-block__title span {
    display: block;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    text-transform: uppercase;
  }
}
@media (max-width: 992px) {
  .header__products .menu-block__title {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #dee0e0;
  }
}
.header__products .menu-block__item {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid #dee0e0;
}
.header__products .menu-block__item:last-child {
  border-bottom: none;
}
.header__products .menu-block__item:first-child .menu-block__link {
  padding: 0px 0px 15px 0px;
}
.header__products .menu-block__item:last-child .menu-block__link {
  padding: 15px 0px 0px 0px;
}
.header__products .menu-block__item .menu-block__link {
  padding: 15px 0px;
}
.header__products .menu-block__sublink {
  padding: 0px 0px 0px 0px;
}

body {
  color: var(--theme-color-text-common);
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

body.noscroll {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
}

fieldset,
fieldset legend {
  margin: 0;
  border: none;
  padding: 0;
}

button {
  cursor: pointer;
}

a {
  outline: none;
  color: currentcolor;
}

.text-center {
  text-align: center;
}

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

.v-h {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.h2-cols {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
}
.h2-cols .title2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 20px;
  min-height: 60px;
  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;
}
@media (max-width: 767px) {
  .h2-cols .title2 {
    min-height: 50px;
  }
}

.title1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.title1::first-letter {
  /*color: var(--theme-color-accent);*/
}
@media (max-width: 1100px) {
  .title1 {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  .title1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title1 {
    font-size: 26px;
  }
}
@media (max-width: 640px) {
  .title1 {
    font-size: 25px;
  }
}

.title2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.title2::first-letter {
  /* color: var(--theme-color-accent); */
}
@media (max-width: 1100px) {
  .title2 {
    font-size: 30px;
  }
}
@media (max-width: 900px) {
  .title2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title2 {
    font-size: 26px;
  }
}
@media (max-width: 640px) {
  .title2 {
    font-size: 25px;
  }
}

.heading-complex {
  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;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.heading-complex__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.heading-complex__right > *:last-child {
  margin-left: 30px;
}
.heading-complex .title2 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .heading-complex {
    margin-bottom: 28px;
  }
}
@media (max-width: 500px) {
  .heading-complex {
    margin-bottom: 17px;
  }
}

.heading-letters .title1::first-letter {
  color: var(--theme-color-text-common);
}
.heading-letters .title2::first-letter {
  color: var(--theme-color-text-common);
}

.spinner {
  display: inline-block;
}
.spinner svg {
  width: 26px;
  height: 22px;
  fill: var(--theme-color-text-common);
}
.spinner.spinner_active svg {
  -webkit-transform-origin: 15px 11px;
          transform-origin: 15px 11px;
  -webkit-animation: spinner-rotation 750ms infinite linear;
          animation: spinner-rotation 750ms infinite linear;
}
@-webkit-keyframes spinner-rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes spinner-rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

.btn-load {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: inherit;
  text-transform: uppercase;
  border-radius: 4px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
.btn-load svg {
  fill: currentcolor;
}
.btn-load:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .btn-load {
    font-size: 12px;
  }
}

.nav-bottom {
  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;
  margin: 50px 0px 0px 0px;
}
@media (max-width: 767px) {
  .nav-bottom {
    margin: 30px 0px 0px 0px;
  }
}

.textblock1 {
  font-size: 16px;
  line-height: 1.5;
}
.textblock1 h2,
.textblock1 h3,
.textblock1 h4,
.textblock1 h5,
.textblock1 h6 {
  text-transform: uppercase;
  font-size: inherit;
  margin-bottom: 1.5em;
}
.textblock1 p,
.textblock1 ul,
.textblock1 ol,
.textblock1 img {
  margin-bottom: 1.5em;
}
.textblock1 a {
  color: var(--theme-color-accent);
  text-decoration: underline;
}
.textblock1 img {
  max-width: 100%;
}
.textblock1 p > span {
  color: var(--theme-color-accent);
}
.textblock1 > *:last-child {
  margin-bottom: 0;
}
.textblock1_small {
  font-size: 14px;
}
@media (max-width: 575px) {
  .textblock1 {
    font-size: 14px;
  }
  .textblock1 h2,
  .textblock1 h3,
  .textblock1 h4,
  .textblock1 h5,
  .textblock1 h6 {
    margin-bottom: 1.25em;
  }
  .textblock1 p,
  .textblock1 ul,
  .textblock1 ol,
  .textblock1 img {
    margin-bottom: 1.25em;
  }
}

.video {
  position: relative;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .video__play {
    width: 54px;
    height: 54px;
  }
}

.main-wrapper-outer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 49;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity var(--theme-animation-duration);
  transition: opacity var(--theme-animation-duration);
}

.main-wrapper-outer_faded::after {
  pointer-events: all;
  opacity: 1;
}

.phone-item {
  display: block;
  text-decoration: none;
}
.phone-item__label1 {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(63, 63, 64, 0.5);
  margin-bottom: 2px;
}
.phone-item__label2 {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #3f3f40;
}

.notifications-stack {
  position: fixed;
  top: 10px;
  right: var(--calculated-padding);
  z-index: 55;
}
.notifications-stack > * {
  margin-bottom: 10px;
}

.card-document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 24px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.card-document:hover {
  background-color: var(--theme-border-color);
}
@media (max-width: 480px) {
  .card-document {
    padding: 24px 20px 24px 15px;
    width: 100%;
  }
}
.card-document svg {
  fill: var(--theme-color-accent);
}
.card-document__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0px 30px 0px 24px;
}
@media (max-width: 767px) {
  .card-document__desc {
    margin: 0px 16px 0px 15px;
  }
}
.card-document__desc span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(63, 63, 64, 0.5);
}
@media (max-width: 480px) {
  .card-document__desc span {
    font-size: 12px;
  }
}
.card-document__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 8px 0px;
}
@media (max-width: 480px) {
  .card-document__text {
    font-size: 14px;
    margin: 0px 0px 11px 0px;
  }
}

.back {
  margin: 0px 0px 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 114%;
  text-transform: uppercase;
  color: var(--theme-color-accent);
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.back svg {
  fill: var(--theme-color-accent);
  margin: 0px 8px 0px 0px;
  width: 18px;
  height: 17px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 767px) {
  .back svg {
    width: 15px;
    height: 15px;
  }
}
.back:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .back {
    font-size: 14px;
    margin: 0px 0px 20px 0px;
  }
}

.descr > *:last-child {
  margin: 0px 0px 0px 0px;
}
.descr h2 {
  margin: 0px 0px 16px 0px;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
}
@media (max-width: 767px) {
  .descr h2 {
    font-size: 20px;
    margin: 0px 0px 20px 0px;
  }
}
.descr h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin: 0px 0px 16px 0px;
}
@media (max-width: 767px) {
  .descr h3 {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
  }
}
.descr h4 {
  text-wrap: auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 16px 0px;
}
.descr p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 30px 0px;
}
.descr p.italic {
  font-style: italic;
  margin: 0px 0px 24px 0px;
}
.descr p.hl {
  color: var(--theme-color-accent);
}
.descr p.strong {
  font-weight: 600;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 767px) {
  .descr p {
    font-size: 14px;
    margin: 0px 0px 20px 0px;
  }
}
.descr blockquote {
  position: relative;
  padding-left: 16px;
  margin-left: 0;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .descr blockquote {
    margin: 0px 0px 20px 0px;
  }
}
.descr blockquote p {
  font-size: 18px;
}
.descr blockquote p:last-child {
  margin: 0px 0px 0px 0px;
}
@media (max-width: 767px) {
  .descr blockquote p {
    font-size: 16px;
    margin: 0px 0px 20px 0px;
  }
}
.descr blockquote::before {
  content: "";
  border-radius: 10px;
  background-color: var(--theme-color-accent);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}
.descr ul {
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .descr ul {
    margin: 0px 0px 20px 0px;
  }
}
.descr ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 16px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.descr ul li:last-child {
  margin: 0px 0px 0px 0px;
}
.descr ul li.descr-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  border-radius: 50%;
  background-color: var(--theme-color-accent);
  margin: 9px 11px 0px 0px;
}
@media (max-width: 767px) {
  .descr ul li.descr-circle::before {
    margin: 6px 11px 0px 0px;
  }
}
@media (max-width: 767px) {
  .descr ul li {
    font-size: 14px;
  }
}

.btn-iconed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--theme-color-accent);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.btn-iconed svg {
  fill: currentColor;
  margin: 0px 12px 0px 0px;
}
.btn-iconed:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .btn-iconed {
    display: none;
  }
}

.stock {
  font-weight: 400;
  font-size: 16px;
  line-height: 81%;
  color: #27ae60;
}
.stock.yellow {
  color: #cdae00;
}
@media (max-width: 767px) {
  .stock {
    font-size: 12px;
    line-height: 108%;
  }
}

.menu-block {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 345px;
          flex: 0 1 345px;
  border: 1px solid #dee0e0;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .menu-block:hover {
    border-radius: 10px 0px 0px 10px;
  }
}
@media (max-width: 992px) {
  .menu-block {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    border: none;
  }
  .menu-block.active .menu-block__title svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .menu-block.active .menu-block__body {
    display: block;
  }
}
@media (min-width: 992px) {
  .menu-block.hover .menu-block__items {
    display: none;
  }
  .menu-block.hover .menu-block__subitems {
    display: none;
  }
  .menu-block.hover .menu-block__item:hover .menu-block__link {
    color: var(--theme-color-accent);
  }
  .menu-block.hover .menu-block__item:hover > .menu-block__items {
    display: block;
  }
  .menu-block.hover .menu-block__subitem:hover > .menu-block__subitems {
    display: block;
  }
  .menu-block.hover .menu-block__subitem:hover .menu-block__sublink {
    color: var(--theme-color-accent);
  }
}
.menu-block__title {
  border: 1px solid #dee0e0;
  border-radius: 10px;
  padding: 15px;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}
.menu-block__title svg {
  fill: currentColor;
}
@media (max-width: 992px) {
  .menu-block__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .menu-block__title {
    font-size: 14px;
  }
}
.menu-block__close {
  cursor: pointer;
}
@media (min-width: 992px) {
  .menu-block__close {
    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: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f7f7f7;
  }
}
@media (max-width: 992px) {
  .menu-block__close svg {
    width: 20px;
    height: 20px;
    fill: rgba(130, 135, 154, 0.5);
  }
}
.menu-block__body {
  padding: 0px 0px 0px 0px;
}
@media (max-width: 992px) {
  .menu-block__body {
    display: none;
    position: absolute;
    top: 102%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    border: 1px solid #dee0e0;
    border-radius: 10px;
    padding: 20px 15px;
    z-index: 20;
  }
}
.menu-block__body a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.menu-block__body a span span {
	color: #9f9fa0;
}
.menu-block__body a svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9px;
          flex: 0 0 9px;
  fill: currentColor;
  margin: 0px 0px 0px 30px;
}
.menu-block__body a:hover {
  color: var(--theme-color-accent);
}
.menu-block__body a._spoller-active {
  color: var(--theme-color-accent);
}
.menu-block__body a._spoller-active svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 767px) {
  .menu-block__body a {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .menu-block__item {
    position: relative;
  }
  .menu-block__item:first-child .menu-block__link {
    padding: 30px 30px 8px 30px;
  }
  .menu-block__item:last-child .menu-block__link {
    padding: 8px 30px 30px 30px;
  }
}
@media (max-width: 992px) {
  .menu-block__item {
    padding: 0px 0px 16px 0px;
  }
  .menu-block__item:last-child {
    padding: 0px 0px 0px 0px;
  }
}
.menu-block__link {
  padding: 8px 30px;
}
@media (max-width: 992px) {
  .menu-block__link {
    padding: 0px 0px 0px 0px;
  }
}
.menu-block__items ul {
  display: grid;
  gap: 16px 0px;
}
@media (min-width: 992px) {
  .menu-block__items {
    position: absolute;
    left: 100%;
    height: auto;
    top: 0;
    width: 345px;
    padding: 30px 0px;
    background: #fff;
    border: 1px solid #dee0e0;
    z-index: 40;
  }
}
@media (max-width: 992px) {
  .menu-block__items {
    padding: 15px 0px 14px 15px;
  }
}
.menu-block__sublink {
  padding: 0px 30px;
}
@media (max-width: 992px) {
  .menu-block__sublink {
    padding: 0px 0px 0px 0px;
  }
}
@media (min-width: 992px) {
  .menu-block__subitems {
    position: absolute;
    left: 100%;
    height: auto;
    top: 0;
    width: 345px;
    padding: 30px;
    background: #fff;
    border: 1px solid #dee0e0;
    z-index: 40;
  }
}
@media (max-width: 992px) {
  .menu-block__subitems {
    padding: 15px 0px 4px 0px;
  }
}

.breadcrumbs {
  position: relative;
  margin: 30px 0px 40px 0px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin: 17px 0px 20px 0px;
  }
}
.breadcrumbs__list {
  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;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.breadcrumbs__item {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .breadcrumbs__item {
    font-size: 10px;
    color: var(--theme-color-text-common);
  }
  .breadcrumbs__item:not(:nth-last-child(2)) {
    display: none;
  }
  .breadcrumbs__item:nth-last-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 12px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: none;
}
@media (min-width: 767px) {
  .breadcrumbs__item:not(:last-child)::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 12px;
    width: 16px;
    height: 1px;
    background: #3f3f40;
  }
}
.breadcrumbs__item:not(:last-child) a::before {
  content: "";
  display: none;
  width: 4px;
  height: 7px;
  margin: 0px 7px 0px 0px;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='7' viewBox='0 0 4 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.45436 3.5L4 6.22234L3.27282 7L-1.70858e-07 3.5L3.27282 8.90102e-07L4 0.777656L1.45436 3.5Z' fill='%233F3F40'/%3E%3C/svg%3E");
}
@media (max-width: 767px) {
  .breadcrumbs__item:not(:last-child) a::before {
    display: block;
  }
}
.breadcrumbs__item.is-active {
  color: inherit;
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .breadcrumbs__item.is-active {
    display: none;
  }
}
.breadcrumbs__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.breadcrumbs__item > a:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .breadcrumbs__item > a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='4' height='7' viewBox='0 0 4 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.45436 3.5L4 6.22234L3.27282 7L-1.70858e-07 3.5L3.27282 8.90102e-07L4 0.777656L1.45436 3.5Z' fill='%231466B9'/%3E%3C/svg%3E");
  }
}

.block-intro {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
.block-intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px 20px;
}
.block-intro__slider1 {
  min-width: 0;
}
.block-intro__slider2 {
  min-width: 0;
}
.block-intro__info {
  grid-column: span 2;
}
@media (max-width: 1100px) {
  .block-intro__grid {
    grid-template-columns: 1.3fr 1fr;
  }
}
@media (max-width: 1000px) {
  .block-intro {
    background: none;
  }
  .block-intro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .block-intro__slider1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .block-intro__slider2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .block-intro__info.grid1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .block-intro__grid {
    overflow: hidden;
  }
  .block-intro__slider1 {
    padding-bottom: 34px;
  }
  .block-intro__slider2 {
    padding-bottom: 24px;
  }
  .block-intro__info.grid1 {
    gap: 15px;
  }
}
@media (max-width: 500px) {
  .block-intro__info.grid1 {
    gap: 10px;
  }
}
@media (max-width: 400px) {
  .block-intro__info.grid1 {
    gap: 5px;
  }
}

.block-feedback__inner {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 100px 108px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.block-feedback__inner hr {
  border: none;
  border-top: 1px #dee0e0 solid;
  margin: 30px 0;
}
.block-feedback__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.block-feedback__left {
  margin-top: -7px;
}
.block-feedback__phone {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}
.block-feedback__right .block-feedback__phone {
	color: var(--theme-color-accent);
}


.block-feedback .socials {
  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;
  margin-left: -6px;
  margin-right: -6px;
}
.block-feedback .socials > * {
  margin: 0 6px;
}
.block-feedback .socials span:not(.btn) {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.block-feedback .title2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 13px;
}
.block-feedback .title2 span {
  color: var(--theme-color-accent);
}
@media (max-width: 1280px) {
  .block-feedback__inner {
    padding: 60px;
    gap: 50px;
  }
  .block-feedback .title2 {
    font-size: 35px;
  }
}
@media (max-width: 1100px) {
  .block-feedback .title2 {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .block-feedback__inner {
    padding: 40px;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .block-feedback .container {
    padding: 0;
  }
  .block-feedback__inner {
    padding: 43px var(--container-padding);
    border-radius: 0;
  }
  .block-feedback .title2 {
    font-size: 28px;
  }
  .block-feedback__text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .block-feedback__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .block-feedback .title2 {
    font-size: 26px;
  }
  .block-feedback hr {
    margin: 20px 0;
  }
  .block-feedback__phone {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .block-feedback .title2 {
    font-size: 25px;
  }
  .block-feedback__phone {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .block-feedback__phone {
    font-size: 18px;
  }
}

.block-news-mp .swiper-navbar {
  display: none;
}
@media (max-width: 640px) {
  .block-news-mp .heading-complex__right .swiper-navs {
    display: none;
  }
  .block-news-mp .swiper-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.block-contacts {
  margin: 40px 0px;
}
@media (max-width: 767px) {
  .block-contacts {
    margin: 20px 0px 70px 0px;
  }
}
.block-contacts__content {
  border: 1px solid #dee0e0;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 991px) {
  .block-contacts__content {
    padding: 30px 20px 20px 20px;
  }
}
.block-contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -10px;
}
@media (max-width: 650px) {
  .block-contacts__body {
    -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: start;
    margin: -10px 0px;
  }
}
.block-contacts__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 10px;
}
@media (max-width: 991px) {
  .block-contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 650px) {
  .block-contacts__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 10px 0px;
  }
}
.block-contacts__title {
  font-weight: 400;
  font-size: 16px;
  color: rgba(63, 63, 64, 0.5);
  margin: 0px 0px 16px 0px;
}
@media (max-width: 480px) {
  .block-contacts__title {
    font-size: 12px;
    margin: 0px 0px 5px 0px;
  }
}
.block-contacts__phone {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.block-contacts__phone:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 480px) {
  .block-contacts__phone {
    font-size: 18px;
  }
}
.block-contacts__email {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--theme-color-accent);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.block-contacts__email:hover {
  color: var(--theme-color-accent-80);
}
@media (max-width: 480px) {
  .block-contacts__email {
    font-size: 14px;
  }
}
.block-contacts__works {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: -4px 0px;
}
@media (max-width: 480px) {
  .block-contacts__works {
    font-size: 14px;
    margin: -2.5px 0px;
  }
}
.block-contacts__works span {
  display: block;
  padding: 4px 0px;
}
@media (max-width: 480px) {
  .block-contacts__works span {
    padding: 2.5px 0px;
  }
}

@media (max-width: 768px) {
  .heading-brands {
    margin-bottom: 20px;
  }
}
.heading-brands .title2 {
  line-height: 120%;
}
@media (max-width: 767px) {
  .heading-brands .title2 {
    line-height: 1;
  }
}

.block-brands {
  padding: 8px 0px 0px 0px;
}
@media (max-width: 767px) {
  .block-brands {
    padding: 0px 0px 0px 0px;
  }
}
.block-brands__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1100px) {
  .block-brands__body {
    grid-template-columns: 1fr;
    gap: 28px 0px;
  }
}
.block-brands__column {
  border-radius: 10px;
  background: #f7f7f7;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .block-brands__column {
    padding: 10px;
  }
}
.block-brands__column .descr {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .block-brands__column .descr {
    padding: 15px 10px 10px 10px;
  }
}
.block-brands__column .descr h3 {
  line-height: 150%;
  text-transform: uppercase;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 767px) {
  .block-brands__column .descr h3 {
    margin: 0px 0px 10px 0px;
  }
}
.block-brands__column .descr h4 {
  font-weight: 600;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 767px) {
  .block-brands__column .descr h4 {
    font-size: 14px;
    margin: 0px 0px 10px 0px;
  }
}
.block-brands__column .descr ul {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0px 0px 40px 0px;
}
@media (max-width: 767px) {
  .block-brands__column .descr ul {
    margin: 0px 0px 20px 0px;
  }
}
.block-brands__column .descr ul li {
  margin: 0px 0px 12px 0px;
}
.block-brands__column .descr ul li:last-child {
  margin: 0px 0px 0px 0px;
}
.block-brands__photo {
  border-radius: 10px;
  background-color: #fff;
  min-height: 314px;
  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: 12px;
}
@media (max-width: 767px) {
  .block-brands__photo {
    min-height: 132px;
  }
}
.block-brands__photo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.block-brands__photo .logo1 {
  height: 226px;
}
@media (max-width: 767px) {
  .block-brands__photo .logo1 {
    height: 108px;
  }
}
.block-brands__photo .logo2 {
  height: 115px;
}
@media (max-width: 767px) {
  .block-brands__photo .logo2 {
    height: 48px;
  }
}
.block-brands__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 600px) {
  .block-brands__buttons {
    font-size: 14px;
    gap: 10px;
  }
}
.block-brands__buttons .btn {
  height: 60px;
  text-transform: uppercase;
  line-height: 1;
  padding: 5px 30px;
  border-radius: 47px;
}
@media (max-width: 600px) {
  .block-brands__buttons .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    height: 50px;
    padding: 3px 30px;
  }
}
.block-brands__buttons .btn_hollow {
  border: 1px solid var(--theme-color-accent);
}
.block-brands__buttons .btn-brands {
  padding: 5px 5px 5px 30px;
}
@media (max-width: 600px) {
  .block-brands__buttons .btn-brands {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3px 3px 3px 30px;
  }
}
.block-brands__buttons .btn-brands span {
  border-radius: 50%;
  background-color: #fff;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  height: 50px;
  margin: 0px 0px 0px 20px;
  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;
}
@media (max-width: 600px) {
  .block-brands__buttons .btn-brands span {
    width: 44px;
    height: 44px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44px;
            flex: 0 0 44px;
    margin: 0px 0px 0px 20px;
  }
}
.block-brands__buttons .btn-brands svg {
  fill: var(--theme-color-accent);
}

@media (max-width: 767px) {
  .block-brand .block-brands__photo {
    min-height: 262px;
  }
}
.block-brand .block-brands__column {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(0, 710px);
  gap: 30px;
}
@media (max-width: 1100px) {
  .block-brand .block-brands__column {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.block-brand .block-brands__column .descr {
  padding: 30px 0px 0px 30px;
}
@media (max-width: 1100px) {
  .block-brand .block-brands__column .descr {
    padding: 30px 20px 20px 20px;
  }
}
@media (max-width: 767px) {
  .block-brand .block-brands__column .descr {
    padding: 7px 10px 10px 10px;
  }
}
@media (max-width: 767px) {
  .block-brand .block-brands__column .descr h3 {
    margin: 0px 0px 20px 0px;
  }
}
.block-brand .block-brands__column .descr ul {
  margin: 0px 0px 20px 0px;
}
.block-brand .block-brands__column .descr p {
  font-family: "Inter", sans-serif;
}

.block-catalogs {
  padding: 8px 0px 0px 0px;
}
@media (max-width: 767px) {
  .block-catalogs {
    padding: 3px 0px 0px 0px;
  }
}
.block-catalogs__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media (max-width: 1550px) {
  .block-catalogs__body {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1220px) {
  .block-catalogs__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .block-catalogs__body {
    grid-template-columns: 1fr;
    gap: 15px 0px;
  }
}

@media (max-width: 767px) {
  .block-catalogs-detail .block-catalogs__title {
    min-height: 70px;
  }
}

.block {
  padding: 0px 0px 0px 0px;
}
@media (max-width: 767px) {
  .block {
    padding: 0px 0px 0px 0px;
  }
}
.block .descr {
  margin: 0px 0px 0px 0px;
}
@media (max-width: 767px) {
  .block .descr {
    margin: 70px 0px 0px 0px;
  }
}
.block .descr p {
  margin: 0px 0px 24px 0px;
}
@media (max-width: 767px) {
  .block .descr p {
    margin: 0px 0px 20px 0px;
  }
}
.block .descr ul {
  margin: 0px 0px 24px 0px;
}
@media (max-width: 767px) {
  .block .descr ul {
    margin: 0px 0px 20px 0px;
  }
}
.block .descr ul li {
  margin: 0px 0px 0px 0px;
}
.block .descr ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5px;
          flex: 0 0 5px;
  background-color: var(--theme-color-text-common);
  margin: 10px 10px 0px 10px;
}
.block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 42px;
}
@media (max-width: 992px) {
  .block__content {
    -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: start;
    gap: 20px 0px;
  }
}
.block__menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 345px;
          flex: 0 1 345px;
  border: 1px solid #dee0e0;
  border-radius: 10px;
  padding: 24px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 992px) {
  .block__menu {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    padding: 0px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .block__menu {
    font-size: 14px;
  }
}
.block__menu span {
  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;
}
.block__menu span.active {
  color: var(--theme-color-accent);
}
@media (max-width: 992px) {
  .block__menu span.active {
    padding: 15px 12px 14px 15px;
    cursor: pointer;
    color: var(--theme-color-text-common);
  }
  .block__menu span.active::after {
    content: "";
    width: 13px;
    height: 8px;
    margin: 0px 0px 0px 10px;
    -webkit-transition: background-image 0.3s ease;
    transition: background-image 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.36256%204.95L11.3126%200L12.7266%201.414L6.36256%207.778L-0.00143814%201.414L1.41256%200L6.36256%204.95Z'%20fill='%233F3F40'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.block__menu span._spoller-active::after {
  content: "";
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.block__menu ul {
  display: grid;
  gap: 16px 0px;
}
@media (max-width: 992px) {
  .block__menu ul {
    gap: 14px 0px;
  }
}
.block__menu ul a:hover {
  color: var(--theme-color-accent);
}
.block__submenu {
  margin: 16px 0px 0px 0px;
}
@media (max-width: 992px) {
  .block__submenu {
    padding: 0px 15px 15px 15px;
    margin: 0px 0px 0px 0px;
  }
}
.block__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.block__filters + .block__info {
      -ms-flex: 0 1 1135px;
          flex: 0 1 1135px;
}
@media (max-width: 992px) {
  .block__info {
	width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.block__info .heading-complex {
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .block__info .heading-complex {
    margin: 0px 0px 20px 0px;
  }
}
.block__info .heading-complex p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 20px 0px 0px 0px;
}
@media (max-width: 767px) {
  .block__info .heading-complex p {
    font-size: 14px;
  }
}
.block__info p {
  font-family: "Inter", sans-serif;
}
.block__catalogs {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 1135px;
          flex: 0 1 1135px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .block__catalogs {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .block__catalogs {
    grid-template-columns: 1fr;
    gap: 15px 0px;
    width: 100%;
  }
}
.descr > img {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px 0px 30px 0px;
  border-radius: 10px;
  min-height: 120px;
}
@media (max-width: 992px) {
  .descr > img {
    border-radius: 0px;
    margin: 0px calc(-1 * var(--container-padding)) 30px calc(-1 * var(--container-padding));
    width: calc(100% + 2 * var(--container-padding));
  }
}
@media (max-width: 767px) {
  .descr > img {
    margin: 0px calc(-1 * var(--container-padding)) 15px calc(-1 * var(--container-padding));
  }
}
.block__filters {
  display: grid;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 345px;
          flex: 0 1 345px;
  gap: 20px 0px;
}
@media (max-width: 992px) {
  .block__filters {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .block__filters .menu-block__title {
    padding: 14px;
  }
}
@media (max-width: 767px) {
  .block__filters .menu-block__title svg {
    width: 9px;
    height: 9px;
  }
}
.block__filters .menu-block.active .menu-block__title svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.block__sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
}

.block__top,
.block__bottom {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin: 0px 0px 20px 0px;
}


.block__bottom {
	margin: 20px 0px 0px 0px;
}

@media (max-width: 992px) {
  .block__top,
  .block__bottom {
    -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: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 767px) {
  .block__top {
    margin: 0px 0px 30px 0px;
  }
  .block__bottom {
    margin: 30px 0px 0px 0px;
  }
}
.block__top p,
.block__bottom p {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
}
.block__top p.big {
  font-size: 13px;
  color: #000;
}
.block__image {
  width: auto;
  max-height: 136px;
}
@media (max-width: 992px) {
  .block__image {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.block__tables {
  /* position: sticky; */
  /* top: 0; */
  /* top: 75px; */
  /* z-index: 10; */
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 6px 0px;
  border-radius: 10px;
  border: 1px solid #dee0e0;
}
@media (max-width: 1550px) {
  .block__tables {
    display: none;
  }
}
.block__table {
  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-flex: 1;
      -ms-flex: 1 1 3.4%;
          flex: 1 1 3.4%;
  font-weight: 700;
  /* font-size: 10px; */
  font-size: 9px;
  line-height: 150%;
  text-align: center;
  color: #8d8d8d;
  border-right: 1px solid #f4f4f4;
  padding: 10px 5px;
}
.block__table span + .card-product-catalog__iconset {
  margin-top: 3px;
}
.block__table:last-child {
  border-right: none;
}
.block__product-catalogs {
  display: grid;
  gap: 6px;
}
@media (max-width: 1550px) {
  .block__product-catalogs {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 767px) {
  .block__product-catalogs {
    grid-template-columns: 1fr;
    gap: 10px 0px;
  }
}

.filter-block {
  border: 1px solid #dee0e0;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .filter-block {
    border: none;
    border-radius: 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}

.filter-block .checklist li {
  display: block;
  margin-bottom: 10px;
}

.filter-block .collapse-container li:nth-child(n+6){
  display: none;
}
.filter-block .collapse-container.expanded li:nth-child(n+6){
  display: block;
}

.collapse-container button[data-action="filterCollapse"] {
  display: none;
}

.collapse-container.expanded button[data-action="filterCollapse"] {
  display: inline-block;
}

.collapse-container.expanded button[data-action="filterExpand"] {
  display: none;
}

.filter-block .collapse-container.expanded .checklist li {
  display: block;
}

.collapse-container__scroll {
  max-height: 300px;
}

.filter-block__top {
  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;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  border-bottom: 1px solid #dee0e0;
  padding: 24px 30px;
}
.filter-block__top svg {
  margin: 0px 0px 0px 20px;
}
@media (max-width: 767px) {
  .filter-block__top svg {
    width: 9px;
    height: 9px;
  }
}
@media (min-width: 992px) {
  .filter-block__top {
    pointer-events: none;
  }
}
@media (max-width: 992px) {
  .filter-block__top {
    background: #f7f7f7;
    height: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px 16px;
  }
}
@media (max-width: 767px) {
  .filter-block__top {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
  }
}
@media (max-width: 992px) {
  .filter-block__top-title span {
    display: none;
  }
}
@media (max-width: 992px) {
  .filter-block__body {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 340px;
    z-index: 50;
    background-color: #fff;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .filter-block__body::-webkit-scrollbar {
    display: none;
  }
  .filter-open .filter-block__body {
    left: 0;
  }
}
@media (max-width: 340px) {
  .filter-block__body {
    max-width: 100%;
  }
}
.filter-block__title {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  text-transform: uppercase;
  border-bottom: 1px solid #dee0e0;
  padding: 20px 15px;
}
.filter-block__title svg {
  fill: rgba(130, 135, 154, 0.5);
}
@media (max-width: 992px) {
  .filter-block__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter-block__items {
  padding: 30px 30px 0px 30px;
}
@media (max-width: 992px) {
  .filter-block__items {
    padding: 20px 15px 24px 15px;
  }
}
.filter-block__item {
  border-bottom: 1px solid #dee0e0;
  margin: 0px 0px 24px 0px;
  padding: 0px 0px 24px 0px;
}
@media (max-width: 992px) {
  .filter-block__item:last-child {
    border-bottom: none;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
}
.filter-block__buttons {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding: 0px 30px 24px 30px;
}
@media (max-width: 992px) {
  .filter-block__buttons {
    padding: 0px 15px 20px 15px;
  }
}
.filter-block__buttons .btn_black {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  border-radius: 30px;
}
.filter-block__buttons .btn_black:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .filter-block__buttons .btn_black {
    --height: 50px;
  }
}
.filter-block__buttons .btn_primary.btn_hollow {
  border: 1px solid #dee0e0;
  border-radius: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--theme-color-text-common);
}
.filter-block__buttons .btn_primary.btn_hollow:hover {
  color: #fff;
  background-color: var(--theme-color-text-common);
}
@media (max-width: 992px) {
  .filter-block__buttons .btn_primary.btn_hollow {
    --height: 50px;
  }
}

.item-filter-block__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  margin: 0px 0px 20px 0px;
}
.item-filter-block__input {
  border: 1px solid #dee0e0;
  border-radius: 6px;
  width: 100%;
  background: #fff;
  padding: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  margin: 0px 0px 10px 0px;
}
.item-filter-block__input::-webkit-input-placeholder {
  color: var(--theme-color-text-common);
}
.item-filter-block__input::-moz-placeholder {
  color: var(--theme-color-text-common);
}
.item-filter-block__input:-ms-input-placeholder {
  color: var(--theme-color-text-common);
}
.item-filter-block__input::-ms-input-placeholder {
  color: var(--theme-color-text-common);
}
.item-filter-block__input::placeholder {
  color: var(--theme-color-text-common);
}
.item-filter-block__simplebar {
  border: 1px solid #dee0e0;
  border-radius: 6px;
  height: 166px;
}
.item-filter-block__simplebar .checklist {
  padding: 10px 15px 10px 15px;
}

.block-catalog {
  padding: 0px 0px 0px 0px;
}
@media (max-width: 767px) {
  .block-catalog {
    padding: 3px 0px 0px 0px;
  }
}

@media (max-width: 767px) {
  .block-favorites {
    padding: 3px 0px 0px 0px;
  }
}
.block-favorites__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 20px;
}
@media (max-width: 1550px) {
  .block-favorites__body {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1220px) {
  .block-favorites__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .block-favorites__body {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .block-favorites__body {
    grid-template-columns: 1fr;
    gap: 10px 0px;
  }
}

.heading-cart {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px 0px 0px 0px;
}
@media (max-width: 767px) {
  .heading-cart {
    padding: 0px 0px 0px 0px;
  }
}

@media (max-width: 767px) {
  .block-cart {
    padding: 3px 0px 0px 0px;
  }
}
.block-cart__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0px 20px;
}
@media (max-width: 1200px) {
  .block-cart__content {
    -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: start;
    gap: 20px 0px;
  }
}
@media (max-width: 767px) {
  .block-cart__content {
    gap: 10px 0px;
  }
}
.block-cart__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 1115px;
          flex: 0 1 1115px;
  display: grid;
  gap: 16px 0px;
}
@media (max-width: 1200px) {
  .block-cart__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .block-cart__body {
    gap: 10px 0px;
  }
}
.details-block-cart {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 365px;
          flex: 0 1 365px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 30px;
}
@media (max-width: 1200px) {
  .details-block-cart {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 365px;
  }
}
@media (max-width: 767px) {
  .details-block-cart {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .details-block-cart {
    max-width: 100%;
    width: 100%;
  }
}
.details-block-cart p {
  margin: 16px 0px 0px 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}
.details-block-cart p a {
  color: var(--theme-color-accent);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.details-block-cart p a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .details-block-cart p {
    font-size: 10px;
    margin: 10px 0px 0px 0px;
  }
}
.details-block-cart .btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .details-block-cart .btn {
    --height: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
  }
}
.details-block-cart .btn.btn_wide {
  margin: 24px 0px 0px 0px;
}
.details-block-cart__list {
  margin: 0px 0px 24px 0px;
  padding: 0px 0px 24px 0px;
  border-bottom: 1px solid #dee0e0;
}
@media (max-width: 767px) {
  .details-block-cart__list {
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 20px 0px;
  }
}
.details-block-cart__list .details-block-cart__title {
  margin: 0px 0px 24px 0px;
}
@media (max-width: 767px) {
  .details-block-cart__list .details-block-cart__title {
    margin: 0px 0px 20px 0px;
  }
}
.details-block-cart__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .details-block-cart__title {
    font-size: 14px;
    line-height: 171%;
  }
}
.details-block-cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
}
.details-block-cart__item:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .details-block-cart__item:not(:last-child) {
    margin-bottom: 17px;
  }
}
.details-block-cart__item.grey .details-block-cart__product {
  color: rgba(63, 63, 64, 0.5);
}
.details-block-cart__item.grey .details-block-cart__cost {
  font-weight: 400;
}
.details-block-cart__product {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
}
.details-block-cart__cost {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-align: right;
}
.details-block-cart__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 8px;
  height: 44px;
}
.details-block-cart__inputs .btn {
  --height: 44px;
  height: 44px;
  width: 58px;
  border-radius: 4px;
  padding: 10px 20px;
}
.details-block-cart__inputs input {
  border: 1px solid #dee0e0;
  border-radius: 4px;
  padding: 14px 16px;
  height: 44px;
}
.details-block-cart__inputs input::-webkit-input-placeholder {
  color: rgba(63, 63, 64, 0.5);
}
.details-block-cart__inputs input::-moz-placeholder {
  color: rgba(63, 63, 64, 0.5);
}
.details-block-cart__inputs input:-ms-input-placeholder {
  color: rgba(63, 63, 64, 0.5);
}
.details-block-cart__inputs input::-ms-input-placeholder {
  color: rgba(63, 63, 64, 0.5);
}
.details-block-cart__inputs input::placeholder {
  color: rgba(63, 63, 64, 0.5);
}
.details-block-cart__totals {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.details-block-cart__summ {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .details-block-cart__summ {
    font-size: 18px;
    line-height: 133%;
  }
}

.order-block-cart {
  display: grid;
  gap: 20px 0px;
}
@media (max-width: 1100px) {
  .order-block-cart {
    gap: 40px 0px;
  }
}
.order-block-cart .cart-item__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
}
@media (max-width: 767px) {
  .order-block-cart .cart-item__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .order-block-cart .cart-item__summ {
    margin: 10px 0px 10px 0px;
  }
}
@media (max-width: 767px) {
  .order-block-cart .cart-item__total {
    margin: 0px 0px 0px 0px;
  }
}
.order-block-cart .form-grid1 {
  gap: 20px;
}
@media (max-width: 767px) {
  .order-block-cart .form-grid1 {
    gap: 12px 0px;
  }
}
.order-block-cart .form-grid1__row {
  display: grid;
}
@media (min-width: 767px) {
  .order-block-cart .form-grid1__row:nth-child(2) {
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .order-block-cart .form-grid1__row:nth-child(2) {
    gap: 12px;
  }
}
.order-block-cart textarea.field-input1 {
  height: 80px;
}
.order-block-cart .form-group1__placeholder {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: rgba(63, 63, 64, 0.5);
  display: block;
  margin: 0px 0px 8px 0px;
}
@media (max-width: 767px) {
  .order-block-cart .form-group1__placeholder {
    font-size: 14px;
  }
}
.order-block-cart .form-group1__placeholder_req::after {
  color: #cd1311;
}
.order-block-cart .field-input1 {
  border: 1px solid #dee0e0;
  border-radius: 10px;
  height: 50px;
}
.order-block-cart .checklist {
  gap: 12px 0px;
}
.order-block-cart .checklist__item {
  margin: 0px 0px 0px 0px;
}
.order-block-cart .checkbox-text {
  border: 1px solid #dee0e0;
  border-radius: 10px;
  padding: 20px;
}
.order-block-cart__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .order-block-cart__columns {
    grid-template-columns: 1fr;
    gap: 40px 0px;
  }
}
.order-block-cart__column {
  background-color: #fff;
}
@media (min-width: 1100px) {
  .order-block-cart__column {
    border: 1px solid #dee0e0;
    border-radius: 10px;
    padding: 40px;
  }
}
.order-block-cart__column ul {
  display: grid;
  gap: 16px 0px;
}
.order-block-cart__column ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order-block-cart__contact-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(63, 63, 64, 0.5);
  padding: 0px 10px 0px 0px;
}
@media (max-width: 767px) {
  .order-block-cart__contact-label {
    font-size: 12px;
  }
}
.order-block-cart__contact-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .order-block-cart__contact-value {
    font-size: 14px;
    line-height: 171%;
  }
}
.order-block-cart__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .order-block-cart__title {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
  }
}
.order-block-cart__content {
  display: grid;
  gap: 16px 0px;
}
@media (max-width: 767px) {
  .order-block-cart__content {
    gap: 10px 0px;
  }
}
.order-block-cart__info {
  margin: 30px 0px 0px 0px;
}
@media (max-width: 767px) {
  .order-block-cart__info {
    margin: 10px 0px 0px 0px;
  }
}
.order-block-cart__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 10px 0px;
}
@media (max-width: 767px) {
  .order-block-cart__name {
    font-size: 14px;
    line-height: 171%;
  }
}
.order-block-cart__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(63, 63, 64, 0.5);
}
@media (max-width: 767px) {
  .order-block-cart__date {
    font-size: 12px;
  }
}

.heading-order {
  padding: 10px 0px 0px 0px;
}
@media (max-width: 767px) {
  .heading-order {
    padding: 0px 0px 0px 0px;
  }
}
.heading-order p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 16px 0px 0px 0px;
}
.heading-order p a {
  color: var(--theme-color-accent);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.heading-order p a:hover {
  opacity: 0.8;
}
.heading-order p span {
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .heading-order p {
    font-size: 14px;
    margin: 20px 0px 0px 0px;
  }
}

.top-block-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 40px;
  margin: 0px 0px 80px 0px;
}
@media (max-width: 1100px) {
  .top-block-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin: 0px 0px 40px 0px;
  }
}
.top-block-product .card-product__favorites {
  position: relative;
  top: 0;
  left: 0;
  border: none;
  background: #f7f7f7;
  cursor: pointer;
}
@media (max-width: 767px) {
  .top-block-product .card-product__favorites {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
  }
}
.top-block-product__sliders {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
  height: 486px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}
@media (max-width: 1100px) {
  .top-block-product__sliders {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px 0px;
    height: 100%;
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 767px) {
  .top-block-product__sliders {
    gap: 12px 0px;
  }
}
.top-block-product__sliders .card-product__favorites {
  display: none;
}
@media (max-width: 767px) {
  .top-block-product__sliders .card-product__favorites {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.top-block-product__sliders .swiper-product-card {
  max-width: 82%;
  width: 100%;
  position: relative;
  border: 1px solid #dee0e0;
  border-radius: 10px;
}
@media (max-width: 1550px) {
  .top-block-product__sliders .swiper-product-card {
    max-width: 78%;
  }
}
@media (max-width: 1100px) {
  .top-block-product__sliders .swiper-product-card {
    max-width: 100%;
  }
}
.top-block-product__sliders .swiper-product-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  min-height: 210px;
}
.top-block-product__sliders .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-block-product__sliders .swiper-navs {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 5;
  width: calc(100% - 40px);
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .top-block-product__sliders .swiper-navs {
    display: none;
  }
}
.top-block-product__sliders .swiper-nav {
  width: 52px;
  height: 40px;
  background: #f7f7f7;
  border: none;
}
.top-block-product__sliders .swiper-nav.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {
  .top-block-product__sliders .card-product__blocks {
    top: 10px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .top-block-product__sliders .card-product__blocks .card-product__block {
    border-radius: 4px;
  }
}
.top-block-product__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 108px;
          flex: 0 0 108px;
  margin: 0px 20px 0px 0px;
}
@media (max-width: 1100px) {
  .top-block-product__thumbs {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.top-block-product__thumbs .swiper-thumbs {
  cursor: pointer;
  height: 100%;
}
.top-block-product__thumbs .swiper-slide {
  border-radius: 10px;
  background: #f7f7f7;
  opacity: 0.4;
}
.top-block-product__thumbs .swiper-slide img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 46px;
}
.top-block-product__thumbs .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #1466b9;
  background: #ffffff;
  opacity: 1;
}
.top-block-product__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52%;
          flex: 0 1 52%;
}
@media (max-width: 1100px) {
  .top-block-product__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .top-block-product__content .card-product__favorites {
    display: none;
  }
}
.top-block-product__titles-mob {
  display: none;
}
@media (max-width: 1100px) {
  .top-block-product__titles-mob {
    display: block;
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 767px) {
  .top-block-product__titles-mob {
    margin: 0px 0px 10px 0px;
  }
}
.top-block-product__titles {
  margin: 0px 0px 30px 0px;
}
@media (max-width: 1100px) {
  .top-block-product__titles {
    display: none;
  }
}
.top-block-product__title {
  text-wrap: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .top-block-product__title {
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
  }
}
.top-block-product__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(63, 63, 64, 0.5);
  margin: 10px 0px 0px 0px;
}
@media (max-width: 767px) {
  .top-block-product__subtitle {
    font-size: 12px;
    line-height: 175%;
  }
}
.top-block-product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}
@media (max-width: 1550px) {
  .top-block-product__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
@media (max-width: 1100px) {
  .top-block-product__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 767px) {
  .top-block-product__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-block-product__descr {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 385px;
          flex: 0 1 385px;
  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: start;
}
@media (max-width: 1550px) {
  .top-block-product__descr {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 1100px) {
  .top-block-product__descr {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 386px;
            flex: 0 1 386px;
  }
}
@media (max-width: 767px) {
  .top-block-product__descr {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.top-block-product__descr p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin: 0px 0px 20px 0px;
}
.top-block-product__more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--theme-color-accent);
  border-bottom: 1px solid rgba(20, 102, 185, 0.5);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin: 14px 0px 0px 0px;
  display: block;
  padding: 0px 0px 4px 0px;
}
.top-block-product__more:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .top-block-product__more {
    letter-spacing: 0.02em;
  }
}
.top-block-product__card-product {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 355px;
          flex: 1 1 355px;
  border: 1px solid #dee0e0;
  border-radius: 10px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
}
@media (max-width: 1550px) {
  .top-block-product__card-product {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .top-block-product__card-product {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 400px;
            flex: 1 1 400px;
  }
}
@media (max-width: 767px) {
  .top-block-product__card-product {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    border: none;
    padding: 0px 0px 0px 0px;
    width: 100%;
  }
}
.top-block-product__card-product .prices-card-product {
  -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: start;
  gap: 12px 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 767px) {
  .top-block-product__card-product .prices-card-product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px 65px;
  }
}
.top-block-product__card-product .prices-card-product__per-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .top-block-product__card-product .prices-card-product__per-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.top-block-product__card-product .prices-card-product__per-unit span {
  font-size: 24px;
}
@media (max-width: 767px) {
  .top-block-product__card-product .prices-card-product__per-unit span {
    font-size: 18px;
  }
}
.top-block-product__card-product .prices-card-product__per-pack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .top-block-product__card-product .prices-card-product__per-pack {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.top-block-product__card-product .prices-card-product__per-pack span {
  font-size: 14px;
}
.top-block-product__card-product .prices-card-product__title {
  margin: 0px 0px 0px 6px;
}
@media (max-width: 767px) {
  .top-block-product__card-product .prices-card-product__title {
    margin: 0px 0px 12px 0px;
  }
}
.top-block-product__card-product .card-product__buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 16px 0px;
  gap: 10px 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .top-block-product__card-product .card-product__buttons {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0px 0px 12px 0px;
    gap: 10px 28px;
  }
  .top-block-product__card-product .card-product__buttons .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.top-block-product__card-product .stock {
  margin: 0px 0px 24px 0px;
}
@media (max-width: 767px) {
  .top-block-product__card-product .stock {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0px 0px 20px 0px;
  }
}
.top-block-product__card-product .btn_wide {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .top-block-product__card-product .btn_wide {
    --height: 38px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .block-similar .heading-complex .swiper-navs {
    display: none;
  }
}
@media (max-width: 1200px) {
  .block-similar .swiper-similar {
    width: calc(100% + var(--container-padding));
  }
}
@media (max-width: 992px) {
  .block-similar .swiper-similar {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .block-similar .swiper-similar {
    width: calc(100% + var(--container-padding));
  }
}
@media (max-width: 480px) {
  .block-similar .swiper-similar {
    width: 100%;
  }
}
.block-similar .swiper-navbar {
  display: none;
}
@media (max-width: 767px) {
  .block-similar .swiper-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.card-popular {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.card-popular__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  width: 40%;
  margin-right: 20px;
}
.card-popular__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}
.card-popular__title a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.card-popular__arr {
  display: block;
  width: 29px;
}
.card-popular__pic {
  width: 20%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  max-height: 125px;
  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;
}
.card-popular__pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.card-popular:hover .card-popular__title a {
  color: var(--theme-color-accent);
}
.card-popular:hover .card-popular__arr {
  fill: var(--theme-color-accent);
}
@media (max-width: 1280px) {
  .card-popular {
    padding: 30px;
  }
  .card-popular__title {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .card-popular__arr {
    width: 24px;
  }
  .card-popular__title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .card-popular {
    padding: 20px;
  }
  .card-popular__arr {
    width: 20px;
    height: auto;
  }
  .card-popular__title {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .card-popular {
    min-height: 120px;
  }
  .card-popular__data {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
    margin-right: 0;
  }
  .card-popular__pic {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 500px) {
  .card-popular {
    padding: 15px;
    min-height: 84px;
  }
  .card-popular__arr {
    width: 16px;
  }
  .card-popular__title {
    font-size: 12px;
  }
  .card-popular__pic {
    position: absolute;
    right: 15px;
    top: 15px;
  }
}

.card-news {
  position: relative;
}
.card-news__date {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 12px 20px;
  background-color: var(--theme-color-accent);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
}
.card-news__photo {
  display: block;
  width: 100%;
  aspect-ratio: 493/280;
  border-radius: 10px;
  margin-bottom: 20px;
}
.card-news__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 12px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-news__title a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.card-news__title a:hover, .card-news__title a:focus-visible {
  color: var(--theme-color-accent);
}
.card-news__descr {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .card-news__date {
    left: 12px;
    top: 12px;
    padding: 8px 15px;
    font-size: 14px;
  }
  .card-news__photo {
    margin-bottom: 17px;
  }
  .card-news__title {
    font-size: 18px;
    margin-bottom: 9px;
  }
  .card-news__descr {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .card-news__date {
    left: 9px;
    top: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }
  .card-news__photo {
    margin-bottom: 14px;
  }
  .card-news__title {
    font-size: 16px;
    margin-bottom: 5px;
    margin-right: 5px;
  }
  .card-news__descr {
    margin-right: 5px;
    font-size: 13px;
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 400px) {
  .card-news__date {
    left: 9px;
    top: 10px;
    padding: 4px 7px;
  }
  .card-news__photo {
    margin-bottom: 12px;
  }
  .card-news__title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .card-news__descr {
    font-size: 12px;
  }
}

.card-info {
  background-color: var(--theme-color-accent);
  border-radius: 10px;
  color: #fff;
  min-height: 98px;
  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: 24px;
}
.card-info__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.card-info__pic {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 54px 50px;
          mask-size: 54px 50px;
  width: 54px;
  height: 50px;
}
.card-info__pic img {
  display: block;
  height: 100%;
  opacity: 0;
}
@media (max-width: 640px) {
  .card-info {
    padding: 18px;
    min-height: unset;
  }
  .card-info__label {
    font-size: 14px;
  }
  .card-info__pic {
    -webkit-mask-size: 35px 30px;
            mask-size: 35px 30px;
    margin-right: 15px;
    width: 35px;
    height: 30px;
  }
}
@media (max-width: 500px) {
  .card-info {
    padding: 13px;
  }
  .card-info__label {
    font-size: 12px;
  }
  .card-info__pic {
    -webkit-mask-size: 27px 27px;
            mask-size: 27px 27px;
    margin-right: 12px;
    width: 27px;
    height: 27px;
  }
}

.card-notification {
  max-width: 367px;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 26px 4px rgba(30, 30, 30, 0.1);
          box-shadow: 0 6px 26px 4px rgba(30, 30, 30, 0.1);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 110px;
  background-color: #fff;
  -webkit-transition: opacity var(--theme-animation-duration);
  transition: opacity var(--theme-animation-duration);
}
.card-notification_removed {
  opacity: 0;
}
.card-notification__close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.card-notification__close svg {
  fill: rgba(130, 135, 154, 0.5);
}
.card-notification__close:focus-visible svg, .card-notification__close:hover svg {
  fill: rgb(130, 135, 154);
}
.card-notification__close::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.card-notification__photo {
  width: 95px;
  margin-right: 20px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-notification__photo img {
  display: block;
  max-width: 100%;
  max-height: 70px;
}
.card-notification__data {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card-notification__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 6px;
}
.card-notification__name {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(63, 63, 64, 0.5);
}

.card-product {
  border: 1px solid #dee0e0;
  border-radius: 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.card-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;
  padding: 0px 20px 0px 20px;
}
@media (max-width: 767px) {
  .card-product__image {
    padding: 0px 20px 8px 20px;
  }
}
.card-product__image img {
  max-width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .card-product__image img {
    height: 170px;
    width: 170px;
  }
}
.card-product__favorites {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  background: #f7f7f7;
  border: none;
}
.card-product__favorites.active {
  border: none;
  pointer-events: none;
  background: #3f3f40;
}
.card-product__favorites.active svg {
  fill: #fff;
}
@media (max-width: 767px) {
  .card-product__favorites {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
  .card-product__favorites svg {
    width: 20px;
    height: 18px;
  }
}
.card-product__blocks {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  z-index: 4;
}
@media (max-width: 767px) {
  .card-product__blocks {
    top: 18px;
    left: 0;
  }
}
.card-product__block {
  background: #f59e0b;
  border-radius: 4px;
  padding: 6px 10px;
  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;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .card-product__block {
    font-size: 12px;
    border-radius: 0px 4px 4px 0px;
  }
}
.card-product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0px 20px 20px 20px;
}
.card-product__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: 0px 0px 70px 0px;
}
@media (max-width: 767px) {
  .card-product__titles {
    margin: 0px 0px 10px 0px;
  }
}
.card-product__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 14px 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 767px) {
  .card-product__title {
    font-size: 14px;
    margin: 0px 0px 5px 0px;
  }
}
.card-product__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .card-product__subtitle {
    font-size: 12px;
  }
}
.card-product__stock {
  margin: 0px 0px 20px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 81%;
  color: #27ae60;
}
@media (max-width: 767px) {
  .card-product__stock {
    font-size: 12px;
    margin: 0px 0px 30px 0px;
  }
}
.card-product__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* gap: 10px; */
  margin: 0px 0px 24px 0px;
  align-items: center;
  width: 100%;
}
.card-product__detail.no-price {
  /* -webkit-box-pack: center; */
      /* -ms-flex-pack: center; */
	/* justify-content: center; */
}
@media (max-width: 767px) {
  .card-product__detail {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0px 0px 20px 0px;
  }
}
.card-product__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 23px;
  position: relative;
}

.card-product__buttons::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
}

.card-product__buttons .spinner {
  position: absolute;
  left: calc(50% - 13px);
  top: calc(50% - 11px);
  pointer-events: none;
  z-index: 1;
  display: none;
}

.card-product__buttons .spinner svg {
  fill: var(--theme-color-accent);
}

.card-product__buttons.pending::after {
  display: block;
}

.card-product__buttons.pending .spinner {
  display: inline-block;
}


@media (max-width: 767px) {
  .card-product__buttons {
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.card-product__buttons .btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  padding: 15px 23px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 166px;
          flex: 1 1 166px;
  border-radius: 50px;
}
.card-product__buttons .btn svg {
  margin: 0px 10px 0px 0px;
}
@media (max-width: 767px) {
  .card-product__buttons .btn svg {
    width: 18px;
    height: 15px;
    margin: 0px 8px 0px 0px;
  }
}
@media (max-width: 992px) {
  .card-product__buttons .btn {
    padding: 5px 10px;
  }
}
@media (max-width: 767px) {
  .card-product__buttons .btn {
    height: 38px;
    font-size: 14px;
  }
}

.prices-card-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 0px 30px 0px;
  gap: 15px 50px;
}
@media (max-width: 400px) {
  .prices-card-product {
    gap: 10px 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.prices-card-product__per-unit span {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .prices-card-product__per-unit span {
    font-size: 18px;
  }
}
.prices-card-product__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  margin: 0px 0px 10px 0px;
  color: rgba(63, 63, 64, 0.5);
}
@media (max-width: 767px) {
  .prices-card-product__title {
    font-size: 12px;
    margin: 0px 0px 12px 0px;
  }
}
.prices-card-product__per-pack span {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .prices-card-product__per-pack span {
    font-size: 14px;
  }
}

.card-catalogs {
  background: #f7f7f7;
  border-radius: 10px;
  height: 100%;
  padding: 25px 30px 0px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (max-width: 767px) {
  .card-catalogs {
    padding: 25px 15px 0px 15px;
  }
}
.card-catalogs:hover {
  background-color: var(--theme-color-accent);
}
.card-catalogs:hover .card-catalogs__title {
  color: #fff;
}
.card-catalogs:hover .btn {
  border: 1px solid #fff;
  color: #fff;
}
.card-catalogs:hover .btn svg {
  fill: #fff !important;
}
.card-catalogs:hover .btn:hover {
  color: #fff;
  opacity: 0.8;
}
.card-catalogs:hover .btn:hover svg {
  fill: #fff !important;
}
.card-catalogs .btn {
  padding: 9px 20px;
  text-align: center;
  --height: 40px;
  text-transform: uppercase;
  background: transparent;
  border-radius: 34px;
}
@media (max-width: 767px) {
  .card-catalogs .btn {
    padding: 9px 24px;
  }
}
.card-catalogs .btn svg {
  fill: currentColor;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  margin: 0px 0px 0px 10px;
}
.card-catalogs .btn:hover {
  background: transparent;
  opacity: 0.8;
}
.card-catalogs .btn:hover svg {
  fill: currentColor;
}
.card-catalogs__top {
  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 1 auto;
          flex: 1 1 auto;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .card-catalogs__top {
    margin: 0px 0px 20px 0px;
  }
}
.card-catalogs__top .btn {
  border: 1px solid var(--theme-color-text-common);
  width: 100%;
  color: var(--theme-color-text-common);
  margin: 20px 0px 0px 0px;
}
.card-catalogs__top .btn:hover {
  color: var(--theme-color-text-common);
}
.card-catalogs__top .btn:hover svg {
  fill: var(--theme-color-text-common);
}
.card-catalogs__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 97px;
}
@media (max-width: 767px) {
  .card-catalogs__title {
    font-size: 14px;
    min-height: 80px;
  }
}
.card-catalogs__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card-catalogs__bottom img {
  margin: 0px 30px 0px 0px;
  width: 54%;
  height: 100%;
}
@media (max-width: 767px) {
  .card-catalogs__bottom img {
    margin: 0px 15px 0px 0px;
    width: 57%;
  }
}
.card-catalogs__bottom .btn {
  margin: 0px 0px 30px 0px;
}
.card-catalogs__bottom .btn:hover {
  color: var(--theme-color-accent);
}
.card-catalogs__bottom .btn:hover svg {
  fill: #fff !important;
}

.cart-item {
  border: 1px solid #dee0e0;
  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;
  min-height: 130px;
}
@media (max-width: 767px) {
  .cart-item {
    -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: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 20px;
  }
}
.cart-item .stepcounter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 119px;
          flex: 0 0 119px;
  height: 38px;
  width: 119px;
  margin: 0px 5px 0px 0px;
}
@media (max-width: 480px) {
  .cart-item .stepcounter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 102px;
            flex: 0 0 102px;
    width: 102px;
    margin: 0px 10px 0px 0px;
  }
}
.cart-item .stepcounter__btn {
  width: 38px;
  height: 38px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
}
.cart-item__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51%;
          flex: 0 1 51%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 20px 0px 0px;
}
@media (max-width: 767px) {
  .cart-item__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0px 0px 20px 0px;
  }
}
.cart-item__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34%;
          flex: 0 1 34%;
  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;
  padding: 30px 30px 30px 0px;
}
@media (max-width: 992px) {
  .cart-item__right {
    padding: 20px 20px 20px 0px;
  }
}
@media (max-width: 767px) {
  .cart-item__right {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 20px 0px 0px 0px;
  }
}
.cart-item__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 159px;
          flex: 0 0 159px;
  margin: 0px 20px 0px 0px;
}
@media (max-width: 1550px) {
  .cart-item__photo {
    margin: 0px 15px 0px 0px;
  }
}
@media (max-width: 992px) {
  .cart-item__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 159px;
            flex: 0 1 159px;
    margin: 0px 10px 0px 0px;
  }
}
@media (max-width: 767px) {
  .cart-item__photo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 88px;
            flex: 1 0 88px;
  }
}
.cart-item__photo img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-item__titles {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 325px;
          flex: 0 1 325px;
  padding: 30px 0px 30px 0px;
}
@media (max-width: 767px) {
  .cart-item__titles {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0px 0px 0px 0px;
  }
}
.cart-item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
.cart-item__title:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .cart-item__title {
    font-size: 14px;
  }
}
.cart-item__stock {
  font-weight: 400;
  font-size: 16px;
  color: #27ae60;
  margin: 2px 0px 0px 0px;
}
@media (max-width: 767px) {
  .cart-item__stock {
    font-size: 12px;
    margin: 8px 0px 0px 0px;
  }
}
.cart-item__summ {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 13%;
          flex: 0 1 13%;
  margin: 0px 18px 0px 0px;
  padding: 30px 0px 30px 0px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1550px) {
  .cart-item__summ {
    margin: 0px 15px 0px 0px;
  }
}
@media (max-width: 992px) {
  .cart-item__summ {
    padding: 20px 0px 20px 0px;
  }
}
@media (max-width: 767px) {
  .cart-item__summ {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    font-size: 18px;
  }
}
.cart-item__summ span {
  display: block;
  margin: 8px 0px 0px 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(63, 63, 64, 0.5);
}
@media (max-width: 767px) {
  .cart-item__summ span {
    font-size: 12px;
    margin: 12px 0px 0px 0px;
  }
}
.cart-item__total {
  white-space: nowrap;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin: 0px 15px 0px 0px;
}
@media (max-width: 767px) {
  .cart-item__total {
    font-size: 18px;
  }
}
.cart-item__icon svg {
  fill: currentColor;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.cart-item__icon:hover svg {
  fill: var(--theme-color-accent);
}
.cart-item__amount {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.card-catalog {
  background: #f7f7f7;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 240px;
  height: 100%;
}
@media (max-width: 767px) {
  .card-catalog {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .card-catalog {
    -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;
    min-height: 100%;
  }
}
.card-catalog__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
		  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
@media (max-width: 550px) {
  .card-catalog__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    height: 180px;
  }
}
.card-catalog__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.card-catalog__descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 40px 30px 50px 10px;
}
@media (max-width: 550px) {
  .card-catalog__descr {
    width: 100%;
    padding: 10px 20px 30px 20px;
  }
}
.card-catalog__descr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0px 0px 0px;
}
@media (max-width: 550px) {
  .card-catalog__descr ul {
    gap: 10px 16px;
  }
}
.card-catalog__descr ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.card-catalog__descr ul li a:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .card-catalog__descr ul li a {
    font-size: 12px;
  }
}
.card-catalog__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .card-catalog__title {
    font-size: 14px;
  }
}

.card-product-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  border: 1px solid #dee0e0;
}
@media (max-width: 1550px) {
  .card-product-catalog {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-product-catalog._spoller-active .card-product-catalog__arrow svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.card-product-catalog._spoller-active .card-product-catalog__more {
  display: none;
}
.card-product-catalog._spoller-active .card-product-catalog__hide {
  display: block;
}
.card-product-catalog__arrow {
  display: none;
}
@media (max-width: 1550px) {
  .card-product-catalog__arrow {
    z-index: 15;
    cursor: pointer;
    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: #f7f7f7;
    padding: 10px 15px;
  }
  .card-product-catalog__arrow svg {
    display: block;
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    margin: 0px 0px 0px 6px;
  }
}
.card-product-catalog__arrow span {
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  color: #8d8d8d;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.card-product-catalog__arrow:hover span {
  color: var(--theme-color-accent);
}
.card-product-catalog__arrow:hover svg {
  fill: var(--theme-color-accent);
}
.card-product-catalog__hide {
  display: none;
}
.card-product-catalog__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28.3%;
          flex: 0 0 28.3%;
  position: relative;
  border-right: 1px solid #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 4px;
}
@media (max-width: 1550px) {
  .card-product-catalog__image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 15px 15px 10px 15px;
    border: none;
  }
}
.card-product-catalog__image .card-product__blocks {
  top: 4px;
  left: 4px;
}
.card-product-catalog__image .card-product__block {
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 4px;
}
.card-product-catalog__photo {
  border-radius: 10px;
  width: 98px;
  height: 98px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 6px 0px 0px;
}
@media (max-width: 1550px) {
  .card-product-catalog__photo {
    margin: 0px 0px 5px 0px;
  }
}
.card-product-catalog__title {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
}
@media (max-width: 1550px) {
  .card-product-catalog__title {
    text-align: center;
  }
}
.card-product-catalog__logo {
  position: absolute;
  top: 6px;
  right: 7px;
  height: 14.5px;
  width: auto;
}
@media (max-width: 1550px) {
  .card-product-catalog__logo {
    right: 0;
    left: 100px;
  }
}
.card-product-catalog__top-block {
  position: absolute;
  top: 4px;
  height: 100%;
  width: 100%;
  left: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1550px) {
  .card-product-catalog__tables {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 54.1%;
            flex: 1 1 54.1%;
  }
}
@media (max-width: 1550px) {
  .card-product-catalog__tables {
    margin: 5px 0px 5px 0px;
  }
}
.card-product-catalog__table {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 6.3%;
          flex: 1 1 6.3%;
  padding: 10px 5px;
  border-right: 1px solid #f4f4f4;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  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;
}
.card-product-catalog__table .icon1 {
  width: 27px;
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (max-width: 1550px) {
  .card-product-catalog__table {
    padding: 5px 15px 5px 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #f4f4f4;
  }
  .card-product-catalog__table:last-child {
    border-bottom: none;
  }
  .card-product-catalog__table .icon1 {
    width: 20px;
    top: 3px;
    right: 40px;
  }
}
.card-product-catalog__table span {
  display: none;
  font-size: 10px;
  color: #8d8d8d;
}
@media (max-width: 1550px) {
  .card-product-catalog__table span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 20px 0px 0px;
  }
}
.card-product-catalog__table .table-materials {
  gap: 4px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 80px;
}
@media (max-width: 1550px) {
  .card-product-catalog__table .table-materials {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.card-product-catalog__table .table-materials div {
  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: 4px;
  border-radius: 3px;
  width: 16px;
  height: 16px;
}
.card-product-catalog__table .table-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.card-product-catalog__table .table-type div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  height: 18px;
}
.card-product-catalog__buy {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15.8%;
          flex: 0 0 15.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 12px 10px 20px;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 16px 15px 10px 15px;
  }
}
.card-product-catalog__buy .card-product__favorites {
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  --height: 40px;
  position: relative;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  margin: 0px 0px 0px 11px;
}
.card-product-catalog__buy .card-product__favorites svg {
  margin: 2px 0px 0px 2px;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy .card-product__favorites {
    display: none;
  }
}
.card-product-catalog__buy .favorites-mob {
  display: none;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy .favorites-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 0px 0px 16px;
  }
}
.card-product-catalog__buy-descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy-descr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.card-product-catalog__buy-descr .btn-catalog {
  width: 100%;
  --height: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.card-product-catalog__buy-descr .btn-catalog svg {
  margin: 0px 10px 0px 0px;
}
.card-product-catalog__buy-descr .btn-catalog.hidden {
  display: none;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy-descr .btn-catalog {
    width: 168px;
  }
}
@media (max-width: 340px) {
  .card-product-catalog__buy-descr .btn-catalog {
    max-width: 168px;
  }
}
.card-product-catalog__buy-descr .stepcounter {
  display: none;
  width: 100%;
  height: 40px;
  border-radius: 50px;
  background-color: var(--theme-color-accent);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-product-catalog__buy-descr .stepcounter.active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy-descr .stepcounter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 163px;
            flex: 0 0 163px;
  }
}
@media (max-width: 340px) {
  .card-product-catalog__buy-descr .stepcounter {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.card-product-catalog__buy-descr .stepcounter__btn {
  border: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin: 0px 2px;
  background: #347eca;
}
.card-product-catalog__buy-descr .stepcounter__btn[data-stepcounter="-"] svg {
  width: 7px;
  fill: #fff;
}
.card-product-catalog__buy-descr .stepcounter__btn[data-stepcounter="+"] svg {
  width: 9px;
  height: 9px;
  fill: #fff;
}
.card-product-catalog__buy-descr .stepcounter__input {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.card-product-catalog__buy-descr .stock {
  font-size: 12px;
  margin: 10px 0px 0px 0px;
}
@media (max-width: 1550px) {
  .card-product-catalog__buy-descr .stock {
    display: none;
  }
}
.card-product-catalog .stock-mob {
  display: none;
  font-size: 12px;
  margin: 5px 0px 0px 0px;
}
@media (max-width: 1550px) {
  .card-product-catalog .stock-mob {
    display: block;
  }
}
.card-product-catalog__price {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  margin: 0px 0px 6px 0px;
}
@media (max-width: 1550px) {
  .card-product-catalog__price {
    margin: 0px 9px 0px 0px;
  }
}

.card-product-catalog__actions {
  position: relative;
}

.card-product-catalog__actions::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
}

.card-product-catalog__actions .spinner {
  position: absolute;
  left: calc(50% - 13px);
  top: calc(50% - 11px);
  pointer-events: none;
  z-index: 1;
  display: none;
}

.card-product-catalog__actions .spinner svg {
  fill: var(--theme-color-accent);
}

.card-product-catalog__actions.pending::after {
  display: block;
}

.card-product-catalog__actions.pending .spinner {
  display: inline-block;
}

.swiper-nav {
  width: 62px;
  height: 48px;
  border-radius: 24px;
  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;
  border: 1px var(--theme-color-accent) solid;
}
.swiper-nav_prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.swiper-nav svg {
  fill: var(--theme-color-text-common);
}
.swiper-nav:not(:disabled):hover svg, .swiper-nav:not(:disabled):focus-visible svg {
  fill: var(--theme-color-accent);
}
.swiper-nav:disabled, .swiper-nav_disabled {
  cursor: default;
}
@media (max-width: 768px) {
  .swiper-nav {
    width: 51px;
    height: 40px;
    border-radius: 20px;
  }
  .swiper-nav svg {
    max-height: 14px;
  }
}
@media (max-width: 500px) {
  .swiper-nav {
    width: 40px;
    height: 32px;
    border-radius: 16px;
  }
  .swiper-nav svg {
    max-height: 11px;
  }
}
.swiper-nav1 {
  --width: 14px;
  --height: 34px;
  width: var(--width);
  height: var(--height);
  position: absolute;
  top: calc(50% - var(--height) / 2);
  z-index: 5;
}
.swiper-nav1 svg {
  display: block;
  stroke: #fff;
  fill: none;
  margin: auto;
}
.swiper-nav1::after {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  top: 0;
  width: var(--height);
  height: 100%;
}
.swiper-nav1_prev {
  left: 30px;
}
.swiper-nav1_next {
  right: 30px;
}
.swiper-nav1_next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-navs {
  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;
}
.swiper-navs .swiper-nav_prev {
  margin-right: 10px;
}
@media (max-width: 500px) {
  .swiper-navs .swiper-nav_prev {
    margin-right: 8px;
  }
}

.swiper-navbar {
  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;
}
.swiper-navbar > *:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 20px;
}

.swiper + .swiper-navbar {
  margin-top: 20px;
}
@media (max-width: 500px) {
  .swiper + .swiper-navbar {
    margin-top: 15px;
  }
}

.swiper-pagination.swiper-pagination_custom {
  position: relative;
  font-size: 0;
  top: unset;
  bottom: unset;
  text-align: left;
}
.swiper-pagination.swiper-pagination_custom .swiper-pagination-bullet {
  margin: 5px;
  width: 20px;
  height: 2px;
  background-color: #cdcdcd;
  border-radius: 0;
  opacity: 1;
  -webkit-transition: width var(--theme-animation-duration);
  transition: width var(--theme-animation-duration);
}
.swiper-pagination.swiper-pagination_custom .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 100px;
  background-color: var(--theme-color-accent);
}

.block-news-mp .swiper-pagination.swiper-pagination_custom {
  margin-left: -2px;
  margin-right: -2px;
}

.block-news-mp .swiper-pagination.swiper-pagination_custom .swiper-pagination-bullet {
  margin: 2px;
  width: 3.5%;
  height: 2px;
}
.block-news-mp .swiper-pagination.swiper-pagination_custom .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 14%;
}

.block-similar .swiper-pagination.swiper-pagination_custom {
  margin-left: -2px;
  margin-right: -2px;
}

.block-similar .swiper-pagination.swiper-pagination_custom .swiper-pagination-bullet {
  margin: 2px;
  width: 3.5%;
  height: 2px;
}
.block-similar .swiper-pagination.swiper-pagination_custom .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 14%;
}

.block-similar .swiper + .swiper-navbar {
  margin-top: 20px;
}

.swiper-pagination:not(.swiper-pagination_custom) {
  --swiper-theme-color: var(--theme-color-accent);
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bottom: 26px;
}
@media (max-width: 640px) {
  .swiper-pagination:not(.swiper-pagination_custom) {
    --swiper-pagination-bullet-width: 9px;
    --swiper-pagination-bullet-height: 9px;
  }
}

.swiper-news {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 640px) {
  .swiper-news {
    width: calc(100% + var(--container-padding));
  }
  .swiper-news .swiper-slide {
    width: 77.4vw;
  }
}

.swiper-popular {
  border-radius: 10px;
}
.swiper-popular .swiper-slide {
  height: auto;
}
.swiper-popular .card-popular {
  height: 100%;
}

.swiper-intro1 {
  height: 100%;
  border-radius: 10px;
  min-height: 439px;
}
.swiper-intro1 .swiper-slide {
  overflow: hidden;
}
.swiper-intro1 .swiper-slide-shadow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.5);
  z-index: 1;
}
.swiper-intro1__pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.swiper-slide-active .swiper-intro1__pic {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-intro1__content {
  position: relative;
  padding: 73px 80px 80px 80px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}
.swiper-slide-active .swiper-intro1__content {
  opacity: 1;
}
.swiper-intro1__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
.swiper-intro1__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.swiper-intro1__title + .swiper-intro1__text {
  margin-top: 9px;
}
.swiper-intro1 .btn {
  margin-top: 33px;
}

.swiper-intro2 {
  height: 100%;
  min-height: 439px;
}
.swiper-intro2 .swiper-slide {
  overflow: hidden;
}
.swiper-intro2__pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 1500ms;
  transition: -webkit-transform 1500ms;
  transition: transform 1500ms;
  transition: transform 1500ms, -webkit-transform 1500ms;
}
.swiper-slide-active .swiper-intro2__pic {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-intro2__content {
  position: relative;
  padding: 73px 80px 80px 80px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}
.swiper-slide-active .swiper-intro2__content {
  opacity: 1;
}
.swiper-intro2__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
.swiper-intro2__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.swiper-intro2__title + .swiper-intro2__text {
  margin-top: 9px;
}
.swiper-intro2 .btn {
  margin-top: 33px;
}

@media (max-width: 1280px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 32px;
  }
}
@media (max-width: 1100px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 28px;
  }
  .swiper-intro1__content,
  .swiper-intro2__content {
    padding: 60px;
  }
  .swiper-intro1 .swiper-nav1_prev,
  .swiper-intro2 .swiper-nav1_prev {
    left: 20px;
  }
  .swiper-intro1 .swiper-nav1_next,
  .swiper-intro2 .swiper-nav1_next {
    right: 20px;
  }
}
@media (max-width: 1000px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 36px;
  }
  .swiper-intro1__content,
  .swiper-intro2__content {
    padding: 80px;
  }
  .swiper-intro1 .swiper-nav1_prev,
  .swiper-intro2 .swiper-nav1_prev {
    left: 30px;
  }
  .swiper-intro1 .swiper-nav1_next,
  .swiper-intro2 .swiper-nav1_next {
    right: 30px;
  }
  .swiper-intro1 .btn,
  .swiper-intro2 .btn {
    min-width: 194px;
  }
}
@media (max-width: 900px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 32px;
  }
  .swiper-intro1,
  .swiper-intro2 {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 28px;
  }
  .swiper-intro1__content,
  .swiper-intro2__content {
    padding: 60px;
  }
  .swiper-intro1 .swiper-nav1_prev,
  .swiper-intro2 .swiper-nav1_prev {
    left: 20px;
  }
  .swiper-intro1 .swiper-nav1_next,
  .swiper-intro2 .swiper-nav1_next {
    right: 20px;
  }
  .swiper-intro1,
  .swiper-intro2 {
    min-height: 344px;
  }
}
@media (max-width: 640px) {
  .swiper-intro1,
  .swiper-intro2 {
    overflow: visible;
  }
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 24px;
  }
  .swiper-intro1__content,
  .swiper-intro2__content {
    padding: 40px;
  }
  .swiper-intro1 .swiper-nav1_prev,
  .swiper-intro2 .swiper-nav1_prev,
  .swiper-intro1 .swiper-nav1_next,
  .swiper-intro2 .swiper-nav1_next {
    display: none;
  }
  .swiper-intro1 .swiper-pagination,
  .swiper-intro2 .swiper-pagination {
    --swiper-pagination-bottom: -24px;
    --swiper-pagination-bullet-inactive-color: #dee0e0;
    font-size: 0;
  }
  .swiper-intro1 .swiper-slide,
  .swiper-intro2 .swiper-slide {
    border-radius: 10px;
  }
}
@media (max-width: 500px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 22px;
  }
  .swiper-intro1__text,
  .swiper-intro2__text {
    font-size: 13px;
  }
  .swiper-intro1__title + .swiper-intro1__text,
  .swiper-intro2__title + .swiper-intro2__text {
    margin-top: 12px;
  }
  .swiper-intro1__content,
  .swiper-intro2__content {
    padding: 26px 20px;
  }
  .swiper-intro2 .btn {
    margin-top: 24px;
  }
}
@media (max-width: 400px) {
  .swiper-intro1__title,
  .swiper-intro2__title {
    font-size: 20px;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.4);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity var(--theme-animation-duration);
  transition: opacity var(--theme-animation-duration);
}
.popup-overlay_active {
  pointer-events: all;
  opacity: 1;
}

.hystmodal {
  padding: var(--container-padding);
}
.hystmodal__window {
  border-radius: 10px;
  padding: 40px 50px;
  width: 100%;
  max-width: 580px;
}
.hystmodal__close {
  background: none;
  width: 20px;
  height: 20px;
  outline: none;
  top: 24px;
  right: 30px;
  z-index: 2;
}
.hystmodal__close svg {
  fill: rgba(130, 135, 154, 0.5);
}
.hystmodal__close:focus-visible svg, .hystmodal__close:hover svg {
  fill: rgb(130, 135, 154);
}
.hystmodal__close:focus {
  outline: none;
}
.hystmodal__title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
.hystmodal__description {
  margin: 0 0 31px 0;
}
.hystmodal .textblock a {
  color: var(--theme-color-accent);
  text-decoration: none;
}
.hystmodal .textblock a:hover {
  color: var(--theme-color-accent-light);
}
.hystmodal .form-grid1 {
  gap: 20px;
}
.hystmodal .form-grid1 .btn_big {
  --height: 62px;
  margin-top: 10px;
  margin-bottom: -4px;
}
.hystmodal .form-grid1 .textblock1 {
  font-size: 14px;
}
.hystmodal .form-grid1 .textblock1 a {
  text-decoration: none;
}
.hystmodal__buttons .btn {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.hystmodal__buttons .btn:not(:last-child) {
  margin-bottom: 16px;
}
.hystmodal__buttons_horizontal {
  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: 20px;
}
.hystmodal__buttons_horizontal .btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  min-width: 0 !important;
}
.hystmodal__buttons_horizontal .btn:not(:last-child) {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .hystmodal__window {
    padding: 20px;
  }
  .hystmodal__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .hystmodal__description {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hystmodal .form-grid1 {
    gap: 13px;
  }
  .hystmodal .form-grid1 .btn_big {
    --height: 50px;
    margin-top: 8px;
    margin-bottom: 2px;
  }
  .hystmodal .form-grid1 .textblock1 {
    font-size: 10px;
  }
  .hystmodal__close {
    top: 12px;
    right: 12px;
  }
  .hystmodal__close svg {
    width: 13px;
  }
}
@media (max-width: 400px) {
  .hystmodal__buttons_horizontal {
    display: block;
  }
  .hystmodal__buttons_horizontal .btn:not(:last-child) {
    margin-bottom: 16px;
  }
}

.modal-notification {
  text-align: center;
}
.modal-notification__title {
  margin-bottom: 15px;
}
.modal-notification .textblock {
  margin-bottom: 20px;
}
.modal-notification .btn {
  text-transform: uppercase;
  min-width: 200px;
}

.spollers {
  display: grid;
  gap: 16px 0px;
}
@media (max-width: 767px) {
  .spollers {
    gap: 20px 0px;
  }
}
.spollers__item {
  background-color: rgba(247, 247, 247, 0.7);
  border-radius: 10px;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.3s ease 0s, border 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border 0.3s ease 0s;
}
.spollers__item._spoller-active {
  background-color: #fff;
  border: 1px solid var(--theme-color-accent);
}
.spollers__item._spoller-active .spollers__titles::after {
  content: "";
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.81996 1.16669L12.0018 12.0556L22.1836 1.16669' stroke='%231466b9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.spollers__titles {
  padding: 40px;
  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-align: left;
}
.spollers__titles::after {
  content: "";
  display: block;
  width: 24px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.81996 1.16669L12.0018 12.0556L22.1836 1.16669' stroke='%233F3F40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
@media (max-width: 480px) {
  .spollers__titles::after {
    width: 23px;
    height: 13px;
    margin: 0px 0px 0px 10px;
  }
}
@media (max-width: 767px) {
  .spollers__titles {
    padding: 20px;
  }
}
.spollers__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0px 20px 0px 0px;
}
.spollers__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin: 0px 0px 12px 0px;
  color: var(--theme-color-text-common);
}
@media (max-width: 767px) {
  .spollers__title {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
  }
}
.spollers__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 400;
  font-size: 16px;
  color: rgba(63, 63, 64, 0.5);
  gap: 1px;
}
@media (max-width: 767px) {
  .spollers__subtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
  }
}
.spollers__content {
  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%;
  text-align: left;
}
@media (max-width: 480px) {
  .spollers__content {
    -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: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.spollers__price {
  white-space: nowrap;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  margin: 0px 40px 0px 0px;
  color: var(--theme-color-text-common);
}
@media (max-width: 767px) {
  .spollers__price {
    font-size: 18px;
    margin: 0px 20px 0px 0px;
  }
}
@media (max-width: 480px) {
  .spollers__price {
    margin: 20px 0px 0px 0px;
  }
}
.spollers__body {
  border-top: 0.5px solid rgba(63, 63, 64, 0.3);
  margin: 0px 40px 40px 40px;
  padding: 30px 0px 0px 0px;
}
@media (max-width: 767px) {
  .spollers__body {
    margin: 0px 20px 20px 20px;
    padding: 20px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .spollers__body h4 {
    font-size: 14px;
    margin: 0px 0px 10px 0px;
  }
}
.spollers__body ul {
  margin: 0px 0px 24px 0px;
}
@media (max-width: 767px) {
  .spollers__body ul {
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 767px) {
  .spollers__body ul li {
    margin: 0px 0px 10px 0px;
  }
}
.spollers__body .btn {
  margin: 40px 0px 0px 0px;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 24px 40px;
  border-radius: 47px;
}
@media (max-width: 767px) {
  .spollers__body .btn {
    font-size: 14px;
    margin: 30px 0px 0px 0px;
    padding: 20px 40px;
  }
}
@media (max-width: 480px) {
  .spollers__body .btn {
    width: 100%;
    padding: 20px;
  }
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 992px) {
  .tabs__navigation {
    padding-right: var(--container-padding);
    margin: 0px calc(-1 * var(--container-padding)) 0px 0px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tabs__navigation::-webkit-scrollbar {
    display: none;
  }
}
.tabs__title {
  background: #f7f7f7;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  border-radius: 10px;
  padding: 24px 28px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.tabs__title._tab-active {
  pointer-events: none;
  color: #fff;
  background: var(--theme-color-accent);
}
.tabs__title._tab-active-ext {
	color: #fff;
	background: var(--theme-color-accent);
    -webkit-transition: background-color var(--theme-animation-duration);
    transition: background-color var(--theme-animation-duration);
}
.tabs__title._tab-active-ext:hover {
	color: #fff;
	background: var(--theme-color-accent-80);
}

.tabs__title:hover {
  color: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .tabs__title {
    font-size: 12px;
    padding: 14px 16.5px;
  }
}
.tabs__content {
  margin: 30px 0px 0px 0px;
}
@media (max-width: 767px) {
  .tabs__content {
    margin: 20px 0px 0px 0px;
  }
}
.tabs__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 40px;
  border: 1px solid #dee0e0;
  border-radius: 10px;
  padding: 40px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .tabs__lists {
    gap: 16px 0px;
    padding: 0px 0px 0px 0px;
    grid-template-columns: 1fr;
    border: none;
  }
}
@media (max-width: 992px) {
  .tabs__lists ul:last-child li:last-child {
    border-bottom: none;
    padding: 16px 0px 0px 0px;
  }
}
.tabs__lists ul li {
  padding: 16px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dee0e0;
}
.tabs__lists ul li:first-child {
  padding: 0px 0px 16px 0px;
}
@media (min-width: 992px) {
  .tabs__lists ul li:last-child {
    padding: 16px 0px 0px 0px;
    border-bottom: none;
  }
}
.tabs__list-name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52.5%;
          flex: 0 0 52.5%;
  font-weight: 400;
  font-size: 16px;
  color: rgba(63, 63, 64, 0.5);
  padding: 0px 10px 0px 0px;
}
@media (max-width: 767px) {
  .tabs__list-name {
    font-size: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 62.5%;
            flex: 0 0 62.5%;
  }
}
.tabs__list-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47.5%;
          flex: 0 0 47.5%;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 767px) {
  .tabs__list-value {
    font-size: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37.5%;
            flex: 0 0 37.5%;
  }
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 5px;
  bottom: 5px;
  pointer-events: none;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 10px;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
  background: #f5f5f5;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #1466b9;
  border-radius: 10px;
  width: 4px;
  left: 0;
  right: 0;
  /*opacity: 0;*/
  /*transition: opacity 0.2s linear;*/
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  /*opacity: 0.5;*/
  /*transition: opacity 0s linear;*/
}

.simplebar-track.simplebar-vertical {
  top: 5px;
  width: 4px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.footer {
  width: 100%;
  background-color: #242424;
  padding-top: 80px;
  padding-bottom: 30px;
}
@media (max-width: 1000px) {
  .footer {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .footer {
    padding-top: 20px;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: -webkit-max-content auto -webkit-max-content;
  grid-template-columns: max-content auto max-content;
  color: #fff;
  padding-bottom: 50px;
  gap: 20px;
}
.footer-top__phone {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-top__email {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 22px;
}
.footer-top__email a {
  text-decoration: underline;
}
.footer-top .socials {
  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;
  margin-left: -6px;
  margin-right: -6px;
}
.footer-top .socials > * {
  margin: 0 6px;
}
.footer-top .socials span:not(.btn) {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .footer-top {
    padding-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .footer-top {
    padding-bottom: 30px;
  }
  .footer-top__col1 a {
    display: inline-block;
    width: 150px;
  }
  .footer-top__col1 a img {
    width: 100%;
    display: block;
  }
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 23px;
    padding-bottom: 20px;
  }
  .footer-top__col1 a {
    width: 130px;
  }
  .footer-top .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-top__phone {
    margin-top: 7px;
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (max-width: 640px) {
  .footer-top__phone {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .footer-top__col1 a {
    width: 111px;
  }
  .footer-top__phone {
    font-size: 18px;
  }
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.83fr 0.97fr 1.17fr 0.4fr;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px rgba(255, 255, 255, 0.3) solid;
  padding-top: 40px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-bottom p:not(:last-child) {
  margin-bottom: 0.6em;
}
.footer-bottom__col1 p:not(:last-child) {
  margin-bottom: 1.35em;
}
.footer-bottom__col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1000px) {
  .footer-bottom {
    padding-top: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 20px;
    font-size: 12px;
  }
  .footer-bottom__col4 {
    grid-column: span 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    grid-template-columns: 1fr;
    gap: 15px 20px;
  }
  .footer-bottom__col4 {
    grid-column: auto;
  }
  .footer-bottom__col4 a {
    display: inline-block;
    width: 90px;
  }
  .footer-bottom__col4 a img {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    font-size: 10px;
  }
}

.menu3 {
  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;
  margin-left: -40px;
  margin-right: -40px;
}
.menu3 > * {
  margin-left: 40px;
  margin-right: 40px;
}
.menu3 a {
  text-transform: uppercase;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
.menu3 a:focus-visible::first-letter, .menu3 a:hover::first-letter {
  color: var(--theme-color-accent);
}
@media (max-width: 1280px) {
  .menu3 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .menu3 > * {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1100px) {
  .menu3 {
    margin-left: 0;
    margin-right: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -20px;
  }
  .menu3 > * {
    width: 50%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .menu3 a {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .menu3 a {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .menu3 {
    margin-bottom: -18px;
  }
  .menu3 > * {
    margin-bottom: 18px;
  }
  .menu3 a {
    font-size: 12px;
  }
}

.block-news {
  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;
  margin: 0px 0px 100px 0px;
}
@media (max-width: 767px) {
  .block-news {
    margin: 0px 0px 70px 0px;
  }
}
.block-news__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
}
@media (max-width: 992px) {
  .block-news__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .block-news__body {
    grid-template-columns: 1fr;
    gap: 30px 0px;
  }
}
.block-news__body .card-news__title {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

.block-news-detail {
  margin: 40px 0px 100px 0px;
}
@media (max-width: 767px) {
  .block-news-detail {
    margin: 20px 0px 70px 0px;
  }
}
.block-news-detail .title1 {
  margin: 0px 0px 16px 0px;
  line-height: 120%;
}
.block-news-detail .title1::first-letter {
  color: var(--theme-color-text-common);
}
@media (max-width: 767px) {
  .block-news-detail .title1 {
    margin: 0px 0px 20px 0px;
  }
}
.block-news-detail__content {
  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: start;
}
.block-news-detail__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .block-news-detail__top {
    margin: 0px 0px 20px 0px;
  }
}
.block-news-detail__date {
  margin: 0px 20px 0px 0px;
  padding: 12px 20px;
  background-color: var(--theme-color-accent);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .block-news-detail__date {
    margin: 0px 30px 0px 0px;
  }
}
@media (max-width: 600px) {
  .block-news-detail__date {
    font-size: 12px;
  }
}
.block-news-detail__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 131%;
  color: #1e1e1e;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.block-news-detail__share svg {
  margin: 0px 7px 0px 0px;
}
@media (max-width: 767px) {
  .block-news-detail__share svg {
    margin: 0px 13px 0px 0px;
  }
}
.block-news-detail__share svg * {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}
.block-news-detail__share:hover {
  color: var(--theme-color-accent);
}
.block-news-detail__share:hover svg * {
  fill: var(--theme-color-accent);
}
@media (max-width: 767px) {
  .block-news-detail__share {
    font-size: 14px;
  }
}
.block-news-detail__photo {
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px 0px 30px 0px;
  border-radius: 10px;
  min-height: 112px;
}
@media (max-width: 1520px) {
  .block-news-detail__photo {
    border-radius: 0px;
    margin: 0px calc(-1 * var(--container-padding)) 30px calc(-1 * var(--container-padding));
    width: calc(100% + 2 * var(--container-padding));
  }
}
@media (max-width: 767px) {
  .block-news-detail__photo {
    margin: 0px calc(-1 * var(--container-padding)) 20px calc(-1 * var(--container-padding));
  }
}

.tooltip-inner {
    font-size: 12px;
    line-height: 120%;
    color: #d60000;
    margin: 6px 0px 0px 0px;
}

.has-error .field-input1 {
    border: 1px solid #d60000;
}

.bx-soa-pp-desc-container {
  display: none;
}

#bx-soa-user {
  margin-top: 20px;
}

#bx-soa-properties .bottom-block-order__title {
  display: none;
}



/***********/
    .delivery {
        display: flex;
        gap: 40px;
    }

    .delivery__content {
        flex: 1;
    }

    .delivery__sidebar {
        width: 100%;
        max-width: 350px;
        flex-shrink: 0;
    }

    .delivery__menu {
        border: 1px solid #DEE0E0;
        border-radius: 10px;
        padding: 24px 30px;
        background: #fff;
    }

    .delivery__menu-item {
        font-weight: 500;
        display: block;
        color: #3F3F40;
        text-decoration: none;
        padding: 8px 0;
        font-size: 16px;
    }

    .delivery__menu-item:last-child {
        padding: 8px 0 0 0;
    }

    .delivery__menu-item:first-child {
        padding: 0 0 8px 0;
    }

    .delivery__menu-item_active {
        color: #1466B9;
        font-weight: 700;
    }

    .delivery__cont-info {
        display: flex;
        gap: 10px;
    }

    .delivery__cont-info--item {
        border-radius: 10px;
        padding: 40px 25px 40px 40px;
        border: 1px solid #1466B9;
    }

    .delivery__cont-info--l {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
    }

    .delivery__cont-info--item p {
        padding: 0;
        margin: 0;
        color: #3F3F40;
    }

    .delivery__cont-info--item p.title {
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
        padding-bottom: 16px;
    }

    .delivery__cont-info--item p.desk {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .delivery__content-title {
        margin-bottom: 30px;
        font-weight: 400;
        font-size: 40px;
        line-height: 100%;
        text-transform: uppercase;
    }

    .delivery__cont-bottom {
        margin-top: 30px;
    }

    .delivery__cont-bottom p {
        color: #3F3F40;
        font-weight: 400;
        font-size: 16px;
    }

    .delivery__cont-img {
        margin-bottom: 65px;
    }

    .delivery__cont-img img {
        width: 100%;
    }

    @media (max-width:1290px) {
        .delivery {
            flex-direction: column;
        }

        .delivery__cont-info--item {
            padding: 20px;
        }

        .delivery__cont-info--item p.title {
            font-size: 18px;
            padding-bottom: 10px;
        }

        .delivery__cont-info {
            flex-direction: column;
        }
    }

    @media (max-width:992px) {
        .delivery__menu {
            border-radius: 8px;
            padding: 8px 20px;
            position: relative;
            cursor: pointer;
        }

        .delivery__menu-item {
            display: none;
        }

        .delivery__menu-item:first-child,
        .delivery__menu-item:last-child {
            border-top: none;
            padding: 8px 0;
        }

        .delivery__menu-item_active {
            display: block;
            border: none;
        }

        .delivery__menu-item_active {
            color: #3F3F40;
        }

        .delivery__menu::after {
            content: '';
            position: absolute;
            right: 13px;
            top: 27px;
            transform: translateY(-50%);
            width: 13px;
            height: 8px;
            background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.36256 4.95L11.3126 0L12.7266 1.414L6.36256 7.778L-0.00143814 1.414L1.41256 0L6.36256 4.95Z' fill='%233F3F40'/%3E%3C/svg%3E%0A");
            transition: transform 0.3s;
        }

        .delivery__menu_open::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .delivery__menu_open .delivery__menu-item {
            display: block;
        }
    }

    @media (max-width:722px) {
        .delivery__cont-info--r-inner img {
            width: 100%;
        }

        .delivery__cont-bottom p {
            font-size: 14px;
        }

        .delivery__content-title {
            margin-bottom: 20px;
            font-size: 25px;
        }

        .delivery__cont-img {
            margin-bottom: 20px;
        }

        .delivery__cont-info--item p.desk {
            font-size: 14px;
        }
    }
.container__contacts {
  display: flex;
}

.header__user {
    position: relative;
    display: inline-block;
}

.header__logout {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 125px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 12px;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 10;
}

.header__user:hover .header__logout {
    display: block;
}
.header__logout:hover {
    background: #f2f2f2;
}

@media (max-width:1300px) {
  .header__user {
    display: flex;
  }
  .header__logout {
    display: block;
    position: relative;
  }
}