@charset "UTF-8";

:root {
  --content-width: 1820px;
  --content-fluid-width: 1700px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-fluid-width: calc(var(--content-fluid-width) + (var(--container-offset) * 2));
  --font-family: "Montserrat", sans-serif;
  --outline: #e3ebf2;
  --main-color: #1D1D1B;
  --gray: #8b8b8b;
  --black: #1d1d1b;
  --dark: #2b2b2a;
  --yellow: #ffde00;
  --white: #fff;
  --light: #f5f5f5;
  --dark-grey: #63635f;
  --light-grey: #e4e4e4;
  --tachki-primary: #c9272e;
  --tachki-primarydark: #be1212;
  --tachki-black: #1f1f1f;
  --tachki-stroke: #e6e6e6;
  --tachki-black60: rgba(31, 31, 31, 0.6);
  --tachki-black40: rgba(31, 31, 31, 0.4);
  --tachki-light: #f3f3f3;
  --tachki-light-hover: #fafafa;
  --tachki-white: #fff;
  --tachki-white40: rgba(255, 255, 255, 0.4);
  --tachki-icons: #727272;
  --tachki-green: #0cad0c;
}

/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable */

.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */

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

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

input[type=range] {
  -webkit-appearance: none;
  /* Скрывает слайдер, чтобы можно было создать свой */
  width: 100%;
  /* Указание параметра ширины требуется для Firefox. */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
  /* Убирает голубую границу у элемента. Хотя, возможно, и стоит создавать некоторое оформления для состояния фокуса в целях обеспечения доступности. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  /* Скрывает слайдер, чтобы можно было добавить собственные стили. */
  border-color: transparent;
  color: transparent;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

button,
input,
select,
textarea {
  font: inherit;
  outline: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

ul[class] {
  list-style: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  list-style: none;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s linear, color 0.2s linear, background-color 0.2s linear;
  -o-transition: opacity 0.2s linear, color 0.2s linear, background-color 0.2s linear;
  transition: opacity 0.2s linear, color 0.2s linear, background-color 0.2s linear;
}

a svg {
  -webkit-transition: fill 0.2s linear, stroke 0.2s linear;
  -o-transition: fill 0.2s linear, stroke 0.2s linear;
  transition: fill 0.2s linear, stroke 0.2s linear;
}

a:hover {
  opacity: 1;
  text-decoration: none;
}

button {
  -webkit-transition: opacity 0.2s linear, color 0.2s linear;
  -o-transition: opacity 0.2s linear, color 0.2s linear;
  transition: opacity 0.2s linear, color 0.2s linear;
  cursor: pointer;
}

button svg {
  -webkit-transition: fill 0.2s linear, stroke 0.2s linear;
  -o-transition: fill 0.2s linear, stroke 0.2s linear;
  transition: fill 0.2s linear, stroke 0.2s linear;
}

button:hover {
  opacity: 1;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background-color: transparent;
}

.btn-check:focus + .btn,
.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

a {
  text-decoration: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal-footer button:active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

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

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

html,
body {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: var(--main-color);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

html {
  scroll-behavior: smooth;
}

body.hidden {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

table {
  border-spacing: 0;
  width: 100%;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.sect.pb-0 {
  padding-bottom: 0;
}

.sect.pt-0 {
  padding-top: 0;
}

.formSelect {
  border: 1px solid var(--tachki-stroke);
  border-radius: 30px;
  height: 52px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../img/icons/arrow-down.svg") no-repeat right 20px center/20px;
}

.formText {
  height: 100px;
  border-radius: 30px;
  border: 1px solid var(--tachki-stroke);
  background-color: #ffffff;
  width: 100%;
  padding: 16px 20px;
  font-weight: 500;
}

.formText::-webkit-input-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formText::-moz-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formText:-ms-input-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formText::-ms-input-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formText::placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formText.placeholder-uppercase::-webkit-input-placeholder {
  text-transform: uppercase;
}

.formText.placeholder-uppercase::-moz-placeholder {
  text-transform: uppercase;
}

.formText.placeholder-uppercase:-ms-input-placeholder {
  text-transform: uppercase;
}

.formText.placeholder-uppercase::-ms-input-placeholder {
  text-transform: uppercase;
}

.formText.placeholder-uppercase::placeholder {
  text-transform: uppercase;
}

.formInput {
  height: 52px;
  border-radius: 30px;
  border: 1px solid var(--tachki-stroke);
  background-color: #ffffff;
  width: 100%;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
}

.formInput--120 {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.formInput::-webkit-input-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formInput::-moz-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formInput:-ms-input-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.headerNav ul li a {
  white-space: nowrap;
}

.agreement {
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
}

.agreement label {
  display: block;
  flex-shrink: 0;
}

.agreement .agreementText {
  font-size: 13px;
  line-height: 154%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #5c5c5c;
  text-underline-offset: 3px;
}

.agreement .agreementText .agreementLink {
  color: inherit;
  text-decoration: inherit;
  pointer-events: auto;
}

.formInput::-ms-input-placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formInput::placeholder {
  color: var(--tachki-black40);
  font-size: 16px;
}

.formInput--search {
  padding-right: 85px;
}

.formInput--search:focus {
  border-color: var(--yellow);
}

.formInput.border-none {
  border: none;
}

.formInput--calendar {
  background: url("../img/icons/calendar.svg") no-repeat right 20px center;
}

.formInput.placeholder-uppercase::-webkit-input-placeholder {
  text-transform: uppercase;
}

.formInput.placeholder-uppercase::-moz-placeholder {
  text-transform: uppercase;
}

.formInput.placeholder-uppercase:-ms-input-placeholder {
  text-transform: uppercase;
}

.formInput.placeholder-uppercase::-ms-input-placeholder {
  text-transform: uppercase;
}

.formInput.placeholder-uppercase::placeholder {
  text-transform: uppercase;
}

.formInput--error {
  border-color: #FF0000;
}

.searchW button {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.searchW .search-clear {
  right: 55px;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.searchW .search-clear.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.searchW .search-clear:hover {
  opacity: 0.85;
}

.searchW:has(.formInput:focus) .search-clear {
  opacity: 1;
  visibility: visible;
}

.select-wrapper .form-label {
  position: absolute;
  top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--tachki-black40);
  left: 22px;
  z-index: 1;
}

.select-wrapper {
  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;
}

.sectHead {
  margin-bottom: 40px;
}

.pageSect {
  padding-top: 40px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  position: relative;
  background-color: #fff;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.container {
  padding: 0 var(--container-offset);
}

.container-fluid {
  max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-family);
  color: var(--main-color);
  font-weight: 600;
  line-height: normal;
}

h1,
.h1 {
  font-size: 40px;
  font-weight: 800;
}

h1.h1--lg,
.h1.h1--lg {
  font-size: 56px;
  line-height: 129%;
}

h2,
.h2 {
  font-size: 32px;
  font-weight: 700;
}

h2.h2--lg,
.h2.h2--lg {
  font-size: 40px;
}

h3,
.h3 {
  font-size: 24px;
}

.underline {
  text-decoration: underline;
}

@-webkit-keyframes shows {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shows {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.content > p {
  margin-bottom: 15px;
}

.content > p a {
  display: inline;
  border-bottom: 1px solid #000;
}

.content > ul {
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-type: disc;
  padding-left: 20px;
}

.content > a {
  display: inline;
  border-bottom: 1px solid #000;
}

.content--hidden {
  position: relative;
  overflow: hidden;
  -webkit-line-clamp: 15;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.content-p-0 > p {
  margin-bottom: 0;
}

.content-p-0 > ul {
  margin-bottom: 0;
  margin-top: 0;
}

.navArrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.navArrowW--white .navArrow svg {
  stroke: var(--white);
}

.navArrow:hover {
  background-color: var(--light);
}

.navArrow:hover svg {
  stroke: var(--dark);
}

.navArrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.navArrow svg {
  width: 32px;
  height: 32px;
  fill: transparent;
  stroke: var(--dark-grey);
}

.bg--light {
  background-color: var(--light);
}

.bg-light-grey {
  background-color: var(--light-grey);
}

.bg-tachki-light {
  background: var(--tachki-light);
}

.bg--yellow {
  background-color: var(--yellow);
}

.bg--dark {
  background-color: var(--dark);
}

.color-white {
  color: #fff;
}

.color-5c5 {
  color: #5c5c5c;
}

.color-black {
  color: var(--black);
}

.color-dark {
  color: var(--dark);
}

.color-dark-grey {
  color: var(--dark-grey);
}

.color-dark-grey--arrow {
  padding-right: 20px;
  background: url("../img/icons/arrow-down.svg") no-repeat right center/16px;
}

.color-dark-grey--arrow-up {
  background: url("../img/icons/arrow-up.svg") no-repeat right center/16px;
}

.color-tachki-black40 {
  color: var(--tachki-black40);
}

.color-tachki-black60 {
  color: var(--tachki-black60);
}

a.hover-yellow:hover {
  color: var(--yellow);
}

.fz-11 {
  font-size: 11px;
  line-height: 127%;
}

.fz-12 {
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.01em;
}

.fz-13 {
  font-size: 13px;
  line-height: 20px;
}

.fz-14 {
  font-size: 14px;
  line-height: 20px;
}

.fz-20 {
  font-size: 20px;
  line-height: 150%;
}

.fz-24 {
  font-size: 24px;
  line-height: 133%;
}

.fz-28 {
  font-size: 28px;
  line-height: 130%;
}

.fz-32 {
  font-size: 32px;
  line-height: 125%;
}

.gap-6 {
  gap: 6px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-70 {
  margin-bottom: 70px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-30 {
  border-radius: 30px;
}

.rounded-40 {
  border-radius: 40px;
}

.rounded-60 {
  border-radius: 60px;
}

.ls-004 {
  letter-spacing: 0.04em;
}

.radioW.radioW-modals input:checked + label {
  border-color: var(--yellow);
}

.radioW.radioW-modals label {
  border: 1px solid var(--dark-grey);
}

.radioW input {
  display: none;
}

.radioW input:checked + label {
  background: var(--yellow);
  color: var(--dark);
}

.radioW label {
  background: var(--white);
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-grey);
  cursor: pointer;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.radioW label.fz-13 {
  font-size: 13px;
  padding-left: 12px;
  padding-right: 12px;
}

.radioW label.fz-14 {
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
}

.radioW label:hover {
  background-color: var(--yellow);
  color: var(--black);
}

.agreement input {
  display: none;
}

.agreement input:checked + label .rect {
  background-image: url("../img/icons/checked.svg");
}

.agreement label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  cursor: pointer;
}

.agreement label .rect {
  border: 1px solid var(--light-grey);
  background-color: #fff;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
}

.agreement label .agreementText {
  font-size: 13px;
  line-height: 154%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #5c5c5c;
  text-underline-offset: 3px;
}

.order .agreement label .agreementText {
  font-size: 13px;
  line-height: 154%;
}

.label-item input {
  display: none;
}

.label-item input:checked + label {
  color: var(--black);
  pointer-events: none;
}

.label-item input:checked + label:hover {
  background-color: var(--light);
}

.label-item input:checked + label svg {
  stroke: var(--black);
}

.border-light-grey {
  border: 1px solid var(--light-grey);
}

.border-t-light-grey {
  border-top: 1px solid var(--light-grey);
}

.border-yellow {
  border: 1px solid var(--yellow);
}

.border-yellow.border-w-3 {
  border-width: 3px;
}

.border-tachki-stroke {
  border: 1px solid var(--tachki-stroke);
}

.border-r-tachki-stroke {
  border-right: 1px solid var(--tachki-stroke);
}

.pt-12 {
  padding-top: 12px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.px-45.px-sm-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mt-40 {
  margin-top: 40px;
}

.pos-relative {
  position: relative;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.dot-leader {
  border-bottom: 1px dotted var(--tachki-black40);
  /* Adjust color and thickness here */
  height: 1px;
}

.dot-leader-item {
  display: none;
}

.dot-leader-item:nth-child(1),
.dot-leader-item:nth-child(2),
.dot-leader-item:nth-child(3),
.dot-leader-item:nth-child(4),
.dot-leader-item:nth-child(5) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dot-leader-wrap.content--visible .dot-leader-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-floating > label {
  color: var(--tachki-black40);
  padding-left: 20px;
  font-weight: 500;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding-left: 20px;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  text-overflow: unset !important;
  width: unset;
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  text-overflow: unset !important;
  width: unset;
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  -o-text-overflow: unset !important;
     text-overflow: unset !important;
  width: unset;
}

.ml-auto {
  margin-left: auto;
}

.air-datepicker-global-container {
  z-index: 1111;
}

.process-wrap {
  background-color: var(--light-grey);
  height: 4px;
  width: 100%;
  position: relative;
}

.process-wrap .process-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #FF0F3F;
}

.process-wrap .process-line.bg-yellow {
  background-color: var(--yellow);
}

.process-wrap .process-line.bg-green {
  background-color: #82d714;
}

.docFileWrap {
  border: 1px solid #d7dbec;
  position: relative;
}

.docFileImg {
  max-width: 196px;
  max-height: 196px;
}

.docFileAction {
  position: absolute;
  right: 20px;
  top: 20px;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 52px;
  padding-left: 24px;
  padding-right: 24px;
  cursor: pointer;
}

.button--lg {
  height: 65px;
}

.button--white {
  background-color: #fff;
}

.button--white.color-dark-grey:hover {
  background-color: var(--dark);
  color: #fff;
}

.button--yellow {
  background-color: var(--yellow);
  color: var(--dark);
}

.button--yellow:hover {
  background-color: #e8ca00;
}

.button--yellow .btn-round {
  border: 1px solid var(--dark-grey);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
}

.button--yellow .btn-round svg {
  fill: transparent;
  stroke: var(--dark);
  stroke-width: 2px;
}

.button--dark {
  background-color: var(--dark);
}

.button--dark:hover {
  background-color: var(--black);
}

.button--dark .btn-round {
  border: 1px solid var(--dark-grey);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
}

.button--dark .btn-round svg {
  fill: transparent;
  stroke: var(--white);
  stroke-width: 2px;
}

.button--transparent-dark-grey {
  border: 1px solid var(--dark-grey);
}

.button--transparent-dark-grey:hover {
  background-color: var(--dark);
  color: #fff;
}

.button--transparent-dark-grey:hover svg {
  fill: #fff !important;
}

.button--transparent-dark-grey svg {
  fill: var(--dark-grey) !important;
  stroke: transparent !important;
  stroke-width: 1.5px;
}

.button--transparent-dark {
  border: 1px solid var(--dark);
  background-color: rgba(255, 255, 255, 0.6);
}

.button--transparent-dark:hover {
  background-color: var(--dark);
  color: #fff;
}

.button--transparent-dark:hover svg {
  fill: var(--white) !important;
}

.button--transparent-dark svg {
  fill: var(--dark) !important;
  stroke: transparent !important;
  stroke-width: 1px;
}

.button--light {
  background-color: var(--light);
  color: var(--dark-grey);
}

.button--light svg {
  stroke: var(--dark-grey);
  stroke-width: 1px;
}

.button--light:hover {
  background-color: var(--tachki-black40);
  color: var(--black);
}

.button--light:hover svg {
  stroke: var(--black);
}

.button--light.color-black {
  color: var(--black);
}

.button.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.button.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.button.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.button.h-40 {
  height: 40px;
}

.button.h-44 {
  height: 44px;
}

.button.h-48 {
  height: 48px;
}

.button.fz-14 {
  font-size: 14px;
}

.button.h-fit {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.button.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.button svg {
  width: 20px;
  height: 20px;
  stroke: #000;
}

.button .catalog-control-icon {
  width: 20px;
  height: 20px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.button .catalog-control-icon.catalog-control-icon--desc {
  transform: rotate(180deg);
}

.catalog-sort-wrap .label-item .button--light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.static-page-content-wrap {
  max-width: 900px;
}

.company-stat-card {
  background-color: var(--light);
}

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

.company-content-text {
  width: 100%;
}

.sellItemImg--base-layer {
  z-index: 0;
}

.product-credit-icon {
  width: 32px;
}

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

.button:disabled {
  pointer-events: none;
  opacity: 0.4;
}

.button.btn-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 0;
  padding-right: 0;
}

.button.btn-round svg {
  width: 24px;
  height: 24px;
}

.headerCatalogBtn {
  border: 1px solid var(--light-grey);
  border-radius: 30px;
  padding: 0px 24px;
  font-size: 14px;
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}

.headerCatalogBtn:hover {
  border-color: var(--dark);
}

.sortBtn svg {
  fill: transparent;
  stroke: var(--dark-grey);
  stroke-width: 2px;
}

.headerSearchBtn.active {
  background: url("../img/icons/close-orange.svg") no-repeat center center/24px;
}

.headerSearchBtn.active img {
  opacity: 0;
  visibility: hidden;
}

.headerSearchBtn:hover {
  opacity: 0.85;
}

.button-text:hover {
  color: var(--dark-grey);
}

.phone-action span:nth-child(2) {
  display: none;
}

.phone-action.active span:nth-child(1) {
  display: none;
}

.phone-action.active span:nth-child(2) {
  display: block;
}

/* Hamburger Menu */

.hamburger {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  display: none;
  background-image: url("../img/icons/burger.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.hamburger.active {
  background-image: url("../img/icons/close-orange.svg");
}

.modal {
  border-radius: 7px;
  padding: 64px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--main-color);
}

.modal .contactsIcon {
  width: 32px;
}

.modal.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.modal .h2 {
  font-size: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.modal::-webkit-scrollbar {
  width: 6px;
  height: 100%;
  /* Ширина всего элемента навигации */
}

.modal::-webkit-scrollbar-track {
  background: var(--light);
  /* Цвет дорожки */
  border-radius: 20px;
}

.modal::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  /* Цвет бегунка */
  border-radius: 20px;
  /* Округление бегунка */
  /* Оформление границ бегунка */
}

.modal-480 {
  width: 480px;
}

#modal-city {
  width: 560px;
}

.f-button.is-close-btn {
  background-color: transparent;
  top: 20px;
  right: 20px;
  border-radius: 12px;
}

.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  background-color: var(--background);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tabs__nav-btn {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 40px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: var(--light);
  color: var(--dark-grey);
  -webkit-transition: color 0.2s linear, background-color 0.2s linear;
  -o-transition: color 0.2s linear, background-color 0.2s linear;
  transition: color 0.2s linear, background-color 0.2s linear;
}

.tabs__nav-btn:hover {
  background-color: var(--tachki-black40);
  color: #000;
}

.tabs__nav-btn--active {
  background-color: #000;
  color: #fff;
  pointer-events: none;
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
}

.galTabs .tabs__nav-btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.galTabs .tabs__nav-btn:hover {
  background-color: var(--yellow);
  color: var(--dark);
}

.galTabs .tabs__nav-btn--active {
  background-color: var(--yellow);
  color: var(--dark);
}

.galTabs .tabs__nav-btn.fz-14 {
  font-size: 14px;
}

.breadcrumbs {
  padding-top: 40px;
  position: relative;
}

.breadcrumbs.pt-32 {
  padding-top: 32px;
}

.breadcrumbs .sep {
  color: var(--black);
}

.breadcrumbs ul {
  font-size: 13px;
  color: var(--grey3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 300;
}

.breadcrumbs ul li a {
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: var(--dark-grey);
}

.breadcrumbs ul li a:hover {
  color: var(--yellow);
}

.breadcrumbs ul li:nth-child(1) a {
  color: var(--dark);
}

.breadcrumbs ul li:nth-child(1) a:hover {
  color: var(--yellow);
}

.breadcrumbs-intro {
  padding-left: 40px;
  margin-bottom: 130px;
}

.breadcrumbs-intro ul li:nth-child(1) a {
  color: var(--yellow);
}

.breadcrumbs-intro ul li:nth-child(2) span {
  color: var(--yellow);
}

.breadcrumbs-intro ul li a {
  color: #fff;
}

.breadcrumbs-intro .sep {
  color: #fff;
}

.breadcrumbs-intro ul li span {
  color: #fff;
}

.pagination {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.pagination ul {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.pagination ul li {
  color: var(--dark-grey);
}

.pagination ul li a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  border-radius: 20px;
  background-color: transparent;
}

.pagination ul li a:hover {
  background-color: var(--yellow);
  color: var(--dark);
}

.pagination ul li.active:hover {
  opacity: 1;
}

.pagination ul li.active a {
  color: var(--dark);
  pointer-events: none;
  background-color: var(--yellow);
  font-weight: 600;
}

.pagination ul li.disabled a {
  pointer-events: none;
  color: rgba(221, 221, 221, 0.7);
}

.pagination ul .pag-arrow {
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.pagination ul .pag-arrow a:hover {
  background-color: var(--light);
}

.pagination ul .pag-arrow svg {
  stroke: var(--dark-grey);
  fill: transparent;
  width: 32px;
  height: 32px;
}

.pagination ul .pag-arrow:hover svg {
  stroke: var(--dark);
}

.pagination ul .pag-arrow.pag-arrow-none a {
  pointer-events: none;
}

.pagination ul .pag-arrow.pag-arrow-none a svg {
  stroke: var(--light-grey);
  fill: transparent;
}

.header {
  z-index: 4;
  width: 100%;
  padding-top: 0;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.header.active {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.header.header-fixed-hide {
  -webkit-transform: translateY(-150px);
  -ms-transform: translateY(-150px);
  transform: translateY(-150px);
}

.headerW {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background: var(--white);
  border-radius: 40px;
  padding: 13px 40px;
  border: 1px solid var(--light-grey);
}

.header .logo:hover {
  opacity: 0.85;
}

.header .logo img {
  width: 145px;
}

.headerNav.active {
  display: block;
  -webkit-animation: shows 0.2s;
  animation: shows 0.2s;
}

.headerNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.headerNav ul li a {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headerNav ul li a:hover {
  color: var(--yellow);
}

.headerContactItem {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
}

.headerContactItem:hover {
  color: var(--yellow);
}

.header-offset {
  padding-top: 120px;
}

.search-action-field {
  right: 35px;
  width: calc(100% - 35px);
  display: none;
}

.search-action-field.active {
  display: block;
}

.search-action-field .formInput {
  border: 1px solid var(--dark-grey);
}

.search-action-field .formInput:focus {
  border-color: var(--yellow);
}

.intro {
  padding-top: 235px;
  padding-bottom: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(31, 31, 31, 0.6);
}

.introContent {
  padding-left: 100px;
  padding-right: 20px;
}

.intro-catalog {
  padding-top: 130px;
}

.intro-sell {
  padding-bottom: 180px;
}

.grid-cols-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [12];
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.grid-cols-2 .col:nth-child(1) .select-wrapper select,
.grid-cols-2 .col:nth-child(1) .select-wrapper input,
.grid-cols-2 .col:nth-child(1) .select-wrapper .select2-container--default .select2-selection--single {
  border-radius: 30px 0 0 30px;
}

.grid-cols-2 .col:nth-child(2) .select-wrapper select,
.grid-cols-2 .col:nth-child(2) .select-wrapper input,
.grid-cols-2 .col:nth-child(2) .select-wrapper .select2-container--default .select2-selection--single {
  border-radius: 0 20px 20px 0;
  border-left: 1px solid var(--tachki-stroke);
}

.grid-cols-2 .col:nth-child(2) .select-wrapper select:hover,
.grid-cols-2 .col:nth-child(2) .select-wrapper input:hover,
.grid-cols-2 .col:nth-child(2) .select-wrapper .select2-container--default .select2-selection--single:hover {
  border-color: var(--tachki-black60);
}

.grid-cols-2 .col:nth-child(2) .select-wrapper select:focus,
.grid-cols-2 .col:nth-child(2) .select-wrapper input:focus,
.grid-cols-2 .col:nth-child(2) .select-wrapper .select2-container--default .select2-selection--single:focus {
  border-color: var(--tachki-black60);
}

.grid-col-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black40);
}

.form-select-position-normal select {
  padding-top: 0;
  padding-bottom: 0;
}

.col-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--tachki-black40);
  margin-bottom: 8px;
  display: block;
}

.podbor-filter-body {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background: var(--light);
  border: 1px solid var(--light-grey);
  border-radius: 40px;
  padding: 24px;
}

.podbor-filter-form {
  opacity: 1;
  transition: opacity 0.15s linear;
}

.select-wrapper select.select-field,
.select-wrapper select.select-info {
  border: none;
  width: 100%;
  height: 52px;
  padding-top: 15px;
  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;
  border-radius: 30px;
  border: 1px solid #e6e6e6;
  padding-left: 20px;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("../img/icons/arrow-down.svg") no-repeat right 20px center/20px;
  background-color: #fff;
  cursor: pointer;
  padding-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}

.select-wrapper select.select-field:hover,
.select-wrapper select.select-info:hover,
.select-wrapper select.select-field:focus,
.select-wrapper select.select-info:focus {
  border-color: var(--tachki-black60);
}

.podbor-filter-form.is-enhanced .select-wrapper select.select-field,
.podbor-filter-form.is-enhanced .select-wrapper select.select-info {
  visibility: hidden;
}

.podbor-filter-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.podbor-filter-grid .column-4 {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

.podbor-filter-grid .column-3 {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.podbor-filter-grid .column-8 {
  -ms-grid-column-span: 8;
  grid-column: 8 span;
}

.podbor-filter-action {
  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;
}

.input-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0 !important;
}

.input-hidden label {
  display: none;
}

.podbor-filter-more.active img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.podbor-filter-right {
  padding-bottom: 7px;
}

.podbor-filter-right .logo img {
  width: 138px;
}

.podbor-filter-more.active img {
  bottom: 1px;
}

.selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.select2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select2-container--default .select2-selection--single {
  border: none;
  width: 100%;
  height: 52px;
  padding-top: 15px;
  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;
  border-radius: 30px;
  border: 1px solid #e6e6e6;
  padding-left: 20px;
  padding-right: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("../img/icons/arrow-down.svg") no-repeat right 20px center/20px;
  background-color: #fff;
  cursor: pointer;
  padding-bottom: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}

.select2-container--default .select2-selection--single:hover {
  border-color: var(--tachki-black60);
}

.select2-container--default .select2-selection--single:focus {
  border-color: var(--tachki-black60);
}

.dropdown-wrapper {
  display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--dark-grey);
  border-radius: 12px;
  padding-left: 10px;
}

.select2-results__message {
  font-size: 14px;
  margin-left: 5px;
}

.select2-container--default .select2-results__option--selected {
  border-radius: 12px;
  background-color: transparent;
}

.podbor-item-image:hover {
  opacity: 0.85;
}

.podbor-item-image img {
  width: 186px;
  height: 186px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.podbor-item-col:nth-child(1) {
  width: 370px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 12px;
  border-right: 2px solid var(--stroke);
}

.podbor-item-col:nth-child(2) {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

.podbor-item-col:nth-child(3) {
  width: 290px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-left: 20px;
  border-left: 2px solid var(--stroke);
}

.podbor-item-price-cont {
  letter-spacing: 0.04em;
}

.podbor-param-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.podbor-param-col {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  overflow: hidden;
}

.podbor-param-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.podbor-param-item:not(:last-child) {
  margin-bottom: 6px;
}

.podbor-param-item::after {
  background-image: -o-radial-gradient(circle, var(--black40) 1px, transparent 1.5px);
  background-image: radial-gradient(circle, var(--black40) 1px, transparent 1.5px);
  background-position: bottom;
  background-size: 4px 1px;
  background-repeat: space no-repeat;
  min-width: 40px;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1em;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.podbor-param-item span:nth-child(1) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-right: 4px;
}

.podbor-param-item span:nth-child(3) {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding-left: 4px;
  max-width: 80px;
}

.select2-container--open .select2-dropdown--below {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 8px;
  padding-left: 8px;
  border-top: 1px solid var(--tachki-stroke);
  border: 1px solid var(--tachki-stroke);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05), 0 11px 11px 0 rgba(0, 0, 0, 0.04), 0 25px 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05), 0 11px 11px 0 rgba(0, 0, 0, 0.04), 0 25px 15px 0 rgba(0, 0, 0, 0.03);
}

.select2-container--open .select2-dropdown--above {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 8px;
  padding-left: 8px;
  border-top: 1px solid var(--tachki-stroke);
  border: 1px solid var(--tachki-stroke);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05), 0 11px 11px 0 rgba(0, 0, 0, 0.04), 0 25px 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05), 0 11px 11px 0 rgba(0, 0, 0, 0.04), 0 25px 15px 0 rgba(0, 0, 0, 0.03);
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.catalog-sect {
  padding-top: 0;
  margin-top: -120px;
  position: relative;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-color: var(--yellow);
}

.select2-search--dropdown {
  padding-left: 0;
  padding-right: 0;
}

.select2-search--dropdown .select2-search__field {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
}

.catalogGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.catalogGrid .productCard {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.catalogGrid .banerCard {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.productCard {
  -webkit-box-shadow: 0 2px 8px 0 rgba(134, 134, 134, 0.09);
          box-shadow: 0 2px 8px 0 rgba(134, 134, 134, 0.09);
  background: var(--white);
  border: 1px solid var(--tachki-stroke);
  border-radius: 40px;
  padding: 8px;
  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;
}

.productCardTag {
  position: absolute;
  left: 13px;
  bottom: 13px;
  background: #45c302;
  border-radius: 30px;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.productCardImg {
  position: relative;
}

.productCardImg:hover {
  opacity: 0.85;
}

.productCardImg img {
  border-radius: 32px;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.productCardTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.productCardTitle:hover {
  color: var(--yellow);
}

.productCardDescr {
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
}

.productCardContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}

.productCardContentT {
  padding-top: 16px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
}

.productCardContentB {
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 16px;
}

.productCard--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.productCard--row .productCardImg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.productCard--row .productCardImg img {
  width: 240px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.productCard--row .productCardContent {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.productCard--row .productCardContentT {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.productCard--row .productCardContentB {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  border-left: 1px solid var(--tachki-stroke);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.productCard--row .productCardPrice {
  color: var(--tachki-black);
}

.banerCard {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  background: var(--yellow);
  border-radius: 30px;
  height: 100%;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.banerCardTitle {
  font-weight: 800;
  font-size: 80px;
  line-height: 125%;
  text-align: center;
}

.banerCardImg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.banerCard .button {
  position: relative;
  z-index: 1;
}

.relatedSlider .swiper-slide {
  height: auto;
}

.productCardCity {
  color: var(--tachki-black60);
}

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

.catalog-sort-wrap.active {
  display: block;
}

.creditContent {
  padding: 40px 64px 64px;
  width: 100%;
}

.calculator-logos .swiper-wrapper.logos-marquee {
  animation: logos-marquee var(--logos-duration, 10s) linear infinite reverse;
}

.calculator-logos .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

@-webkit-keyframes logos-marquee {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(calc(-1 * var(--logos-distance, 300px)));
            transform: translateY(calc(-1 * var(--logos-distance, 300px)));
  }
}

@keyframes logos-marquee {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(calc(-1 * var(--logos-distance, 300px)));
            transform: translateY(calc(-1 * var(--logos-distance, 300px)));
  }
}

@-webkit-keyframes logos-marquee-x {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(calc(-1 * var(--logos-distance, 300px)));
            transform: translateX(calc(-1 * var(--logos-distance, 300px)));
  }
}

@keyframes logos-marquee-x {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(calc(-1 * var(--logos-distance, 300px)));
            transform: translateX(calc(-1 * var(--logos-distance, 300px)));
  }
}

.calculator-logos {
  padding-left: 80px;
  padding-right: 80px;
  border-left: 1px solid var(--light-grey);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-right: 0;
  height: 730px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.calculator-logos .swiper-slide {
  width: 114px;
  height: 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calculator-logos .swiper-slide img {
  max-width: 77px;
}

[data-cc-root] .range-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}

[data-cc-root] .range-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
}

[data-cc-root] .range-text-number {
  font-weight: 500;
  font-size: 26px;
  line-height: 120%;
  color: var(--black);
}

[data-cc-root] .range-text-number span {
  margin-left: 2px;
}

[data-cc-root] input.range-input[data-cc-price-input],
[data-cc-root] input.range-input[data-cc-down-input] {
  display: none;
  border: 1px solid var(--tachki-stroke);
  background: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--dark-grey);
  height: 52px;
  width: 180px;
  max-width: 270px;
  min-width: 120px;
  border-radius: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

[data-cc-root] [data-cc-block].is-editing .range-text-number {
  display: none;
}

[data-cc-root] [data-cc-block].is-editing input.range-input[data-cc-price-input],
[data-cc-root] [data-cc-block].is-editing input.range-input[data-cc-down-input] {
  display: inline-block;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: var(--black);
  background: #ffffff;
  border: 1px solid var(--tachki-stroke);
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
  width: 180px;
  min-width: 120px;
  max-width: 180px;
  height: 52px;
}

[data-cc-root] input.range-input[data-cc-price-input][readonly],
[data-cc-root] input.range-input[data-cc-down-input][readonly] {
  cursor: default;
}

.calculator-nums > span {
  line-height: 150%;
  color: var(--dark-grey);
}

.credit-footer {
  background: var(--white);
  border-radius: 50px;
  padding: 20px 42px;
}

.credit-footer-price {
  color: #464646;
}

.irs-grid-text {
  font-size: 14px;
}

.irs--round .irs-bar {
  background-color: var(--yellow);
}

.irs-from,
.irs-to,
.irs-single {
  display: none;
}

.irs-max {
  display: none;
}

.irs-min {
  display: none;
}

.irs--round .irs-handle {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--yellow);
  width: 12px;
  height: 12px;
  top: 32px;
  cursor: pointer;
}

.irs--round .irs-handle:hover {
  background-color: var(--yellow);
}

.irs--round.irs-with-grid {
  margin-top: -25px;
}

[data-cc-root] .range-edit {
  border: none;
  background: transparent;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #9AA7B2;
  position: relative;
  z-index: 1;
}

[data-cc-root] .range-edit.active {
  color: var(--black);
}

[data-cc-root] .range-block {
  min-height: 126px;
}

[data-cc-root] .input-range {
  height: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: -webkit-gradient(linear, left top, right top, from(#FFD500), color-stop(0%, #cfd7de));
  background: -o-linear-gradient(left, #FFD500 0%, #cfd7de 0%);
  background: linear-gradient(to right, #FFD500 0%, #cfd7de 0%);
  background-repeat: no-repeat;
  background-size: 100% 4px;
  background-position: center;
}

[data-cc-root] .input-range::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 4px;
}

[data-cc-root] .input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  margin-top: -8px;
  width: 20px;
  height: 20px;
  background: #FFD500;
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

[data-cc-root] .input-range::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 4px;
}

[data-cc-root] .input-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #FFD500;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

[data-cc-root]:not(.is-enhanced) .input-range,
[data-cc-root]:not(.is-enhanced) .irs {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.range-text-number.hidden {
  display: none;
}

.irs-grid-text {
  display: none;
  font-size: 9px !important;
}

.irs-grid-text.js-grid-text-0 {
  display: block;
  margin-left: -9px !important;
}

.irs-grid-text.js-grid-text-2 {
  display: block;
}

.irs-grid-text.js-grid-text-4 {
  display: block;
  margin-left: -42px !important;
}

.range-input-sm {
  width: 120px;
  font-size: 16px;
  height: 38px;
}

.whyItem {
  min-height: 300px;
  border: 1px solid var(--tachki-stroke);
  border-radius: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0 2px 8px 0 rgba(134, 134, 134, 0.09);
          box-shadow: 0 2px 8px 0 rgba(134, 134, 134, 0.09);
  position: relative;
}

.whyItem:hover img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.whyItem:hover .whyItemDescr {
  max-height: 300px;
  /* Устанавливаем высоту, достаточную для отображения всего контента */
  /* Можно использовать очень большое значение (например, 500px),
                   чтобы гарантировать, что все поместится, или использовать
                   JavaScript для точного определения высоты */
  opacity: 1;
  padding-top: 16px;
}

.whyItemLink {
  border-radius: 40px;
  padding: 24px 20px 24px 40px;
  background: var(--yellow);
  width: calc(100% + 2px);
  max-width: 417px;
  position: relative;
  left: -1px;
  position: absolute;
  bottom: 0;
}

.whyItemLink > img {
  width: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.whyItemLink--h-100 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.whyItemTitle {
  width: 100%;
}

.whyItemDescr {
  padding-right: 30px;
  max-height: 0;
  /* Скрываем, используя максимальную высоту */
  opacity: 0;
  /* Делаем его полностью прозрачным */
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out, padding 0.2s ease-in-out;
  -o-transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out, padding 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out, padding 0.2s ease-in-out;
  /* Плавный переход для паддинга, чтобы текст не "выпрыгивал" */
}

.sell {
  padding-top: 60px;
  padding-bottom: 60px;
}

.sell .h2 {
  color: var(--black);
}

.sellItem {
  border-radius: 40px;
  padding: 32px;
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.sellItemTitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
}

.sellItemTitle.color-white {
  color: #fff;
}

.sellItemTitle.color-white span {
  color: #fff;
}

.sellItemTitle span {
  font-size: 40px;
  line-height: 120%;
  display: block;
  color: var(--black);
}

.sellItemTitle--lg span {
  font-size: 64px;
}

.sellItemImg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.sellItemImg--offset {
  bottom: 4px;
  right: 4px;
  border-bottom-right-radius: 40px;
}

.sellItem--lg {
  min-height: 320px;
}

.sellForm {
  padding: 60px 55px;
}

.sellFormTitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 129%;
  text-align: center;
  color: var(--black);
}

.faq {
  padding-bottom: 90px;
}

.faq .accordion .accordion-item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  padding-bottom: 40px;
  max-width: 580px;
}

.faq .accordion .accordion-item .accordion-button {
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--black);
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.faq .accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq .accordion .accordion-body {
  padding: 0;
  font-size: 16px;
  line-height: 150%;
  color: var(--dark-grey);
  padding-top: 10px;
  padding-right: 50px;
}

.faq .accordion-button:not(.collapsed) {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button::after {
  background-image: url("../img/icons/plus.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/icons/minus.svg");
}

.contactsIcon {
  width: 48px;
}

.contacts .map {
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contacts .mapFrame {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
}

.contacts .mapW {
  position: relative;
  padding-bottom: 80px;
}

.contacts .mapW .mapImg {
  position: absolute;
  bottom: -290px;
  min-width: 1600px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.productSlider {
  margin-bottom: 4px;
}

.productSlider .swiper-slide:hover > img {
  opacity: 0.85;
}

.productSlider .swiper-slide > img {
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.productSlider .swiper-slide .play {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.productSlider .swiper-slide .play img {
  width: 70px;
}

.productThumbSlider .swiper-slide {
  cursor: pointer;
}

.productThumbSlider .swiper-slide > img {
  height: 140px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.productThumbSlider .swiper-slide:hover img {
  opacity: 0.85;
}

.productThumbSlider .swiper-slide .play {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}

.productThumbSlider .swiper-slide .play img {
  width: 46px;
}

.productThumbSlider .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
}

.sellerTitle {
  max-width: 500px;
}

.advOrder {
  padding: 60px 80px;
  max-width: 850px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.advOrder .agreement label .agreementText {
  font-size: 13px;
  line-height: 154%;
}

.advOrderImg {
  position: absolute;
  right: 0;
  bottom: -80px;
}

.news .swiper-slide:nth-child(1),
.news .swiper-slide:nth-child(2),
.news .swiper-slide:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsCardImg {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsCardImg:hover {
  opacity: 0.85;
}

.newsCardImg img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
  border: 1px solid var(--light-grey);
}

.newsCardTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
  display: block;
}

.newsCardTitle:hover {
  color: var(--yellow);
}

.newsCardDescr {
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
}

.galSlider {
  overflow: visible;
}

.galSlider .swiper-slide {
  opacity: 0.2;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.galSlider .swiper-slide img {
  -webkit-box-shadow: 0 2px 8px 0 rgba(134, 134, 134, 0.09);
          box-shadow: 0 2px 8px 0 rgba(134, 134, 134, 0.09);
  border: 1px solid var(--tachki-stroke);
  border-radius: 40px;
  width: 100%;
  height: 570px;
  -o-object-fit: cover;
     object-fit: cover;
}

.galSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.galWrap {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.gal .navArrowW {
  position: absolute;
  right: 0;
  top: 0;
}

.errorBg {
  position: absolute;
  bottom: -65px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1450px;
}

.errorTitle {
  font-weight: 600;
  font-size: 228px;
  line-height: 100%;
}

.errorW {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.errorW .sep {
  height: 24px;
  width: 1px;
  background-color: var(--dark);
}

.errorDescr {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
}

.errorImg {
  width: 480px;
}

.footer {
  background-color: var(--light);
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footerText {
  font-size: 11px;
  line-height: 14px;
  color: var(--dark-grey);
}

.footerText.color-dark {
  color: var(--dark);
}

.footerPolitic {
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 3px;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: -webkit-text-decoration 0.2s linear;
  transition: -webkit-text-decoration 0.2s linear;
  -o-transition: text-decoration 0.2s linear;
  transition: text-decoration 0.2s linear;
  transition: text-decoration 0.2s linear, -webkit-text-decoration 0.2s linear;
  color: var(--dark);
}

.footerPolitic:hover {
  -webkit-text-decoration-color: var(--dark);
          text-decoration-color: var(--dark);
  text-decoration: underline;
}

.develop span {
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  border-bottom: 1px solid transparent;
}

.develop:hover span {
  border-color: var(--dark);
}

@media (min-width: 575.98px) {
  .container {
    max-width: 540px;
    margin: auto;
    padding: 0;
  }
}

@media (min-width: 767.98px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 991.98px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 992px) {
  .productThumbSlider {
    overflow: visible;
    -ms-touch-action: auto;
        touch-action: auto;
  }

  .productThumbSlider .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[10];
    grid-template-columns: repeat(10, 1fr);
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    gap: 4px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
  }

  .productThumbSlider .swiper-slide {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    width: 100% !important;
  }
}

@media (min-width: 1199.98px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 1600px) {
  h1.h1--lg,
  .h1.h1--lg {
    font-size: 48px;
  }
}

@media (max-width: 1400px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sectHead {
    margin-bottom: 30px;
  }

  .gap-40.gap-xxl-30 {
    gap: 30px;
  }

  .flex-1-xxl-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .headerW {
    padding: 13px 25px;
  }

  .headerNav ul {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .headerNav ul li a {
    font-size: 12px;
  }

  .headerContactItem {
    font-size: 12px;
  }

  .intro {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .productCardContentB {
    padding-top: 10px;
  }

  .calculator-logos .swiper-slide {
    width: 50px;
    height: 80px;
  }

  .sellForm {
    padding: 48px 40px;
  }

  .advOrderImg {
    width: 430px;
  }

  .errorBg {
    min-width: 1450px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: auto;
  }
}

@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 24px;
  }

  h1.h1--lg,
  .h1.h1--lg {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 16px;
  }

  .fz-20.fz-xl-16 {
    font-size: 16px;
  }

  .fz-24.fz-xl-16 {
    font-size: 16px;
  }

  .fz-xl-14 {
    font-size: 14px;
  }

  .gap-40.gap-xl-16 {
    gap: 16px;
  }

  .mb-40.mb-xl-24 {
    margin-bottom: 24px;
  }

  .mt-40.mt-xl-24 {
    margin-top: 24px;
  }

  .headerCatalogBtn {
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .breadcrumbs {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .breadcrumbs.pt-32 {
    padding-top: 25px;
  }

  .header .logo img {
    width: 120px;
  }

  .headerNav ul {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .headerNav ul li a {
    font-size: 10px;
  }

  .headerContactItem {
    font-size: 10px;
  }

  .podbor-filter-grid .column-3 {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }

  .catalogGrid .productCard {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }

  .catalogGrid .banerCard {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }

  .sellFormTitle {
    font-size: 24px;
  }

  .contactsIcon {
    width: 40px;
  }

  .advOrder {
    max-width: 650px;
  }
}

@media (max-width: 991px) {
  html,
  body {
    font-size: 16px;
    line-height: 24px;
  }

  section {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .formInput {
    height: 48px;
  }

  .sectHead {
    margin-bottom: 20px;
  }

  .wrapper {
    padding-top: 76px;
  }

  h2.h2--lg,
  .h2.h2--lg {
    font-size: 20px;
    line-height: 30px;
  }

  h2.h2--lg.h2--lg-24,
  .h2.h2--lg.h2--lg-24 {
    font-size: 24px;
  }

  h2.h2-lg-24,
  .h2.h2-lg-24 {
    font-size: 24px;
  }

  .fz-13.fz-lg-11 {
    font-size: 11px;
    line-height: 14px;
  }

  .fz-13.fz-lg-12 {
    font-size: 12px;
  }

  .fz-14.fz-lg-12 {
    font-size: 12px;
  }

  .fz-20.fz-lg-16 {
    font-size: 16px;
  }

  .fz-24.fz-lg-16 {
    font-size: 16px;
  }

  .fz-24.fz-lg-20 {
    font-size: 20px;
  }

  .fz-28.fz-lg-20 {
    font-size: 20px;
  }

  .fz-32.fz-lg-24 {
    font-size: 24px;
  }

  .fz-32.fz-lg-20 {
    font-size: 20px;
  }

  .fz-lg-13 {
    font-size: 13px;
    line-height: 150%;
  }

  .fz-lg-14 {
    font-size: 14px;
  }

  .p-32.p-lg-20-32 {
    padding: 20px 32px;
  }

  .mb-20.mb-20-lg-8 {
    margin-bottom: 8px;
  }

  .mb-32.mb-lg-20 {
    margin-bottom: 20px;
  }

  .mb-32.mb-32-lg-0 {
    margin-bottom: 0;
  }

  .mb-40.mb-lg-24 {
    margin-bottom: 24px;
  }

  .mb-40.mb-lg-20 {
    margin-bottom: 20px;
  }

  .mb-70.mb-70-lg-40 {
    margin-bottom: 40px;
  }

  .mb-70.mb-70-lg-30 {
    margin-bottom: 30px;
  }

  .rounded-40.rounded-40-lg-20 {
    border-radius: 20px;
  }

  .radioW label.fz-13.fz-lg-12 {
    font-size: 12px;
  }

  .radioW label {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    color: #000;
  }

  .agreement label .agreementText {
    font-size: 11px;
    line-height: 14px;
  }

  .border-light-grey.border-lg-none {
    border: none;
  }

  .border-t-light-grey.border-t-lg-none {
    border-top: none;
  }

  .pt-80.pt-80-lg-50 {
    padding-top: 50px;
  }

  .pt-80.pt-80-lg-40 {
    padding-top: 40px;
  }

  .pb-40.pb-40-lg-0 {
    padding-bottom: 0;
  }

  .pb-80.pb-lg-40 {
    padding-bottom: 40px;
  }

  .mt-40.mt-40-lg-0 {
    margin-top: 0;
  }

  .pos-lg-absolute {
    position: absolute;
  }

  .px-40.px-40-lg-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .px-40.px-40-lg-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .px-60.px-60-lg-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fw-lg-semibold {
    font-weight: 600 !important;
  }

  .button--lg {
    height: 50px;
  }

  .button.h-lg-36 {
    height: 36px;
  }

  .button.px-60-lg-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .headerCatalogBtn {
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .modal .h2 {
    font-size: 20px;
    max-width: 270px;
  }

  .tabs__nav-btn {
    font-size: 14px;
    height: 40px;
  }

  .pagination {
    margin-top: 25px;
  }

  .pagination ul li a {
    width: 39px;
    height: 39px;
  }

  .pagination ul li.active {
    background: transparent;
  }

  .header.active {
    position: fixed;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header {
    top: 0;
  }

  .header .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .headerW {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 10px 0;
    border-radius: 0;
  }

  .header .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .header .logo img {
    width: 145px;
  }

  .headerNav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: #fff;
    z-index: 1;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 30px;
    padding-bottom: 50px;
    overflow-y: scroll;
  }

  .headerNav ul {
    -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-bottom: 40px;
  }

  .headerNav ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .headerNav ul li a {
    font-size: 14px;
  }

  .headerContactItem {
    font-size: 14px;
  }

  .headerContactItem-lg-60 {
    width: 60px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-offset {
    padding-top: 0;
  }

  .search-action-field.active {
    display: none;
  }

  .search-action-field {
    display: none;
  }

  .introContent {
    padding-left: 0;
  }

  .intro .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .intro-catalog {
    padding-top: 90px;
  }

  .intro-company {
    padding-top: 80px;
  }

  .catalog-sect {
    padding-bottom: 40px;
  }

  .catalogGrid {
    gap: 5px;
  }

  .banerCardTitle {
    font-size: 48px;
  }

  .catalog-sort-wrap {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    z-index: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    bottom: 5px;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    border-radius: 30px;
  }

  .catalog-sort-wrap.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }

  .catalog-sort-wrap .label-item {
    width: 100%;
  }

  .catalog-sort-wrap .label-item .button--light {
    background-color: transparent !important;
    padding-left: 0;
    font-size: 14px;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .creditContent {
    padding: 40px 20px 20px;
  }

  .creditW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 40px;
  }

  .credit .h2 {
    line-height: 150%;
  }

  .calculator-logos .swiper-wrapper.logos-marquee {
    -webkit-animation: logos-marquee-x var(--logos-duration, 30s) linear infinite;
            animation: logos-marquee-x var(--logos-duration, 30s) linear infinite;
  }

  .calculator-logos .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .calculator-logos {
    height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 8px 0 4px;
    width: 100%;
  }

  .calculator-logos .swiper-slide {
    width: 52px;
    height: 52px;
  }

  .calculator-logos .swiper-slide img {
    max-width: 52px;
  }

  .whyItemLink {
    max-width: calc(100% + 2px);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .whyItemDescr {
    font-size: 13px;
    line-height: 150%;
  }

  .sellItem.sellItem-lg-40 {
    padding: 40px;
  }

  .sellItemTitle span {
    font-size: 32px;
  }

  .sellItemTitle--lg span {
    font-size: 48px;
  }

  .sellForm {
    padding: 40px;
  }

  .faq {
    padding-bottom: 50px;
  }

  .faq .accordion .accordion-item {
    padding-bottom: 20px;
    max-width: 100%;
  }

  .faq .accordion .accordion-item .accordion-button {
    font-size: 16px;
  }

  .faq .accordion .accordion-body {
    font-size: 13px;
  }

  .contacts .mapW {
    padding-bottom: 40px;
  }

  .contacts .mapW .mapImg {
    bottom: -440px;
  }

  .productSlider .swiper-slide > img {
    height: 400px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .productThumbSlider {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-right: 40px;
  }

  .advOrder {
    max-width: 100%;
    padding: 40px;
  }

  .advOrderImg {
    position: unset;
    margin-bottom: -130px;
  }

  .newsSlider .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }

  .news .swiper-slide {
    width: 100% !important;
    display: none;
    margin-bottom: 24px;
  }

  .newsCardImg {
    margin-bottom: 10px;
  }

  .newsCardTitle {
    font-size: 16px;
  }

  .newsCardDescr {
    font-size: 13px;
    line-height: 154%;
  }

  .galSlider .swiper-slide img {
    height: 400px;
    border-radius: 20px;
  }

  .errorBg {
    bottom: -220px;
  }

  .errorTitle {
    font-size: 140px;
  }

  .errorW .sep {
    width: 24px;
    height: 1px;
  }

  .footer {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .footerPolitic {
    margin-left: unset;
  }
}

@media (max-width: 767px) {
  [data-catalog-view="grid"] {
    display: -ms-grid !important;
    display: grid !important;
  }

  [data-catalog-view="row"] {
    display: none !important;
  }

  .fz-11.fz-md-9 {
    font-size: 9px;
  }

  .intro-catalog {
    padding-top: 65px;
  }

  .podbor-filter-grid .column-3 {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .podbor-filter-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

  .catalogGrid .productCard {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }

  .catalogGrid .banerCard {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }

  .productCard {
    padding: 1px;
    border-radius: 10px;
  }

  .productCardTag {
    font-size: 11px;
    left: 5px;
    bottom: 5px;
  }

  .productCardImg img {
    border-radius: 10px 10px 0 0;
    height: 160px;
  }

  .productCardTitle {
    font-size: 13px;
    line-height: 123%;
    letter-spacing: 0.01em;
  }

  .productCardPrice {
    font-size: 13px;
    line-height: 123%;
  }

  .productCardContentT {
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .productCardContentB {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 5px;
  }

  .banerCard {
    border-radius: 10px;
    padding-top: 40px;
  }

  .credit-footer {
    padding: 20px;
    border-radius: 24px;
  }

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

  .sellItemImg--sm {
    width: 170px;
  }

  .sellFormTitle {
    font-size: 20px;
  }

  .contacts .map {
    height: 345px;
  }

  .contacts .mapFrame {
    height: 345px;
  }

  .productSlider .swiper-slide > img {
    height: 320px;
  }

  .productThumbSlider .swiper-slide > img {
    height: 80px;
  }
}

@media (max-width: 575px) {
  .formInput {
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }

  .gap-sm-10 {
    gap: 10px !important;
  }

  .radioW label.fz-sm-12 {
    font-size: 12px;
  }

  .button--yellow .btn-round {
    right: 10px;
  }

  .button--dark .btn-round {
    right: 10px;
  }

  .button.fz-sm-14 {
    font-size: 14px;
  }

  .button.w-sm-100 {
    width: 100%;
  }

  .headerCatalogBtn {
    width: 100%;
  }

  .modal {
    padding: 30px 20px;
    border-radius: 32px;
  }

  .f-button.is-close-btn {
    right: 10px;
    top: 10px;
  }

  .breadcrumbs {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .breadcrumbs.pt-32 {
    padding-top: 20px;
  }

  .headerNav ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 20px;
  }

  .intro {
    padding-top: 30px;
    padding-bottom: 100px;
    min-height: 280px;
  }

  .intro .container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .intro-sell {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .podbor-filter-body {
    padding: 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
  }

  .catalog-sect {
    margin-top: 0;
  }

  .productCardImg img {
    height: 120px;
  }

  .relatedSlider {
    overflow: visible;
  }

  .sellItem {
    min-height: 190px;
    padding: 24px;
  }

  .sellItem-sm-240 {
    min-height: 240px;
  }

  .faq .accordion .accordion-item .accordion-button {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .productSlider .swiper-slide > img {
    height: 72vw;
  }

  .productThumbSlider .swiper-slide > img {
    height: 17vw;
  }

  .advOrderImg {
    right: unset;
    left: -15px;
    position: relative;
    bottom: 0;
  }

  .galSlider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .galSlider .swiper-slide img {
    height: 47vw;
  }

  .errorBg {
    bottom: -150px;
  }

  .errorImg {
    width: 315px;
  }
}

@media (max-width: 375px) {
  h1.h1--lg,
  .h1.h1--lg {
    font-size: 26px;
  }
}


/* ==================== */
/* Modals */
/* ==================== */

/* Request Modal */
:root {
    --font-main: "Geologica", "Montserrat", sans-serif;
    --color-blue: #E9F4FB;
    --color-light-blue: #F4F8FB;
    --color-dark-blue: #BAC7CF;
    --color-yellow: #FFDD00;
    --color-text-black: #303030;
    --color-text-grey: #5C5C5C;
}

/* Bootstrap wrapper adapted to the modalCredit/modalCreditstep2 layout from verstka. */
#requestModal.request-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--main-color);
}

#requestModal.request-modal.show {
    display: block;
}

.modal-backdrop {
    z-index: 1050;
    background: rgba(24, 24, 27, 0.98);
}

.modal-backdrop.show {
    opacity: 1;
}

#requestModal .request-modal__dialog {
    max-width: 480px;
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
}

#requestModal .request-modal__content {
    position: relative;
    width: 480px;
    max-width: 100%;
    border: 0;
    border-radius: 7px;
    padding: 64px;
    background: #fff;
    color: var(--main-color);
}

#requestModal .request-modal__content.request-modal__content--success {
    background: #fff;
}

#requestModal .modalHead {
    position: static;
}

#requestModal .request-modal__title {
    margin-left: auto;
    margin-right: auto;
}

#requestModal .request-modal__close {
    position: absolute;
    background-color: transparent;
    top: 20px;
    right: 20px;
    z-index: 5;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#requestModal .request-modal__close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

#requestModal .request-modal__body {
    padding: 0;
}

#requestModal .fast-request-modal__field + .fast-request-modal__field {
    margin-top: 0;
}

#requestModal .fast-request-modal__input {
    height: 52px;
    border-radius: 30px;
    border: 1px solid var(--tachki-stroke);
    padding-left: 20px;
    padding-right: 20px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
}

#requestModal .fast-request-modal__field--filled .fast-request-modal__input {
    padding-top: 22px;
}

#requestModal .fast-request-modal__field--filled .fast-request-modal__input::-webkit-input-placeholder {
    color: transparent;
}

#requestModal .fast-request-modal__field--filled .fast-request-modal__input::-moz-placeholder {
    color: transparent;
}

#requestModal .fast-request-modal__field--filled .fast-request-modal__input:-ms-input-placeholder {
    color: transparent;
}

#requestModal .fast-request-modal__field--filled .fast-request-modal__input::-ms-input-placeholder {
    color: transparent;
}

#requestModal .fast-request-modal__field--filled .fast-request-modal__input::placeholder {
    color: transparent;
}

#requestModal .agreement.full-request-modal__checkbox {
    display: block;
    align-items: initial;
    gap: 0;
    cursor: initial;
}

#requestModal .agreement.mb-12 {
    margin-bottom: 12px;
}

#requestModal .agreement.mb-4 {
    margin-bottom: 1.5rem;
}

#requestModal .agreement input {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: auto;
}

#requestModal .agreement label {
    display: flex;
    flex-shrink: 1;
    column-gap: 12px;
    cursor: pointer;
}

#requestModal .agreement label .rect {
    border: 1px solid var(--light-grey);
    background-color: #fff;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}

#requestModal .agreement input:checked + label .rect {
    background-image: url("../img/icons/checked.svg");
}

#requestModal .agreement label .agreementText,
#requestModal .agreement label .agreementText a {
    font-size: 13px;
    line-height: 154%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #5c5c5c;
    text-underline-offset: 3px;
}

#requestModal .request-modal__option {
    min-height: 96px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#requestModal .request-modal__option[aria-busy="true"] {
    gap: 8px;
}

#requestModal .request-modal__option[aria-busy="true"] .btn-round {
    display: none;
}

#requestModal .fast-request-modal__field-error {
    margin-top: 6px;
    font-size: 12px;
    line-height: 14px;
    color: #d60000;
}

#requestModal .fast-request-modal__input--invalid {
    border-color: #d60000;
}

#requestModal .full-request-modal__checkbox--invalid .rect {
    border-color: #d60000;
}

#requestModal .request-modal__error {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 18px;
    color: #d60000;
    text-align: center;
}

#requestModal .fast-request-modal__success-text {
    margin: 0;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--main-color);
}

@media (max-width: 575.98px) {
    #requestModal .request-modal__dialog {
        max-width: calc(100% - 30px);
        min-height: calc(100% - 1rem);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    #requestModal .request-modal__content {
        width: 100%;
        padding: 30px 20px;
        border-radius: 32px;
    }

    #requestModal .request-modal__close {
        right: 10px;
        top: 10px;
    }
}

/* Quick Request */
/* Fast Request Modal */
.fast-request-modal .modal-dialog {
	max-width: 480px;
	min-height: 100%;
	margin: 0 auto;
	padding: 4px 0;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.fast-request-modal__content {
	border: none;
	border-radius: 7px;
	background: #ffffff;
	padding: 64px;
	color: var(--main-color);
}

.fast-request-modal__content.fast-request-modal__content--success {
	background: #fff;
}

.fast-request-modal__header {
	border: none;
	padding: 0;
	justify-content: center;
	position: relative;
	display: block;
}

.fast-request-modal__title {
	margin: 0;
	width: 100%;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 28px;
	line-height: normal;
	text-align: center;
	color: var(--main-color);
}

.fast-request-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 5;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 12px;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fast-request-modal__close svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.fast-request-modal__body {
	padding: 0;
}

.fast-request-modal__subtitle {
	margin: 0 0 1.5rem;
	font-family: var(--font-family);
	font-size: 13px;
	line-height: 150%;
	text-align: center;
	color: var(--main-color);
}

.fast-request-modal__field {
	position: relative;
	margin-bottom: 16px;
}

.fast-request-modal__field + .fast-request-modal__field {
	margin-top: 0;
}

.fast-request-modal__label {
	position: absolute;
	left: 0;
	top: 0;
	height: 52px;
	max-width: 100%;
	padding: 16px 20px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: .01em;
	text-transform: uppercase;
	color: var(--tachki-black40);
	pointer-events: none;
	transition: opacity .1s ease-in-out, transform .1s ease-in-out;
	opacity: 1;
	visibility: visible;
	overflow: hidden;
	text-overflow: ellipsis;
	transform-origin: 0 0;
}

.fast-request-modal__input {
	width: 100%;
	height: 52px;
	border-radius: 30px;
	border: 1px solid var(--tachki-stroke);
	padding: 0 20px;
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--main-color);
	background: #FFFFFF;
}

.fast-request-modal__input::placeholder {
	color: transparent;
	font-size: 16px;
}

.fast-request-modal__input:focus {
	outline: none;
	border-color: var(--yellow);
	box-shadow: none;
}

.fast-request-modal__input.fast-request-modal__input--invalid {
	border-color: #b71c1c;
	box-shadow: 0 0 0 1px rgba(183, 28, 28, 0.25);
}

.fast-request-modal__field-error {
	margin: 6px 0;
	font-family: var(--font-main);
	font-size: 12px;
	line-height: 140%;
	color: #b71c1c;
}

.fast-request-modal__field--filled .fast-request-modal__label {
	background: transparent;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--tachki-black40);
	transform: scale(.85) translateY(-.5rem) translateX(.15rem);
	width: auto;
	max-width: calc(100% - 32px);
	text-overflow: unset;
}

.fast-request-modal__field--filled .fast-request-modal__input {
	padding-top: 22px;
}

.fast-request-modal__field--filled .fast-request-modal__input::-webkit-input-placeholder {
	color: transparent;
}

.fast-request-modal__field--filled .fast-request-modal__input::-moz-placeholder {
	color: transparent;
}

.fast-request-modal__field--filled .fast-request-modal__input:-ms-input-placeholder {
	color: transparent;
}

.fast-request-modal__field--filled .fast-request-modal__input::-ms-input-placeholder {
	color: transparent;
}

.fast-request-modal__field--filled .fast-request-modal__input::placeholder {
	color: transparent;
}

.fast-request-modal__agreements {
	margin-top: 1rem;
}

.fast-request-modal__agreements-title {
	margin: 0 0 12px;
	font-family: var(--font-family);
	font-size: 13px;
	line-height: 20px;
	color: #5c5c5c;
}

.fast-request-modal__checkbox {
	display: flex;
	align-items: flex-start;
	column-gap: 12px;
	margin-bottom: 12px;
	cursor: pointer;
}

.fast-request-modal__checkbox input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.fast-request-modal__checkbox-mark {
	flex: 0 0 18px;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	border: 1px solid var(--light-grey);
	background: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
}

.fast-request-modal__checkbox.fast-request-modal__checkbox--invalid .fast-request-modal__checkbox-mark {
	border-color: #b71c1c;
}

.fast-request-modal__checkbox.fast-request-modal__checkbox--invalid .fast-request-modal__checkbox-label {
	color: #b71c1c;
}

.fast-request-modal__checkbox-label {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 13px;
	line-height: 154%;
	color: #5c5c5c;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-offset: 3px;
}

.fast-request-modal__checkbox-label a {
	color: #5c5c5c;
}

.fast-request-modal__checkbox input:checked + .fast-request-modal__checkbox-mark {
	background-image: url("../img/icons/checked.svg");
	border-color: var(--light-grey);
}

.fast-request-modal__checkbox input:checked + .fast-request-modal__checkbox-mark::after {
	display: none;
}

.fast-request-modal__actions {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 8px;
}

.fast-request-modal__btn {
	height: 48px;
	border-radius: 40px;
	border: none;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.fast-request-modal__btn--secondary {
	flex: 0 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	background: transparent;
	color: var(--main-color);
}

.fast-request-modal__btn--primary {
	flex: 1 1 auto;
	padding-left: 32px;
	padding-right: 32px;
	background: var(--yellow);
	color: var(--dark);
}

.fast-request-modal__btn:disabled {
	opacity: 0.55;
	cursor: default;
	box-shadow: none;
	transform: none;
}

.fast-request-modal__btn:not(:disabled):hover,
.fast-request-modal__btn:not(:disabled):focus {
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.fast-request-modal__content.fast-request-modal__content--success .fast-request-modal__success {
	padding: 0;
}

.fast-request-modal__success-title {
	margin: 0 0 12px;
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	color: var(--color-text-black);
}

.fast-request-modal__content.fast-request-modal__content--success .fast-request-modal__success-title {
	margin: 0 0 16px;
	font-weight: 500;
	font-size: 28px;
	line-height: 120%;
}

.fast-request-modal__success-text {
	margin: 0;
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: var(--main-color);
}

.fast-request-modal__content.fast-request-modal__content--success .fast-request-modal__success-text {
	font-size: 16px;
	line-height: 150%;
	color: var(--color-text-black);
}

.fast-request-modal__error {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #ffe6e6;
	color: #b71c1c;
	font-family: var(--font-main);
	font-size: 14px;
	line-height: 140%;
}

@media (max-width: 576px) {
	.fast-request-modal .modal-dialog {
		max-width: calc(100% - 30px);
		min-height: 100%;
		margin: 0 auto;
		padding: 4px 0;
	}

	.fast-request-modal__content {
		width: 100%;
		padding: 30px 20px;
		border-radius: 32px;
	}

	.fast-request-modal__title {
		font-size: 20px;
	}

	.fast-request-modal__subtitle {
		font-size: 13px;
	}

	.fast-request-modal__actions {
		flex-direction: column;
	}

	.fast-request-modal__close {
		top: 10px;
		right: 10px;
	}

	.fast-request-modal__btn {
		width: 100%;
	}
}
/* Fast Request Modal */

/* Full Request */
.full-request-modal__dialog {
    max-width: 640px;
    margin: 0 auto;
}

.full-request-modal__content {
    border: none;
    border-radius: 60px;
    background: #ffffff;
    padding: 32px 80px;
    color: var(--color-text-black);
}

.full-request-modal__header {
    border: none;
    padding: 0 0 32px;
    justify-content: center;
    position: relative;
}

.full-request-modal__title {
    margin: 0;
    width: 100%;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    color: var(--color-text-black);
}

.full-request-modal__close {
    position: absolute;
    top: 0;
    right: -15px;
}

.full-request-modal__body {
    padding: 0;
}

.full-request-modal__subtitle {
    margin: 0;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--color-text-black);
    text-align: center;
}

.full-request-modal__subtitle--section {
    margin: 0 0 8px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-text-black);
    text-align: start;
}

.full-request-modal__field {
    position: relative;
    margin-bottom: 16px;
}

.two-column {
    display: inline-flex;
    gap: 8px;
}

.full-request-autocomplete {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 4px;
	max-height: 220px;
	overflow-y: auto;
	border-radius: 15px;
	border: 1px solid #D7DBEC;
	background: #FFFFFF;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	z-index: 1050;
	display: none;
}

.full-request-autocomplete__item {
	padding: 8px 16px;
	font-family: var(--font-main);
	font-size: 14px;
	line-height: 140%;
	color: var(--color-text-black);
	cursor: pointer;
}

.full-request-autocomplete__item:hover {
	background: #DDEBF3;
}

.full-request-modal__label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    color: #8F8F8F;
    pointer-events: none;
    transition: all 0.15s ease;
    opacity: 0;
    visibility: hidden;
}

.full-request-modal__input {
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--color-dark-blue);
    padding: 12px 20px;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 160%;
    color: var(--color-text-black);
    background: #FFFFFF;
}

textarea.full-request-modal__input {
    resize: none;
    overflow: hidden;
    white-space: pre-wrap;
    word-break: break-word;
    height: auto;
    box-sizing: border-box;
    min-height: calc(2 * 1.6em + 24px);
}

select.full-request-modal__input {
    color: var(--color-text-black);
}

select.full-request-modal__input:invalid {
    color: #8F8F8F;
}

.full-request-modal__input::placeholder {
    color: #8F8F8F;
    text-wrap: wrap;
}

.full-request-modal__input:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.full-request-modal__input.full-request-modal__input--invalid {
	border-color: #b71c1c;
	box-shadow: 0 0 0 1px rgba(183, 28, 28, 0.25);
}

.full-request-modal__field-error {
	margin-top: 6px;
	font-family: var(--font-main);
	font-size: 12px;
	line-height: 140%;
	color: #b71c1c;
}

.full-request-modal__field--filled .full-request-modal__label {
    top: -10px;
    background-color: #ffffff;
    padding: 0 5px;
    opacity: 1;
    visibility: visible;
}

.full-request-modal__field--filled .full-request-modal__input::-webkit-input-placeholder {
    color: transparent;
}

.full-request-modal__field--filled .full-request-modal__input::-moz-placeholder {
    color: transparent;
}

.full-request-modal__field--filled .full-request-modal__input:-ms-input-placeholder {
    color: transparent;
}

.full-request-modal__field--filled .full-request-modal__input::-ms-input-placeholder {
    color: transparent;
}

.full-request-modal__field--filled .full-request-modal__input::placeholder {
    color: transparent;
}

.full-request-modal__agreements {
    margin-top: 32px;
}

.full-request-modal__agreements--bottom {
    margin-top: 16px;
}

.full-request-modal__agreements--bottom + .full-request-modal__progress-label {
    margin-top: 12px;
}

.full-request-modal__agreements-title {
    margin: 0 0 12px 0;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text-grey);
}

.full-request-modal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 5px;
    cursor: pointer;
}

.full-request-modal__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.full-request-modal__checkbox-mark {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid #D2D2D2;
    background: #fff;
}

.full-request-modal__checkbox-label {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text-grey);
}

.full-request-modal__checkbox.full-request-modal__checkbox--invalid .full-request-modal__checkbox-mark {
	border-color: #b71c1c;
}

.full-request-modal__checkbox.full-request-modal__checkbox--invalid .full-request-modal__checkbox-label {
	color: #b71c1c;
}

.full-request-modal__checkbox-label a {
    text-decoration-line: underline;
    color: var(--color-text-grey);
}

.full-request-modal__checkbox-label a:hover {
    text-decoration-line: none;
}

.full-request-modal__checkbox input:checked + .full-request-modal__checkbox-mark {
    background: #ffffff;
    border-color: #ffd500;
}

.full-request-modal__checkbox input:checked + .full-request-modal__checkbox-mark::after {
    content: "";
    display: block;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--color-text-black);
    border-bottom: 2px solid var(--color-text-black);
    transform: rotate(-45deg);
    margin: 3px 0 0 4px;
}

.full-request-modal__progress {
    height: 4px;
    background: #DDEBF3;
    border-radius: 1px;
    margin-top: 4px;
    overflow: hidden;
}

.full-request-modal__progress-bar {
    height: 100%;
    background: #FFDD00;
    width: 0;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.full-request-modal__progress-bar.progress-red {
    background: #E74C3C;
}

.full-request-modal__progress-bar.progress-yellow {
    background: #FFDD00;
}

.full-request-modal__progress-bar.progress-green {
    background: #27AE60;
}

.full-request-modal__progress-label {
    margin-top: 32px;
    font-family: var(--font-main);
    font-size: 12px;
    line-height: 130%;
    text-align: end;
    color: var(--color-text-black);
}

.full-request-modal__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0;
}

.full-request-modal__success-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: var(--color-text-black);
}

.full-request-modal__success-text {
    margin: 0;
    max-width: 360px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: var(--color-text-black);
}

.full-request-modal__success-ok {
    width: 100%;
    max-width: 420px;
    height: 56px;
    border: none;
    border-radius: 30px;
    background: #FFDD00;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text-black);
}

.full-request-modal__actions {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.full-request-modal__btn {
    flex: 1 1 0;
    height: 50px;
    border-radius: 30px;
    border: none;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.full-request-modal__btn--secondary {
    background: #DDEBF3;
    color: var(--color-text-black);
}

.full-request-modal__btn--primary {
    background: var(--color-yellow);
    color: var(--color-text-black);
}

.full-request-modal__btn[disabled] {
    opacity: 0.55;
    cursor: default;
    box-shadow: none;
    transform: none;
}

.full-request-modal__btn:not(:disabled):hover,
.full-request-modal__btn:not(:disabled):focus {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.full-request-modal__error {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ffe6e6;
    color: #b71c1c;
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 140%;
}

.full-request-step {
    min-height: 270px;
}

.full-request-docs {
    margin-top: 8px;
}

.full-request-docs__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.full-request-docs__counter {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--color-text-grey);
}

.full-request-docs__title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-text-black);
    text-align: right;
}

.full-request-docs__upload-zone {
    display: flex;
    width: 480px;
    height: 320px;
    position: relative;
    border-radius: 40px;
    border: 1px solid #D7DBEC;
    padding: 12px;
    text-align: center;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.full-request-docs__placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 108px;
    border-radius: 4px;
    background: #F3F4F8;
    margin: 0 auto 40px;
}

.full-request-docs__placeholder-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.full-request-docs__preview-img {
    max-width: 100%;
    max-height: 240px;
    display: block;
    margin: 0 auto;
}

.full-request-docs__actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.full-request-docs__action-btn {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 1px solid #1A1A18;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.full-request-docs__action-btn--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.full-request-docs__action-btn--icon img {
    width: 18px;
    height: 18px;
}

/*.full-request-docs__action-btn--danger {*/
/*    border-color: #ffb4b4;*/
/*    color: #b71c1c;*/
/*}*/

.full-request-docs__upload-btn {
    width: 230px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    border: 1px solid #1A1A18;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1A1A18;
    cursor: pointer;
}

.full-request-docs__upload-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.full-request-docs__upload-btn-icon img {
    width: 16px;
    height: 16px;
}

.full-request-docs__upload-btn-text {
    white-space: nowrap;
}

.full-request-docs__upload-btn:hover {
    background: #cbdced;
}

.full-request-docs__file-input {
    display: none;
}

.full-request-docs__final-type {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.full-request-docs__choice {
    border-radius: 10px;
    background: #DDEBF3;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 160%;
    color: var(--color-text-grey);
}

.full-request-docs__choice input {
    display: none;
}

.full-request-docs__choice span {
    position: relative;
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
}


.full-request-docs__choice input:checked + span {

    background: #1A1A18;
    color: #FFFFFF;
}

.full-request-docs__final-block {
    margin-bottom: 32px;
}

@media (max-width: 576px) {
    .full-request-modal__content {
        padding: 32px;
        border-radius: 60px;
    }

    .full-request-modal__title {
        font-size: 24px;
        line-height: 140%;
    }

    .full-request-modal__close {
        top: 0;
        right: 0;
    }

    .full-request-docs__final-type {
        margin-bottom: 40px;
    }

    .full-request-docs__choice span {
        width: 152px;
    }

    .full-request-docs__upload-zone {
        margin: 0 auto 32px;
        width: 311px;
        height: 240px;
    }

    .full-request-docs__preview-img {
        max-height: 160px;
    }
}

.full-request-modal__skip-docs {
    text-align: center;
    margin-top: 15px;
    margin-bottom: -5px;
}

.full-request-modal__skip-link {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 140%;
    color: var(--color-text-grey);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.full-request-modal__skip-link:hover {
    color: var(--color-text-black);
    font-weight: 500;
}

/* Choice Toggle (Radio кнопки) */
.choice-toggle-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.choice-toggle-field .form-label {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 140%;
    color: var(--color-text-grey);
    margin-bottom: 8px;
}

.choice-toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.choice-toggle-group.choice-toggle-group--invalid {
	box-shadow: 0 0 0 1px rgba(183, 28, 28, 0.35);
	border-radius: 10px;
}

.choice-toggle {
    position: relative;
    flex: 1 1 0;
    min-width: 120px;
}

.choice-toggle input[type="radio"] {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.choice-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #1f1f24;
    background-color: #DDEBF3;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-align: center;
    user-select: none;
    border-radius: 10px;
}

.choice-toggle-label:hover {
    background-color: #f3f3f7;
}

.choice-toggle input[type="radio"]:checked + .choice-toggle-label {
    background-color: #1A1A18;
    color: #fff;
    border-radius: 10px;
}

.choice-toggle input[type="radio"]:checked + .choice-toggle-label:hover {
    background-color: #1A1A18;
    opacity: 0.95;
}

@media (max-width: 576px) {
    .choice-toggle-label {
        padding: 10px 8px;
        font-size: 16px;
    }
    
    .choice-toggle {
        min-width: 100px;
    }
}

/* Date picker input */
.full-request-modal .date-picker {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat right 12px center;
    background-color: #fff;
    padding-right: 40px;
    cursor: pointer;
}

/* Datepicker dropdown z-index fix for modal */
.datepicker-picker {
    z-index: 1060 !important;
}

/* Verstka-compatible visual layer for the Bootstrap full request modal. */
#fullRequestModal.full-request-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--main-color);
}

#fullRequestModal.full-request-modal.show {
    display: block;
}

#fullRequestModal .full-request-modal__dialog {
    max-width: 480px;
    min-height: 100%;
    margin: 0 auto;
    padding: 4px 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#fullRequestModal .full-request-modal__content {
    position: relative;
    width: 480px;
    max-width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    border: 0;
    border-radius: 7px;
    padding: 64px 32px;
    background: #fff;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__header {
    position: static;
    display: block;
    border: 0;
    padding: 0;
    justify-content: initial;
}

#fullRequestModal .full-request-modal__title {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 12px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fullRequestModal .full-request-modal__close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

#fullRequestModal .full-request-modal__body {
    padding: 0;
}

#fullRequestModal .full-request-modal__info-text {
    margin: 0 0 1rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__subtitle {
    margin: 0 0 1rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__subtitle--intro {
    font-weight: 500;
}

#fullRequestModal .full-request-modal__subtitle--docs {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

#fullRequestModal .full-request-modal__subtitle--partner-docs {
    margin: 32px 0;
    font-size: 16px;
}

#fullRequestModal .full-request-modal__subtitle--partner-check {
    margin: 0 0 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

#fullRequestModal .full-request-modal__info-text--docs {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

#fullRequestModal .full-request-modal__subtitle--section {
    margin: 0 0 0.75rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__subtitle--centered {
    display: block;
    width: 100%;
    text-align: center;
}

#fullRequestModal .full-request-modal__plain-label {
    margin: 0 0 1rem;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__field {
    margin-bottom: 16px;
}

#fullRequestModal .full-request-modal__inline-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    align-items: center;
    column-gap: 1rem;
    row-gap: 6px;
    margin-bottom: 1rem;
}

#fullRequestModal .full-request-modal__inline-field .full-request-modal__field-error {
    grid-column: 1 / -1;
    margin-top: 0;
}

#fullRequestModal .full-request-modal__inline-label {
    margin: 0;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__input {
    height: 52px;
    border-radius: 30px;
    border: 1px solid var(--tachki-stroke);
    background-color: #fff;
    width: 100%;
    padding: 0 20px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__input--compact {
    flex: 0 0 120px;
    width: 120px;
    padding-left: 20px;
    padding-right: 20px;
}

#fullRequestModal textarea.full-request-modal__input {
    height: 80px;
    min-height: 80px;
    border-radius: 30px;
    padding: 16px 20px;
    resize: vertical;
}

#fullRequestModal .full-request-modal .date-picker,
#fullRequestModal .date-picker {
    background: #fff url("../img/icons/calendar.svg") no-repeat right 20px center;
    padding-right: 48px;
}

#fullRequestModal select.full-request-modal__input {
    appearance: none;
    background: #fff url("../img/icons/arrow-down.svg") no-repeat right 20px center / 20px;
    padding-right: 48px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--main-color);
}

#fullRequestModal select.full-request-modal__input:invalid {
    color: var(--tachki-black40);
}

#fullRequestModal .full-request-modal__input::placeholder {
    color: var(--tachki-black40);
    font-size: 16px;
    text-transform: uppercase;
}

#fullRequestModal .full-request-modal__label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 52px;
    max-width: 100%;
    padding: 16px 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--tachki-black40);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

#fullRequestModal .full-request-modal__field--floating .full-request-modal__input::-webkit-input-placeholder {
    color: transparent;
}

#fullRequestModal .full-request-modal__field--floating .full-request-modal__input::-moz-placeholder {
    color: transparent;
}

#fullRequestModal .full-request-modal__field--floating .full-request-modal__input:-ms-input-placeholder {
    color: transparent;
}

#fullRequestModal .full-request-modal__field--floating .full-request-modal__input::-ms-input-placeholder {
    color: transparent;
}

#fullRequestModal .full-request-modal__field--floating .full-request-modal__input::placeholder {
    color: transparent;
}

#fullRequestModal .full-request-modal__field--floating.full-request-modal__field--filled .full-request-modal__label {
    background: transparent;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    width: auto;
    max-width: calc(100% - 32px);
    text-overflow: unset;
}

#fullRequestModal .full-request-modal__field--floating.full-request-modal__field--filled .full-request-modal__input {
    padding-top: 22px;
}

#fullRequestModal .full-request-modal__field--floating.full-request-modal__field--filled textarea.full-request-modal__input {
    padding-top: 28px;
}

#fullRequestModal .two-column {
    display: flex;
    gap: 0;
    border: 1px solid var(--tachki-stroke);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 16px;
}

#fullRequestModal .two-column .full-request-modal__field {
    flex: 1 1 0;
    margin-bottom: 0;
}

#fullRequestModal .two-column .full-request-modal__field:first-child {
    border-right: 1px solid var(--tachki-stroke);
}

#fullRequestModal .two-column .full-request-modal__input {
    border: 0;
    border-radius: 0;
}

#fullRequestModal .full-request-modal__agreements {
    margin-top: 12px;
}

#fullRequestModal .full-request-modal__agreements-title {
    margin: 0 0 12px;
    font-family: var(--font-family);
    font-size: 13px;
    line-height: 20px;
    color: #5c5c5c;
}

#fullRequestModal .full-request-modal__checkbox {
    display: flex;
    column-gap: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
}

#fullRequestModal .full-request-modal__checkbox-mark {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--light-grey);
    border-radius: 6px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}

#fullRequestModal .full-request-modal__checkbox input:checked + .full-request-modal__checkbox-mark {
    background-image: url("../img/icons/checked.svg");
    border-color: var(--light-grey);
}

#fullRequestModal .full-request-modal__checkbox input:checked + .full-request-modal__checkbox-mark::after {
    display: none;
}

#fullRequestModal .full-request-modal__checkbox-label,
#fullRequestModal .full-request-modal__checkbox-label a {
    font-family: var(--font-family);
    font-size: 13px;
    line-height: 154%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #5c5c5c;
    text-underline-offset: 3px;
}

#fullRequestModal .choice-toggle-field {
    margin-bottom: 1rem;
}

#fullRequestModal .choice-toggle-group {
    gap: 8px;
}

#fullRequestModal .choice-toggle-label {
    min-height: 40px;
    border: 1px solid var(--dark-grey);
    border-radius: 30px;
    background: #fff;
    padding: 8px 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-grey);
    text-transform: none;
}

#fullRequestModal .choice-toggle input[type="radio"]:checked + .choice-toggle-label {
    border-radius: 30px;
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--dark);
}

#fullRequestModal .full-request-modal__progress-label {
    margin-top: 0;
    margin-bottom: 4px;
    font-family: var(--font-family);
    font-size: 11px;
    line-height: 127%;
    text-align: end;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__progress {
    height: 4px;
    margin: 0 0 1.5rem;
    border-radius: 0;
    background: var(--light-grey);
}

#fullRequestModal .full-request-modal__progress-bar {
    border-radius: 0;
    background: #FF0F3F;
}

#fullRequestModal .full-request-modal__progress-bar.progress-yellow {
    background: var(--yellow);
}

#fullRequestModal .full-request-modal__progress-bar.progress-green {
    background: #82d714;
}

#fullRequestModal .full-request-modal__actions {
    margin-top: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

#fullRequestModal .full-request-modal__btn {
    height: 48px;
    border-radius: 40px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#fullRequestModal .full-request-modal__btn--secondary {
    flex: 0 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    background: transparent;
    color: var(--main-color);
}

#fullRequestModal .full-request-modal__btn--secondary:hover {
    background: var(--yellow);
}

#fullRequestModal .full-request-modal__btn--primary {
    flex: 1 1 auto;
    padding-left: 32px;
    padding-right: 32px;
    background: var(--yellow);
    color: var(--dark);
}

#fullRequestModal .full-request-docs {
    margin-top: 0;
}

#fullRequestModal .full-request-docs__header {
    display: block;
    margin-bottom: 1rem;
}

#fullRequestModal .full-request-docs__counter {
    display: none;
}

#fullRequestModal .full-request-docs__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: .04em;
    text-align: left;
    text-transform: uppercase;
    color: var(--main-color);
}

#fullRequestModal .full-request-docs__upload-zone {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 260px;
    border-radius: 40px;
    border-color: var(--tachki-stroke);
    padding: 30px 45px;
    margin-bottom: 1.5rem;
}

#fullRequestModal .full-request-docs__placeholder {
    width: 164px;
    height: 108px;
    margin-bottom: 1rem;
    background: transparent;
}

#fullRequestModal .full-request-docs__upload-btn {
    min-width: 230px;
    height: 50px;
    border-radius: 40px;
    border-color: var(--dark-grey);
    background: transparent;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: .04em;
}

#fullRequestModal .full-request-docs__upload-btn:hover {
    background: var(--light);
}

#fullRequestModal .full-request-docs__action-btn {
    border-color: var(--dark-grey);
}

/* Visual adapter: keep transferred vanillajs-datepicker logic, match AirDatepicker from verstka. */
.datepicker-dropdown {
    z-index: 1065;
    padding-top: 6px;
    padding-bottom: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #4a4a4a;
}

.datepicker {
    width: 246px;
}

.datepicker-picker {
    width: 246px;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    box-sizing: content-box;
    overflow: hidden;
}

.datepicker-dropdown .datepicker-picker {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.datepicker-header {
    border-bottom: 1px solid #efefef;
}

.datepicker-title {
    display: none;
}

.datepicker-header .datepicker-controls {
    min-height: 32px;
    padding: 4px;
    box-sizing: content-box;
}

.datepicker-controls .button {
    height: 32px;
    min-width: 32px;
    border: 0;
    border-radius: 4px;
    padding: 0 8px;
    background: transparent;
    box-shadow: none;
    color: #4a4a4a;
    font-family: inherit;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
}

.datepicker-header .datepicker-controls .button {
    border: 0;
    font-weight: 400;
}

.datepicker-controls .button:hover,
.datepicker-header .datepicker-controls .button:hover,
.datepicker-controls .button:focus,
.datepicker-header .datepicker-controls .button:focus {
    border: 0;
    background: #f0f0f0;
    box-shadow: none;
    color: #4a4a4a;
}

.datepicker-controls .prev-button,
.datepicker-controls .next-button {
    flex: 0 0 32px;
    width: 32px;
    padding: 0;
    color: #9c9c9c;
    font-size: 0;
}

.datepicker-controls .prev-button::before,
.datepicker-controls .next-button::before {
    display: block;
    font-size: 22px;
    line-height: 32px;
}

.datepicker-controls .prev-button::before {
    content: "<";
}

.datepicker-controls .next-button::before {
    content: ">";
}

.datepicker-controls .view-switch {
    flex: 1 1 auto;
    font-weight: 600;
}

.datepicker-main {
    padding: 4px;
}

.datepicker-view {
    width: 246px;
}

.datepicker .days-of-week {
    margin: 8px 0 3px;
}

.datepicker .dow {
    height: 32px;
    color: #ff9a19;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
}

.datepicker-cell {
    height: 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
}

.datepicker-cell:not(.day) {
    height: 42px;
}

.datepicker-cell.next:not(.disabled),
.datepicker-cell.prev:not(.disabled) {
    color: #dedede;
}

.datepicker-cell.disabled {
    color: #aeaeae;
}

.datepicker-cell:not(.disabled):hover,
.datepicker-cell.focused:not(.selected) {
    background: #f0f0f0;
}

.datepicker-cell.today:not(.selected) {
    background: transparent;
    color: #4eb5e6;
}

.datepicker-cell.today.focused:not(.selected) {
    background: #f0f0f0;
    color: #4a4a4a;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover,
.datepicker-cell.today.selected,
.datepicker-cell.today.selected:hover {
    border: 0;
    background: #5cc4ef;
    color: #fff;
    font-weight: 400;
}

.datepicker-cell.selected.focused {
    background: #45bced;
}

.datepicker-footer {
    border-top: 1px solid #efefef;
    background: #fff;
    box-shadow: none;
}

.datepicker-footer .datepicker-controls {
    padding: 4px;
}

.datepicker-footer .datepicker-controls .button {
    flex: 1 1 0;
    height: 32px;
    margin: 0;
    border-radius: 4px;
    color: #4eb5e6;
    font-size: 14px;
}

.datepicker-footer .datepicker-controls .button:hover {
    background: #f0f0f0;
    color: #4a4a4a;
}

@media (max-width: 575.98px) {
    #fullRequestModal .full-request-modal__dialog {
        max-width: calc(100% - 30px);
        min-height: 100%;
        margin: 0 auto;
        padding: 4px 0;
    }

    #fullRequestModal .full-request-modal__content {
        width: 100%;
        max-height: 100vh;
        padding: 30px 20px;
        border-radius: 32px;
    }

    #fullRequestModal .full-request-modal__title {
        font-size: 20px;
    }

    #fullRequestModal .full-request-modal__close {
        top: 10px;
        right: 10px;
    }

    #fullRequestModal .full-request-modal__info-text,
    #fullRequestModal .full-request-modal__subtitle {
        font-size: 16px;
    }

    #fullRequestModal .full-request-modal__actions {
        flex-direction: column;
    }

    #fullRequestModal .full-request-modal__btn {
        width: 100%;
    }

    #fullRequestModal .full-request-modal__inline-field {
        align-items: flex-start;
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    #fullRequestModal .full-request-modal__input--compact {
        width: 120px;
    }

    #fullRequestModal .full-request-docs__upload-zone {
        min-height: 220px;
        padding: 30px 15px;
    }

    #fullRequestModal .full-request-docs__upload-btn {
        min-width: 0;
        width: 100%;
    }
}


@media (max-width: 991.98px) {
  .agreement .agreementText {
    font-size: 11px;
    line-height: 14px;
  }
}

/* Sell Page */
.sell-page-benefit-item--light {
  background-color: var(--light);
}

.sell-page-benefit-item--dark {
  background-color: var(--dark);
}

.sell-homepage-item--white,
.sell-homepage-item--light {
  background-color: var(--white);
}

.sell-homepage-item--grey {
  background-color: var(--light-grey);
  border: 1px solid var(--light-grey);
}

.sell-homepage-item--dark {
  background-color: var(--dark);
}

.sell-page-question-textarea {
  height: 100px;
}

