@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Thin.woff2") format("woff2"),
    url("../fonts/Onest/Onest-Thin.woff") format("woff");
  font-display: swap;
  font-weight: 100;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-ExtraLight.woff2") format("woff2"),
    url("../fonts/Onest/Onest-ExtraLight.woff") format("woff");
  font-display: swap;
  font-weight: 200;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Light.woff2") format("woff2"),
    url("../fonts/Onest/Onest-Light.woff") format("woff");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Regular.woff2") format("woff2"),
    url("../fonts/Onest/Onest-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Medium.woff2") format("woff2"),
    url("../fonts/Onest/Onest-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-SemiBold.woff2") format("woff2"),
    url("../fonts/Onest/Onest-SemiBold.woff") format("woff");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Bold.woff2") format("woff2"),
    url("../fonts/Onest/Onest-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-ExtraBold.woff2") format("woff2"),
    url("../fonts/Onest/Onest-ExtraBold.woff") format("woff");
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Black.woff2") format("woff2"),
    url("../fonts/Onest/Onest-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
}

.has-scrollbar,
.suggestions-wrapper .suggestions-suggestions {
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.overscroll-contain {
  overscroll-behavior: contain;
}

@media (min-width: 1024px) {
  @supports not selector(::-webkit-scrollbar) {
    .has-scrollbar,
    .suggestions-wrapper .suggestions-suggestions {
      scrollbar-color: var(--grey-dark) var(--grey-light);
      scrollbar-width: thin;
    }

    .has-scrollbar:hover,
    .suggestions-wrapper .suggestions-suggestions:hover {
      scrollbar-color: var(--black-50) var(--grey-light);
    }
  }

  @supports selector(::-webkit-scrollbar) {
    .has-scrollbar::-webkit-scrollbar,
    .suggestions-wrapper .suggestions-suggestions::-webkit-scrollbar {
      width: 11px;
      height: 11px;
    }

    .has-scrollbar::-webkit-scrollbar-track,
    .suggestions-wrapper .suggestions-suggestions::-webkit-scrollbar-track {
      border: 3px solid transparent;
      background-clip: content-box;
      background-color: var(--grey-light);
      border-radius: 10px;
    }

    .has-scrollbar::-webkit-scrollbar-thumb,
    .suggestions-wrapper .suggestions-suggestions::-webkit-scrollbar-thumb {
      border: 3px solid transparent;
      background-clip: content-box;
      background-color: var(--grey-dark);
      border-radius: 10px;
    }

    .has-scrollbar::-webkit-scrollbar-thumb:hover,
    .suggestions-wrapper
      .suggestions-suggestions::-webkit-scrollbar-thumb:hover {
      background-color: var(--black-50);
    }
  }
}

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

.svg-sprite {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

html,
body {
  display: flex;
  flex-direction: column;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

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

body {
  font-family: "Onest", Helvetica, Arial, sans-serif;
  font-size: var(--fs-16);
  line-height: var(--lh-main);
  background: var(--white);
  color: var(--black);
  min-width: 320px;
  min-height: 100svh;
  min-height: calc(100svh + 1px);
  margin: 0;
  position: relative;
  touch-action: manipulation;
}

html.is-noscroll {
  overflow: visible;
  scroll-behavior: auto;
}

html.is-noscroll body {
  margin-right: var(--scrollbarWidth);
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

html:before,
html:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999998;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
  transition-property: opacity, visibility;
}

html:before {
  background: rgba(0, 0, 0, 0.2);
}

html:after {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid var(--white);
  border-right-color: transparent;
  border-radius: 50%;
  z-index: 99999999;
}

html.has-loader:before,
html.has-loader:after {
  opacity: 1;
  visibility: visible;
}

html.has-loader:after {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:active,
:focus:not(:focus-visible) {
  outline: none;
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  height: auto;
}

.filter-multiply {
  /*  mix-blend-mode: multiply;*/
}

b,
strong {
  font-weight: bold;
}

hr {
  height: auto;
  border: 1px solid var(--grey-dark);
  border-width: 1px 0 0;
  margin: var(--space-40) 0;
  clear: both;
}

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

th,
td {
  padding: 0;
}

th {
  text-align: left;
  font-weight: 600;
}

a,
button {
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, background-color, opacity,
    box-shadow;
}

a {
  color: var(--red-main-color);
  text-decoration: none;
}

:where(html.no-touch) a:hover,
:where(html.is-touch) a:active {
  color: var(--red-dark);
}

:where(html.no-touch) a.c-inherit:hover,
:where(html.is-touch) a.c-inherit:active {
  color: var(--red-main-color);
}

a:not([class])[href^="tel:"],
a:not([class])[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  padding-left: 1.5em;
}

li ul,
li ol {
  margin: 0;
}

ol ul {
  list-style-type: disc;
  padding-left: 1.1em;
}

p,
ul,
ol,
dl,
pre,
figure,
address,
fieldset,
blockquote {
  margin: 0 0 var(--space-20);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: var(--lh-sm);
  color: inherit;
  margin: 0 0 var(--space-20);
}

h1,
.h1 {
  font-size: var(--fs-h1);
}

h2,
.h2 {
  font-size: var(--fs-h2);
}

h3,
.h3 {
  font-size: var(--fs-h3);
}

h4,
.h4 {
  font-size: var(--fs-h4);
}

h5,
.h5 {
  font-size: var(--fs-18);
  font-weight: bold;
}

h6,
.h6 {
  font-size: var(--fs-16);
}

.text-18 {
  font-size: var(--fs-18) !important;
  line-height: var(--lh-sm) !important;
}

.text-16 {
  font-size: var(--fs-16) !important;
  line-height: var(--lh-sm) !important;
}

.text-14 {
  font-size: var(--fs-14) !important;
  line-height: var(--lh-sm) !important;
}

.text-12 {
  font-size: var(--fs-12) !important;
  line-height: var(--lh-sm) !important;
}

.text-10 {
  font-size: var(--fs-10) !important;
  line-height: var(--lh-sm) !important;
}

@media (max-width: 767.98px) {
  .xs-h3 {
    font-size: var(--fs-h3);
  }

  .text-xs-12 {
    font-size: var(--fs-12) !important;
    line-height: var(--lh-sm) !important;
  }
}

.lh-120 {
  line-height: var(--lh-sm) !important;
}

.lh-160 {
  line-height: var(--lh-main) !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.c-black {
  color: var(--black) !important;
}

.c-black-50 {
  color: var(--black-50) !important;
}

.c-black-40 {
  color: var(--black-40) !important;
}

.c-black-30 {
  color: var(--black-30) !important;
}

.c-red {
  color: var(--red-main-color) !important;
}

.c-green {
  color: var(--green) !important;
}
.c-orange {
  color: var(--orange) !important;
}

.c-inherit {
  color: inherit;
}

.c-overdraft {
  color: var(--overdraft) !important;
}

.c-overdue-debt {
  color: var(--overdue-debt) !important;
}

.c-non-overdue-debt {
  color: var(--non-overdue-debt) !important;
}

.c-remaining-credit {
  color: var(--remaining-credit) !important;
}
.c-zakazano-debt {
  color: var(--zakazano-debt) !important;
}
.c-no-credit {
  color: var(--grey-dark) !important;
}

.c-overpayment {
  color: var(--overpayment) !important;
}

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

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

.bt-grey-dark {
  border-top: 1px solid var(--grey-dark) !important;
}

.nowrap {
  white-space: nowrap;
}

.word-break-normal {
  word-break: normal;
}

.underline {
  text-underline-offset: 4px;
  text-decoration: underline;
}

.line-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  max-height: 2.4em;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.line-clamp_1 {
  max-height: 1.2em;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.line-clamp_2 {
  max-height: 2.4em;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.line-clamp_3 {
  max-height: 3.6em;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.line-clamp_4 {
  max-height: 4.8em;
  line-clamp: 4;
  -webkit-line-clamp: 4;
}

.line-through {
  display: inline-block;
  position: relative;
  color: var(--black-50);
}

.line-through:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-bottom: 1px solid var(--red-main-color);
  transform: rotate(-5deg);
  pointer-events: none;
}

.text :not(:is(h1, h2, h3, h4, h5, h6)) + :is(h1, h2, h3) {
  margin-top: var(--space-40);
}

.text :not(:is(h1, h2, h3, h4, h5, h6)) + :is(h4, h5, h6) {
  margin-top: 26px;
}

.text_sm {
  line-height: 1.6;
}

.text_sm h3 {
  margin-bottom: 24px;
}

.text_sm h4 {
  --fs-h4: var(--fs-18);
  margin-bottom: 12px;
}

.text_sm ul,
.text_sm ol,
.text_sm ol > li {
  margin-bottom: 26px;
}

.text:not(.text_sm) ul,
.text:not(.text_sm) ol {
  list-style: none;
  padding: 0;
}

.text:not(.text_sm) li > ul,
.text:not(.text_sm) li > ol {
  margin: 0;
}

.text:not(.text_sm) li {
  position: relative;
  padding-left: 61px;
}

.text:not(.text_sm) ul > li:before {
  content: "\2022";
  color: var(--red-main-color);
  position: absolute;
  left: 30px;
}

.text:not(.text_sm) ol {
  counter-reset: li;
}

.text:not(.text_sm) ol > li {
  counter-increment: li;
}

.text:not(.text_sm) ol > li:before {
  content: counter(li) ".";
  position: absolute;
  left: 30px;
}

.red-dot-list ::marker {
  color: var(--red-main-color);
}

.red-dot-list li {
  margin-bottom: 16px;
}

.text img,
figure img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.text img,
figure img,
figure {
  border-radius: 20px;
}

figure,
figure > a {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

figure > a,
figure > img {
  max-width: 100%;
  align-self: center;
}

figure > a {
  color: var(--black-50);
}

figure > a:hover {
  color: var(--red-main-color);
}

figcaption {
  font-size: 14px;
  line-height: 1.2;
  color: var(--black-50);
}

figure > a figcaption {
  color: inherit;
}

.video {
  background-color: var(--black);
  color: var(--white);
  position: relative;
}

.video > a,
.video > a:hover {
  color: inherit;
}

.video img {
  opacity: 0.5;
}

.video figcaption {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 40px;
  font-size: var(--fs-h4);
  line-height: 1.2;
  font-weight: 500;
}

.video__btn {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  margin: -40px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  transition: 0.15s ease-in-out;
}

.video:hover .video__btn {
  border-color: var(--red-main-color);
  background-color: var(--red-main-color);
  color: var(--white);
  --fill: var(--white);
}

.video__btn .icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 991.98px) {
  .video figcaption {
    left: 30px;
    right: 30px;
    top: 30px;
  }
}

@media (max-width: 767.98px) {
  .video figcaption {
    left: 15px;
    right: 15px;
    top: 15px;
    font-size: var(--fs-16);
  }

  .video__btn {
    width: 60px;
    height: 60px;
    margin: -30px;
  }

  .video__btn .icon {
    width: 30px;
    height: 30px;
  }
}

blockquote {
  background: var(--grey-light);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

blockquote > :last-child {
  margin-bottom: 0;
}

blockquote:before {
  content: "";
  position: absolute;
  left: 40px;
  top: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='.5' d='M11.4 14.82c1.04-.32 1.893-.867 2.56-1.64.693-.773.973-1.667.84-2.68-.293-.24-.707-.48-1.24-.72s-1-.44-1.4-.6a2.191 2.191 0 0 1-.04-1.24c.134-.4.32-.747.56-1.04.24-.32.507-.573.8-.76.32-.213.627-.32.92-.32.88.08 1.68.427 2.4 1.04.72.587 1.08 1.467 1.08 2.64 0 .64-.133 1.307-.4 2a7.033 7.033 0 0 1-1.16 1.96 8.424 8.424 0 0 1-1.84 1.64c-.72.48-1.52.84-2.4 1.08l-.68-1.36Zm-7.28 0c1.04-.32 1.893-.867 2.56-1.64.693-.773.973-1.667.84-2.68-.293-.24-.707-.48-1.24-.72s-1-.44-1.4-.6a2.19 2.19 0 0 1-.04-1.24c.133-.4.32-.747.56-1.04.24-.32.507-.573.8-.76.32-.213.627-.32.92-.32.88.08 1.68.427 2.4 1.04.72.587 1.08 1.467 1.08 2.64 0 .64-.133 1.307-.4 2a7.035 7.035 0 0 1-1.16 1.96A8.426 8.426 0 0 1 7.2 15.1c-.72.48-1.52.84-2.4 1.08l-.68-1.36Z' fill='%231E1E1E'/%3E%3C/svg%3E");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center center;
}

blockquote.blockquote-info:before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 16.645V8.75m0-1.12V5.356M20.43 11a9.429 9.429 0 1 1-18.857 0 9.429 9.429 0 0 1 18.857 0Z' stroke='%231E1E1E' opacity='.5' stroke-width='1.8' stroke-miterlimit='10'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
  blockquote {
    padding: 30px 20px;
  }

  blockquote:before {
    left: 20px;
  }
}

.table,
.text table {
  width: 100%;
  line-height: 1.2;
}

.table td,
.table th,
.text td,
.text th {
  padding: 15px;
  border-bottom: 1px dashed var(--grey-dark);
}

.table tbody:last-child tr:last-child td,
.text tbody:last-child tr:last-child td {
  border-bottom: none;
}

.table tr,
.text tr {
  transition: background-color 0.15s ease-in-out;
}

:where(html.no-touch) .table tr:hover,
:where(html.no-touch) .text tr:hover,
:where(html.is-touch) .table tr:active,
:where(html.is-touch) .text tr:active {
  background-color: var(--grey-light);
}

.table_sm {
  font-size: 14px;
  line-height: 1.2;
}

.table_sm th {
  font-size: 12px;
}

.table_sm .table td,
.table_sm .table th {
  padding: 10px;
}

.table-wrapper {
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.text .table-wrapper {
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .text table {
    font-size: 14px;
  }
}

.data-table {
  display: table;
  width: 100%;
  line-height: 1.2;
}

.data-table__head {
  display: table-header-group;
}

.data-table__row {
  display: table-row;
}

.data-table__body {
  display: table-row-group;
}

.data-table__th,
.data-table__td {
  display: table-cell;
  padding: 10px 10px 9px;
  padding-left: 0;
  border-bottom: 1px dotted var(--grey-dark);
}

.data-table__th:last-child,
.data-table__td:last-child {
  padding-right: 0;
}

.data-table__th {
  font-weight: 500;
}

.data-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.2;
}

.data-list__row {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  position: relative;
}

.data-list__value {
  font-weight: 500;
  order: 2;
  text-align: right;
  margin-left: auto;
}

.data-list__row:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.85em;
  border-bottom: 1px dotted var(--grey-dark);
}

.data-list__title > span,
.data-list__value > span {
  display: inline;
  position: relative;
  background: var(--white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.bg-grey-light .data-list__title > span,
.bg-grey-light .data-list__value > span {
  background: var(--grey-light);
}

.data-list__title > span {
  padding-right: 5px;
  display: block;
}

.data-list__value > span {
  padding-left: 5px;
}

.data-list__title .link {
  font-weight: inherit;
}

.data-list__title .link:hover {
  color: var(--red-main-color);
}

.data-list__item_top {
  font-weight: bold;
}

.data-list__item_top .data-list__value {
  color: var(--green);
}

.data-list__text {
  font-size: 12px;
  margin-top: 5px;
}

.data-list__item.is-expandable .data-list__text {
  margin-left: 23px;
}

.data-list__item.is-expandable.is-open .data-list__title .link .icon {
  transform: rotate(180deg);
}

.data-list__item.is-expandable:not(.is-open) .data-list__text {
  display: none;
}

.marker-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.marker-list li {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.marker-list li:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' fill='none' stroke='%2334C759' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.9' y='.9' width='23.2' height='23.2' rx='11.6' stroke-width='1.8'/%3E%3Cpath d='m6.929 12.7 3.581 3.58 7.562-7.56' stroke-width='2.2' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

.btn-round-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  column-gap: 6px;
  border: none;
  background-color: var(--grey-light);
  color: var(--black);
  font-size: var(--fs-12);
  line-height: var(--lh-sm);
  font-weight: 400;
  height: 32px;
  padding: 0 10px;
  border-radius: 16px;
}

.btn-round-check.is-active {
  background: rgba(255, 149, 149, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  column-gap: 10px;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  font-size: var(--fs-16);
  line-height: var(--lh-sm);
  font-weight: 500;
  height: 52px;
  padding: 0 39px;
  border-radius: 12px;
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, background-color, opacity,
    box-shadow;
}

.btn_sm {
  height: 40px;
  font-size: 14px;
  padding: 0 19px;
}

.btn_xs {
  height: 32px;
  font-size: 12px;
  column-gap: 5px;
  padding: 0 19px;
  border-radius: 10px;
}

.btn_block {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767.98px) {
  .btn_xs {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn_mob-block {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.btn[disabled],
.btn.is-disabled {
  opacity: 1;
  cursor: default;
  cursor: not-allowed;
}

.btn_primary {
  background-color: var(--red-main-color);
  border-color: var(--red-main-color);
  color: var(--white);
}

:where(html.no-touch) .btn_primary:hover,
:where(html.is-touch) .btn_primary:active {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn_primary[disabled],
.btn_primary.is-disabled {
  background-color: var(--grey-light);
  border-color: var(--grey-light);
  color: var(--black-30);
}

.btn_stroke {
  background-color: transparent;
  border-color: var(--red-main-color);
  color: var(--red-main-color);
}

:where(html.no-touch) .btn_stroke:hover,
:where(html.is-touch) .btn_stroke:active {
  background-color: var(--red-main-color);
  border-color: var(--red-main-color);
  color: var(--white);
}

.btn_stroke-gray {
  background-color: transparent;
  border-color: var(--grey-dark);
  color: var(--black);
}

:where(html.no-touch) .btn_stroke-gray:hover,
:where(html.is-touch) .btn_stroke-gray:active {
  background-color: transparent;
  border-color: var(--red-main-color);
  color: var(--red-main-color);
}

.btn_stroke-gray[disabled],
.btn_stroke-gray.is-disabled {
  background-color: transparent;
  border-color: var(--grey-dark);
  color: var(--black-50);
}

.btn_gray,
.btn_gray-static {
  background-color: var(--grey-light);
  border-color: var(--grey-light);
  color: var(--black);
}

:where(html.no-touch) .btn_gray:hover,
:where(html.is-touch) .btn_gray:active {
  background-color: var(--red-main-color);
  border-color: var(--red-main-color);
  color: var(--white);
}

.btn_gray[disabled],
.btn_gray.is-disabled {
  background-color: var(--white);
  border-color: var(--grey-dark);
  color: var(--black-50);
}

.btn_gray-static {
  cursor: auto;
  user-select: auto;
}

.btn_black {
  background-color: transparent;
  border-color: transparent;
  color: var(--black);
}

:where(html.no-touch) .btn_black:hover,
:where(html.is-touch) .btn_black:active {
  background-color: transparent;
  border-color: var(--red-main-color);
  color: var(--red-main-color);
}

.btn_black-pagination {
  background-color: transparent;
  border-color: transparent;
  color: var(--black);
}

:where(html.no-touch) .btn_black-pagination:hover,
:where(html.is-touch) .btn_black-pagination:active {
  background-color: transparent;
  border-color: var(--grey-dark);
  color: var(--black);
}

.btn_white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
  box-shadow: var(--popup-shadow);
}

:where(html.no-touch) .btn_white:hover,
:where(html.is-touch) .btn_white:active {
  background-color: var(--red-main-color);
  border-color: var(--red-main-color);
  color: var(--white);
}

.btn_white .c-black-50 {
  transition: 0.15s ease-in-out;
}

:where(html.no-touch) .btn_white:hover .c-black-50,
:where(html.is-touch) .btn_white:active .c-black-50 {
  color: var(--white) !important;
}

.link-blue,
.link-black,
.link-red {
  display: inline;
  vertical-align: baseline;
  border: none;
  padding: 0;
  background: none;
  text-decoration: none;
  text-underline-offset: 4px;
  cursor: pointer;
}

.link-blue {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}

:where(html.no-touch) .link-blue:hover,
:where(html.is-touch) .link-blue:active {
  color: var(--blue);
  text-decoration: underline;
}

@supports (text-decoration-color: transparent) {
  .link-blue {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: 0.15s ease-in-out;
  }

  :where(html.no-touch) .link-blue:hover,
  :where(html.is-touch) .link-blue:active {
    text-decoration-color: currentColor;
  }
}

.link-black {
  color: var(--black);
  text-decoration: underline;
}

:where(html.no-touch) .link-black:hover,
:where(html.is-touch) .link-black:active {
  color: var(--red-main-color);
}

.link-red {
  color: var(--red-main-color);
}

:where(html.no-touch) .link-red:hover,
:where(html.is-touch) .link-red:active {
  color: var(--red-dark);
}

.link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  column-gap: 5px;
  border: none;
  background-color: transparent;
  color: inherit;
  font-weight: 500;
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
  max-width: 100%;
}

.link > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 1px;
}

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

:where(html.no-touch) .link_grey:hover,
:where(html.is-touch) .link_grey:active {
  color: var(--red-main-color);
}

.link_red {
  color: var(--red-main-color);
}

:where(html.no-touch) .link_red:hover,
:where(html.is-touch) .link_red:active {
  color: var(--red-dark);
}

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

:where(html.no-touch) .link_black:hover,
:where(html.is-touch) .link_black:active {
  color: var(--red-main-color);
}

.icon-btn {
  flex-shrink: 0;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  border: none;
  padding: 0;
  background: none;
  color: var(--black-50);
}

:where(html.no-touch) .icon-btn:hover,
:where(html.is-touch) .icon-btn:active {
  color: var(--black);
}

.copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  border: none;
  padding: 0 15px;
  height: 40px;
  background: var(--grey-light);
  color: var(--black);
  border-radius: 100px;
  transition: 0.15s ease-in-out;
}

:where(html.no-touch) .copy-btn:hover,
:where(html.is-touch) .copy-btn:active {
  color: var(--red-main-color);
}

.copy-btn .icon {
  color: var(--black-50);
  transition: 0.15s ease-in-out;
}

:where(html.no-touch) .copy-btn:hover .icon,
:where(html.is-touch) .copy-btn:active .icon {
  color: var(--red-main-color);
}

.copy-btn_sm {
  column-gap: 5px;
  padding: 0 7px;
  height: 24px;
  font-size: 10px;
}

.copy-btn_sm .icon {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .clear-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.input-wrapper {
  box-shadow: 0 0 0 1px var(--grey-dark) inset;
  border-radius: 12px;
  background-color: var(--white);
}

.input-wrapper:hover,
.input-wrapper:has(.form-control:focus) {
  box-shadow: 0 0 0 1px var(--black) inset;
}

.input-wrapper:has(.form-control.error),
.input-wrapper:has(.form-control.is-error) {
  box-shadow: 0 0 0 2px var(--red-main-color) inset;
}

.input-wrapper:has(.form-control[disabled]) {
  box-shadow: 0 0 0 2px var(--grey-light) inset;
  background-color: var(--grey-light);
}

.input-wrapper .form-control {
  border-color: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.form-control,
.form-select {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, background-color, box-shadow,
    opacity;
  width: 100%;
  height: 52px;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 19px;
  border-radius: 12px;
  background-color: var(--white);
  border: 1px solid var(--grey-dark);
  color: var(--black);
}

.form-control::placeholder {
  color: var(--black-50);
  opacity: 1;
}

.form-select {
  max-width: 100%;
  margin: 0;
  padding-right: 50px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3.5 7.25 7.5 7.5 7.5-7.5' stroke='%23858585' stroke-width='1.8' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 19px center;
  background-size: 22px 22px;
}

.form-select::-ms-expand {
  display: none;
}

textarea.form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: auto;
  resize: none;
}

.form-control:hover,
.form-select:hover,
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--black);
}

.form-control.error,
.form-control.is-error,
.form-select.error,
.form-select.is-error {
  border-color: var(--red-main-color);
  box-shadow: 0 0 0 1px var(--red-main-color) inset;
}

.form-control[disabled],
.form-select[disabled] {
  background-color: var(--grey-light);
  border-color: var(--grey-dark);
  color: var(--black-50);
  opacity: 1;
  cursor: default;
  cursor: not-allowed;
}

.form-control_sm,
.form-select_sm {
  height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.form-control_date {
  padding-right: 50px;
}

.form-control-calendar-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  color: var(--red-main-color);
  pointer-events: none;
}

.form-control.is-valid {
  padding-right: 50px;
}

.form-control-valid-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  color: var(--green);
  pointer-events: none;
}

.form-control:not(.is-valid) ~ .form-control-valid-icon {
  display: none;
}

label.error,
label.is-error {
  display: block;
  color: var(--red-main-color) !important;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 5px;
  margin-left: 5px;
}

.form-floating {
  position: relative;
}

.form-floating .form-control,
.form-floating .form-select {
  padding-top: 23px;
  padding-bottom: 7px;
}

.form-floating .form-control::placeholder {
  color: transparent !important;
}

.form-floating.has-clear .form-control:not(:placeholder-shown) {
  padding-right: 42px;
}

.form-floating.has-password .form-control {
  padding-right: 50px;
}

.form-floating .form-label,
.form-floating label.error,
.form-floating label.is-error {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 20px;
  top: 16px;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: var(--black-50);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  transform-origin: 20px center;
  transition: 0.15s ease-in-out;
}

.form-floating .select2 ~ .form-label,
.form-floating .select2 ~ label.error,
.form-floating .select2 ~ label.is-error {
  padding-right: 30px;
}

/* .input-wrapper:hover .form-control:not([readonly]) ~ .form-label,
.form-floating .form-control:not([readonly]):hover ~ .form-label,
.form-floating .select2.select2-container:hover ~ .form-label {
  color: var(--black);
} */

.form-floating .form-control:not(:placeholder-shown) ~ .form-label,
.form-floating .form-control:not([readonly]):focus ~ .form-label,
.form-floating .form-control:not(:placeholder-shown) ~ label.error,
.form-floating .form-control:not(:placeholder-shown) ~ label.is-error,
.form-floating .form-control:not([readonly]):focus ~ label.error,
.form-floating .form-control:not([readonly]):focus ~ label.is-error,
.form-floating .form-select:valid ~ .form-label,
.form-floating .form-select:valid ~ label.error,
.form-floating .form-select:valid ~ label.is-error,
.form-floating .select2 ~ .form-label,
.form-floating .select2 ~ label.error,
.form-floating .select2 ~ label.is-error {
  width: 130%;
  color: var(--black-50);
  transform: translateY(-11px) scale(0.75);
}

.form-floating .form-control:-webkit-autofill ~ .form-label,
.form-floating .form-control:-webkit-autofill ~ label.error,
.form-floating .form-control:-webkit-autofill ~ label.is-error {
  width: 131%;
  color: var(--black-50);
  transform: translateY(-11px) scale(0.75);
}

.form-floating .select2:has(.select2-selection__placeholder) ~ .form-label,
.form-floating .select2:has(.select2-selection__placeholder) ~ label.error,
.form-floating .select2:has(.select2-selection__placeholder) ~ label.is-error {
  width: 100%;
  transform: translateY(0) scale(1);
}

.form-floating .form-control[disabled] ~ .form-label,
.form-floating .form-select[disabled] ~ .form-label {
  color: var(--black-50) !important;
}

.form-floating .form-control.error ~ .form-label,
.form-floating .form-control.is-error ~ .form-label,
.form-floating .form-select.error ~ .form-label,
.form-floating .form-select.is-error ~ .form-label {
  color: var(--red-main-color) !important;
}

.form-floating .form-control.error ~ label.error ~ .form-label,
.form-floating .form-control.is-error ~ label.is-error ~ .form-label,
.form-floating .form-select.error ~ label.error ~ .form-label,
.form-floating .form-select.is-error ~ label.is-error ~ .form-label {
  display: none !important;
}

.phone-input {
  position: relative;
}

.phone-input .form-control {
  padding-left: 70px;
}

.phone-input .form-floating .form-label,
.phone-input .form-floating label.error,
.phone-input .form-floating label.is-error {
  padding-left: 70px;
  transform-origin: 70px center;
}

.phone-input__flag {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70px;
  border: none;
  padding: 0 0 0 20px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.phone-input__flag-icon {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 15px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.phone-input__flag-icon[data-country="ru"] {
  background-image: url("../images/flag-ru.png");
}

.phone-input__flag-icon[data-country="by"] {
  background-image: url("../images/flag-by.png");
}

.phone-input__flag:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2.227 4.614 4.772 4.772 4.773-4.772' stroke='%231E1E1E' stroke-width='1.8' stroke-miterlimit='10' opacity='.5'/%3E%3C/svg%3E");
}

.phone-input.is-open .phone-input__flag:after {
  transform: rotate(180deg);
}

.phone-input__dropdown {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--popup-shadow);
  display: none;
  padding: 10px 5px;
  position: absolute;
  left: 0;
  min-width: 250px;
  top: 100%;
  z-index: 100;
}

.phone-input.is-open .phone-input__dropdown {
  display: block;
}

.phone-input__item {
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  border: none;
  padding: 10px 15px;
  border-radius: 0;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}

.phone-input__item:hover {
  background: var(--grey-light);
}

.phone-input__item-flag {
  flex-shrink: 0;
  margin-right: 10px;
}

.phone-input__item-code {
  color: var(--black-50);
  margin-left: 0.35em;
}

.form-control-subtitle {
  font-size: 14px;
  line-height: 1.2;
  color: var(--black-50);
  padding: 0 20px 5px;
  margin-top: -3px;
  display: none;
}

.input-clear {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
}

.input-clear:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px;
}

.form-control:placeholder-shown ~ .input-clear {
  display: none;
}

.toggle-password-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
}

input[type="text"] ~ .toggle-password-btn .icon:first-child,
input[type="password"] ~ .toggle-password-btn .icon:last-child {
  display: none;
}

.select2.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  transition: 0.15s ease-in-out;
  width: 100%;
  height: auto;
  min-height: 52px;
  font-size: 16px;
  line-height: 1.2;
  padding: 15px 19px;
  padding-right: 50px;
  border-radius: 12px !important;
  background-color: var(--white);
  border: 1px solid var(--grey-dark);
  color: var(--black);
}

.form-floating .select2-container .select2-selection--single {
  padding-top: 23px;
  padding-bottom: 7px;
}

.select2-container:hover .select2-selection--single,
.select2-container.select2-container--focus .select2-selection--single,
.select2-container.select2-container--open .select2-selection--single {
  border-color: var(--black);
}

.form-select.error ~ .select2 .select2-selection--single,
.form-select.is-error ~ .select2 .select2-selection--single {
  border-color: var(--red-main-color);
  box-shadow: 0 0 0 1px var(--red-main-color) inset;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  color: inherit;
  line-height: inherit;
  padding: 0;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.form-select.nowrap
  ~ .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container
  .select2-selection--single
  .select2-selection__rendered
  small {
  font-size: 14px;
  color: var(--black-50);
}

.select2-container
  .select2-selection--single
  .select2-selection__clear
  ~ .select2-selection__rendered {
  margin-right: 22px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  margin-top: -11px;
  right: 19px;
  height: 22px;
  width: 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3.5 7.25 7.5 7.5 7.5-7.5' stroke='%23858585' stroke-width='1.8' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.select2-container.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  transform: rotate(180deg);
}

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

.select2-container .select2-selection--single .select2-selection__clear {
  position: absolute;
  top: 50%;
  margin: -11px 0 0 0;
  padding: 0;
  right: 47px;
  height: 22px;
  width: 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4.637 4.636 12.727 12.728m-12.727 0L17.364 4.636' stroke='%231E1E1E' stroke-width='1.8' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  opacity: 0.5;
}

.select2-container .select2-selection--single .select2-selection__clear:hover {
  opacity: 1;
}

.select2-container .select2-selection--single .select2-selection__clear > span {
  display: none;
}

.select2-dropdown {
  background: var(--white);
  border-radius: 12px !important;
  box-shadow: var(--popup-shadow);
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 0;
  border: none;
  z-index: 5001;
}

.select2-dropdown-footer {
  text-align: center;
  padding: 10px 20px;
}

.select2-search--dropdown {
  display: none;
}

.select2-container .select2-results > .select2-results__options {
  max-height: 300px;
}

.select2-results__option {
  padding: 12px 20px;
  position: relative;
  cursor: pointer;
  color: var(--black);
}

.select2-container .select2-results__option--selected,
.select2-container
  .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--grey-light);
  color: var(--black);
}

.select2-container .select2-results__option--selected {
  padding-right: 48px;
}

.select2-container .select2-results__option--selected:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1.286 9.775 4.96 4.96 10.469-10.47' stroke='%2334C759' stroke-width='2.8' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.select2-results__option small {
  display: block;
  font-size: 14px;
  color: var(--black-50);
}

.input-select {
  position: relative;
}

.input-select__select-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

.input-select__arrow {
  position: absolute;
  color: var(--red-main-color) !important;
  top: 50%;
  margin-top: -11px;
  right: 19px;
  height: 22px;
  width: 22px;
}

.input-select.is-open .input-select__arrow {
  transform: rotate(180deg);
}

.input-select .form-floating .form-control {
  padding-right: 50px;
}

.input-select .form-floating.has-clear .form-control:not(:placeholder-shown) {
  padding-right: 75px;
}

.input-select .input-clear {
  right: 50px;
}

.input-select .input-clear .icon {
  width: 14px;
  height: 14px;
}

.input-select .select2-container .select2-selection--single {
  opacity: 0;
}

.input-select
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-block {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left;
}

.select-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  column-gap: 10px;
  border: 1px solid var(--grey-dark);
  background-color: var(--white);
  color: var(--black);
  font-size: var(--fs-16);
  line-height: var(--lh-sm);
  font-weight: 500;
  height: 52px;
  padding: 0 14px;
  border-radius: 12px;
}

.select-block__btn.select-block__btn_inline {
  padding: 0;
  border: none;
  height: auto;
  column-gap: 8px;
  font-weight: normal;
  font-size: 16px;
  line-height: inherit;
  border-radius: 0;
  background: none;
}

.select-block__btn_inline .icon {
  width: 17px;
  height: 17px;
}

.select-block__btn.select-block__btn_xs {
  border: none;
  height: 30px;
  column-gap: 6px;
  font-weight: normal;
  border-radius: 20px;
  font-size: 14px;
  line-height: 18px;
  padding: 6px 12px;
  background: var(--grey-light);
  color: var(--black);
}

.select-block__btn_xs .icon {
  width: 14px;
  height: 14px;
  color: var(--black-50);
}

:where(html.no-touch) .select-block__btn:hover,
:where(html.is-touch) .select-block__btn:active {
  color: var(--red-main-color);
}

.select-block__btn > span {
  flex-grow: 1;
  min-width: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-block.is-open .select-block__btn-arrow {
  transform: rotate(180deg);
}

.select-block:not(.has-clear) .select-block__btn-clear,
.select-block.has-clear:not(.has-value) .select-block__btn-clear,
.select-block.has-clear.has-value .select-block__btn-arrow {
  display: none;
}

.select-block__bg {
  display: none;
}

.select-block__window {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 2px;
  z-index: 10;
  width: 100%;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--popup-shadow);
  font-size: 14px;
  line-height: 18px;
  padding: 10px 0;
  overflow: hidden;
  display: none;
}

.select-block.is-reverse .select-block__window {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

.select-block__window_calendar {
  width: 246px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.select-block__window_calendar .tempus-dominus-widget {
  width: 100%;
}

.select-block.is-open .select-block__window {
  display: block;
}

.select-block.is-open.is-calendar-show .select-block__window_standart,
.select-block.is-open:not(.is-calendar-show) .select-block__window_calendar {
  display: none;
}

.select-block__list {
  font-size: 12px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
  text-align: left;
  max-height: 240px;
}

.select-block__list a {
  display: flex;
  align-items: baseline;
  column-gap: 5px;
  color: var(--black);
  padding: 5px 12px;
}

.select-block__list a strong {
  font-weight: bold;
  min-width: 23px;
  flex-shrink: 0;
}

.select-block__list a:hover {
  color: var(--black);
  background-color: var(--grey-light);
}

.select-block__window-header {
  display: none;
}

.select-block__window-item {
  display: block;
  position: relative;
  cursor: pointer;
}

.select-block__window-item input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.select-block__window-item input ~ span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 8px 15px;
  position: relative;
}

.select-block__window-item:hover input ~ span {
  background: var(--grey-light);
}

.select-block__window-item input:checked ~ span:after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1.286 9.775 4.96 4.96 10.469-10.47' stroke='%2334C759' stroke-width='2.8' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.select-block__calendar-btn {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 6px 15px;
  transition: none;
}

.select-block__calendar-btn:hover {
  background: var(--grey-light);
}

.select-block__calendar-btn .icon {
  color: var(--red-main-color);
}

@media (max-width: 1399.98px) {
  .select-block__btn {
    height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .select-block_tab-fixed .select-block__bg {
    display: block;
    cursor: pointer;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2010;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
  }

  .select-block_tab-fixed.is-open .select-block__bg {
    opacity: 1;
    visibility: visible;
  }

  .select-block_tab-fixed .select-block__window {
    position: fixed;
    left: 0;
    right: 0;
    max-width: 486px;
    margin: 0 auto !important;
    top: 50% !important;
    bottom: auto !important;
    z-index: 2011;
    width: auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
    padding: 30px 15px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-25%);
    transition: 0.25s ease-in-out;
    backface-visibility: hidden;
  }

  .select-block_tab-fixed.is-open .select-block__window {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
  }

  .select-block_tab-fixed .select-block__window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .select-block_tab-fixed .select-block__window-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
  }

  .select-block_tab-fixed .select-block__window-close {
    width: 24px;
    height: 24px;
  }

  .select-block_tab-fixed .select-block__window-item input ~ span {
    padding: 9px 15px;
  }
}

@media (max-width: 767.98px) {
  .select-block_tab-fixed .select-block__window {
    max-width: none;
    margin: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    border-radius: 20px 20px 0 0;
    padding: 25px 10px 20px;
    transform: translateY(100%);
  }

  .select-block_tab-fixed.is-open .select-block__window {
    transform: translateY(0);
  }

  .select-block_tab-fixed .select-block__window-title {
    font-size: 20px;
  }

  .select-block_tab-fixed .select-block__window-close .icon {
    width: 24px;
    height: 24px;
  }
}

.search-mini {
  position: relative;
}

.search-mini__input {
  font-size: 14px;
  line-height: 18px;
  padding: 11px 39px;
  height: 42px;
}

.search-mini__input:placeholder-shown {
  padding-right: 8px;
}

.search-mini__btn {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -9px;
  height: 18px;
  width: 18px;
  pointer-events: none;
  color: var(--black);
}

.search-mini__input:placeholder-shown ~ .search-mini__btn {
  color: var(--black-50);
}

.search-mini__input:hover ~ .search-mini__btn,
.search-mini__input:focus ~ .search-mini__btn {
  color: var(--black);
}

.suggestions-wrapper .suggestions-suggestions {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--popup-shadow);
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 0;
  border: none;
  max-height: 400px;
}

.suggestions-wrapper .suggestions-hint {
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--black-50);
}

.suggestions-wrapper .suggestions-suggestion {
  padding: 12px 20px;
  position: relative;
  cursor: pointer;
}

.suggestions-wrapper .suggestions-suggestion:hover,
.suggestions-wrapper .suggestions-selected,
.suggestions-wrapper .suggestions-selected:hover {
  background: var(--grey-light);
}

.suggestions-wrapper .suggestions-subtext {
  font-size: 14px;
  color: var(--black-50);
}

.suggestions-wrapper .suggestions-subtext_inline {
  display: inline;
  min-width: 0;
  vertical-align: baseline;
  margin: 0 0.25em 0 0;
}

.suggestions-wrapper .suggestions-nowrap {
  white-space: normal;
}

.suggestions-wrapper .suggestions-suggestions strong {
  font-weight: inherit;
  color: inherit;
}

.search-mini .suggestions-wrapper .suggestions-suggestions {
  font-size: 14px;
}

.search-mini .suggestions-wrapper .suggestions-suggestion,
.search-mini .suggestions-wrapper .suggestions-hint {
  padding-left: 15px;
  padding-right: 15px;
}

.search-mini .suggestions-wrapper .suggestions-hint {
  font-size: 12px;
}

.search-row {
}

.search-row__inner {
  position: relative;
}

.search-row__row {
  position: relative;
}

.search-row__input {
  padding-left: 47px;
  padding-right: 14px;
}

.search-row__input:not(:placeholder-shown) {
  padding-right: 45px;
}

.search-row.has-btn:hover .search-row__input,
.search-row.has-btn .search-row__input:hover,
.search-row.has-btn .search-row__input:focus {
  border-color: var(--red-main-color);
  box-shadow: 0 0 0 1px var(--red-main-color) inset;
}

.search-row__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  height: 22px;
  width: 22px;
  margin-top: -11px;
  pointer-events: none;
  color: var(--red-main-color);
}

.search-row__clear {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
}

.search-row__input:placeholder-shown ~ .search-row__clear,
.search-row__input:placeholder-shown ~ .search-row__btn {
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}

.search-row__btn {
  display: none;
}

@media (min-width: 768px) {
  .search-row__clear .icon:last-child {
    display: none;
  }

  .search-row.has-btn .search-row__btn {
    display: flex;
    position: absolute;
    right: 1px;
    top: 1px;
    height: calc(100% - 2px);
    width: 80px;
    padding: 0;
    border-radius: 0 11px 11px 0;
    font-size: 14px;
  }

  .search-row.has-btn .search-row__input:not(:placeholder-shown) {
    padding-right: 125px;
  }

  .search-row.has-btn .search-row__clear {
    right: 95px;
  }

  .search-row.has-btn .autocomplete-dropdown {
    right: 80px;
  }
}

@media (max-width: 767.98px) {
  .search-row__clear .icon:first-child {
    display: none;
  }

  .search-row__clear {
    color: var(--black-30);
  }
}

.number-control {
  display: flex;
  height: 42px;
  column-gap: 0;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--grey-dark);
  background-color: var(--grey-light);
}

.number-control__inner {
  flex-grow: 1;
  min-width: 1px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 0 12px;
  max-width: 220px;
  margin: 0 auto;
}

.number-control__input-wrapper {
  flex-grow: 1;
  min-width: 1px;
  position: relative;
}

.number-control__input {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
  transition: 0.15s ease-in-out;
  transition-property: border-color, background-color;
  text-align: center;
  width: 100%;
  height: 34px;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 0px;
  border-radius: 6px;
  background-color: var(--grey-light);
  border: 1px solid var(--grey-light);
  color: var(--black);
}

.number-control__input:focus {
  border-color: var(--white);
  background-color: var(--white);
  outline: none;
}

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

.number-control__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  pointer-events: none;
  font-size: 11px;
  line-height: 1;
  color: var(--black-50);
  display: flex;
  justify-content: center;
}

.number-control__input:focus ~ .number-control__label {
  display: none;
}

.number-control__btn {
  border: none;
  background: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: -5px;
  color: var(--black);
  touch-action: manipulation;
}

:where(html.no-touch) .number-control__btn:hover,
:where(html.is-touch) .number-control__btn:active {
  color: var(--red-main-color);
}

.number-control__btn.is-disabled {
  color: var(--black-50);
  cursor: default;
}

.number-control__btn:before,
.number-control__btn._plus:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-style: solid;
}

.number-control__btn:before {
  width: 14px;
  margin: -1px 0 0 -7px;
  border-width: 2px 0 0 0;
}

.number-control__btn._plus:after {
  height: 14px;
  margin: -7px 0 0 -1px;
  border-width: 0 0 0 2px;
}

.form-check {
  position: relative;
  line-height: 1.2;
  margin-bottom: 10px;
}

.form-check label {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.form-check label.error,
.form-check label.is-error {
  display: block;
}

.form-check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
}

.form-check__btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  position: relative;
}

.form-check__text {
  flex-grow: 1;
  min-width: 1px;
}

.form-check__image {
  flex-shrink: 0;
}

.form-check__icon {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.form-check__icon:before,
.form-check__icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transition: 0.15s ease-in-out;
}

.form-check__icon:before {
  border: 1px solid var(--grey-dark);
  background: var(--white);
  border-radius: 7px;
}

.form-check input[type="radio"] ~ .form-check__btn .form-check__icon:before,
a.form-check.form-check_btn .form-check__btn .form-check__icon:before {
  border-radius: 50%;
}

.form-check input[type="checkbox"] ~ .form-check__btn .form-check__icon:after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 12.214 3.857 3.857L18 7.93' stroke='%23fff' stroke-width='1.8' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  opacity: 0;
}

.form-check input[type="radio"] ~ .form-check__btn .form-check__icon:after,
a.form-check.form-check_btn .form-check__btn .form-check__icon:after {
  width: 20px;
  height: 20px;
  margin: 2px;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.form-check input:checked ~ .form-check__btn .form-check__icon:after,
a.form-check.form-check_btn.is-active .form-check__btn .form-check__icon:after {
  opacity: 1;
}

.form-check input:focus-visible ~ .form-check__btn .form-check__icon:before,
.form-check
  input:not(:disabled)
  ~ .form-check__btn:hover
  .form-check__icon:before,
a.form-check.form-check_btn .form-check__btn:hover .form-check__icon:before {
  border-color: var(--red-main-color);
  box-shadow: 0 0 0 1px var(--red-main-color) inset;
}

.form-check input:checked ~ .form-check__btn .form-check__icon:before,
a.form-check.form-check_btn.is-active
  .form-check__btn
  .form-check__icon:before {
  border-color: var(--red-main-color);
  background-color: var(--red-main-color);
}

.form-check
  input:checked:focus-visible
  ~ .form-check__btn
  .form-check__icon:before,
.form-check
  input:checked:not(:disabled)
  ~ .form-check__btn:hover
  .form-check__icon:before,
a.form-check.form-check_btn.is-active
  .form-check__btn:hover
  .form-check__icon:before {
  border-color: var(--red-dark);
  background-color: var(--red-dark);
  box-shadow: none;
}

.form-check input:disabled ~ .form-check__btn {
  cursor: default;
  cursor: not-allowed;
}

.form-check input:disabled ~ .form-check__btn .form-check__text {
  opacity: 0.5;
}

.form-check input:disabled ~ .form-check__btn .form-check__icon:before {
  border-color: var(--grey);
  background-color: var(--grey-light);
}

.form-check small {
  font: inherit;
  color: #8e8e8e;
}

.form-check-row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 12px;
}

.form-check-row > * {
  margin: 0;
}

@media (max-width: 767.98px) {
  .form-check-row {
    gap: 12px;
  }

  .form-check-row > * {
    width: 100%;
  }
}

.check-btn-list {
  display: flex;
  gap: 10px;
}

.check-btn-list > * {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 1px;
  margin: 0;
}

@media (max-width: 991.98px) {
  .check-btn-list {
    flex-direction: column;
  }
}

.form-check.form-check_btn {
  display: flex;
  color: inherit;
  text-decoration: none;
}

.form-check.form-check_btn label {
  display: flex;
  width: 100%;
}

.form-check.form-check_btn .form-check__btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: var(--grey-light);
  column-gap: 15px;
  font-weight: 500;
}

.form-check.form-check_btn .form-check__text {
  word-break: break-all;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .form-check.form-check_btn_lg .form-check__btn {
    border-radius: 20px;
    padding: 20px;
    font-size: 18px;
    column-gap: 20px;
  }
}

.form-check.form-check_btn input:focus-visible ~ .form-check__btn,
.form-check.form-check_btn input:not(:disabled) ~ .form-check__btn:hover,
a.form-check.form-check_btn .form-check__btn:hover {
  box-shadow: var(--popup-shadow);
}

.form-check.form-check_btn input:checked ~ .form-check__btn,
a.form-check.form-check_btn.is-active .form-check__btn {
  background-color: var(--white);
  box-shadow: 0 0 0 2px var(--red-main-color) inset !important;
}

.form-switch {
  line-height: 1.2;
}

.form-switch label {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.form-switch label.error,
.form-switch label.is-error {
  display: block;
}

.form-switch input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  width: 44px;
  height: 25px;
}

.form-switch__btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  position: relative;
}

.form-switch input:disabled ~ .form-switch__btn {
  opacity: 0.5;
  cursor: default;
}

.form-switch__text {
  flex-grow: 1;
  min-width: 1px;
  text-align: right;
}

.form-switch
  input:not(:checked)
  ~ .form-switch__btn
  .form-switch__text[data-off-text]:before {
  content: attr(data-off-text);
}

.form-switch
  input:not(:checked)
  ~ .form-switch__btn
  .form-switch__text[data-off-text]
  > span {
  display: none;
}

.form-switch__icon {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 25px;
  background: var(--grey);
  border-radius: 100px;
  transition: 0.15s ease-in-out;
}

.form-switch__icon:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 21px;
  height: 21px;
  background: var(--white);
  box-shadow: var(--popup-shadow);
  border-radius: 50%;
}

.form-switch input ~ .form-switch__btn:hover .form-switch__icon,
.form-switch input:focus-visible ~ .form-switch__btn .form-switch__icon {
  background: var(--black-50);
}

.form-switch input:checked ~ .form-switch__btn .form-switch__icon {
  background: var(--green);
}

.form-switch input:checked ~ .form-switch__btn:hover .form-switch__icon,
.form-switch
  input:checked:focus-visible
  ~ .form-switch__btn
  .form-switch__icon {
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1) inset;
}

.form-switch input:checked ~ .form-switch__btn .form-switch__icon:before {
  left: calc(100% - 23px);
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--grey-dark);
  color: var(--black);
  user-select: none;
  transition: 0.15s ease-in-out;
  transition-property: color, border-color, opacity;
}

:where(html.no-touch) .swiper-button-next:hover,
:where(html.is-touch) .swiper-button-next:active,
:where(html.no-touch) .swiper-button-prev:hover,
:where(html.is-touch) .swiper-button-prev:active {
  color: var(--red-main-color);
  border-color: var(--red-main-color);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  color: var(--black-50);
  display: none;
}

.swiper-button-next .icon,
.swiper-button-prev .icon {
  width: 22px;
  height: 22px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  right: -26px;
}

.swiper-button-prev {
  left: -26px;
}

.swiper-button-prev:not([aria-controls]),
.swiper-button-next:not([aria-controls]) {
  display: none !important;
}

.swiper-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 75px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
  opacity: 0;
  transition: 0.15s ease-in-out;
}

.swiper-overlay_prev {
  left: 0;
}

.swiper-overlay_next {
  right: 0;
  transform: rotate(180deg);
}

.swiper-button-prev[aria-controls]:not(.swiper-button-disabled)
  ~ .swiper-overlay_prev,
.swiper-button-next[aria-controls]:not(.swiper-button-disabled)
  ~ .swiper-overlay_next {
  opacity: 1;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -24px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 3px 0 4px;
}

.swiper-pagination-bullet {
  vertical-align: bottom;
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background: var(--grey-dark);
  opacity: 1;
  position: relative;
  transition: width 0.15s linear;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 70px;
}

.swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background: var(--red-main-color);
  width: 0%;
}

.swiper-pagination.is-active
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  width: 100%;
  transition: width 4s linear;
}

@media (max-width: 991.98px) {
  .swiper-button-next {
    right: -7px;
  }

  .swiper-button-prev {
    left: -7px;
  }
}

@media (max-width: 767.98px) {
  .swiper-pagination-bullet {
    width: 15px;
  }

  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 50px;
  }
}

.sticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  border-radius: 100px;
  padding: 3px 6px;
}

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

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

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

.noUi-target {
  margin-top: 20px;
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 10px 5px 5px;
}

.noUi-target.is-disabled {
  --red-main-color: #8e8e8e;
  pointer-events: none;
}

.noUi-base {
  background-color: var(--grey-dark);
  border: none;
  border-radius: 2px;
  box-shadow: none;
  height: 2px;
}

.noUi-connect {
  background-color: var(--red-main-color);
}

.noUi-origin {
  will-change: unset;
}

.noUi-handle {
  border-radius: 100%;
  background-color: var(--red-main-color);
  box-shadow: none;
  border: 2px solid var(--white);
  cursor: pointer;
}

.noUi-horizontal .noUi-handle {
  width: 10px;
  height: 10px;
  right: -5px;
  top: -4px;
  transition: transform 0.15s ease-in-out;
}

.noUi-horizontal .noUi-handle:hover,
.noUi-horizontal .noUi-handle.noUi-active {
  transform: scale(2);
}

.noUi-handle::after,
.noUi-handle::before {
  display: none;
}

@media (max-width: 991.98px) {
  .noUi-target {
    padding-left: 10px;
    padding-right: 10px;
  }

  .noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
    right: -10px;
    top: -9px;
    transform: none !important;
  }
}

.more-link {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-size: var(--fs-16);
  line-height: var(--lh-sm);
  font-weight: 500;
}

.more-link .icon {
  width: 22px;
  height: 22px;
}

.container {
  box-sizing: content-box;
  max-width: 1540px;
  padding-left: var(--container-space);
  padding-right: var(--container-space);
  margin-left: auto;
  margin-right: auto;
}

.content {
  flex-grow: 1;
  min-height: 1px;
}

[id] {
  scroll-margin-top: calc(var(--header-main-height) + 10px);
}

@media (min-width: 768px) {
  .article-layout [id] {
    scroll-margin-top: calc(var(--header-height) + 10px);
  }
}

@media (max-width: 767.98px) {
  [id] {
    scroll-margin-top: calc(var(--header-height) + 10px);
  }
}

.up-btn {
  position: fixed;
  z-index: 10;
  right: var(--container-space);
  bottom: calc(var(--control-height) + 15px);
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border-color: var(--grey);
  opacity: 0;
  visibility: hidden;
}

html.is-scrolled .up-btn {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .up-btn {
    display: none;
  }
}

.search-item-row {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.search-item-row:hover {
  background-color: var(--grey-light);
}

.search-item-row__sku {
  white-space: nowrap;
  color: var(--black-50);
  flex-shrink: 0;
  min-width: 100px;
}

.search-item-row__title {
  flex-grow: 1;
  min-width: 1px;
}

.search-item-row__price {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.search-item-row__price-current {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.search-item-row__discount {
  font-size: 12px;
  line-height: 14px;
  padding: 2px 4px;
}

@media (max-width: 767.98px) {
  .search-item-row {
    flex-direction: column;
    align-items: stretch;
    row-gap: 4px;
  }
}

.no-results {
  font-size: 14px;
  line-height: 1.2;
  color: var(--black-50);
}

.dropzone-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.dropzone-files {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.dropzone-wrapper:not(.is-selected) .dropzone-files {
  display: none;
}

.dropzone-file {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  column-gap: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  padding: 7px;
  background: var(--grey-light);
  border-radius: 100px;
  cursor: pointer;
}

.dropzone-file__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-dark);
}

.dropzone-file__icon .icon {
  display: block;
  width: 100%;
  height: 100%;
}

.dropzone-file__name {
}

.dropzone-file__remove {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-dark);
}

.dropzone-file__remove .icon {
  display: block;
  width: 100%;
  height: 100%;
}

.dropzone {
  border: 2px dashed rgba(30, 30, 30, 0.1);
  border-radius: 12px;
  position: relative;
}

.dropzone.is-drop-hover {
  border-color: var(--red-main-color);
}

.dropzone__label {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 21px 11px;
}

.dropzone__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  clip: rect(0px, 0px, 0px, 0px);
  opacity: 0;
}

.dropzone__inner {
  display: flex;
  align-items: center;
  justify-content: left;
  column-gap: 25px;
  padding-left: 10px;
}

.dropzone ~ label.error {
  display: none !important;
}

.dropzone ~ label.error:not([style="display: none;"]) ~ .dropzone__info-text {
  color: var(--red-main-color) !important;
}
