* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
*::before,
*::after {
	display: inline-block;
}
html,
body {
	height: 100%;
}
body {
	line-height: 1;
	scrollbar-gutter: stable;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	background-color: transparent;
}
input,
textarea {
	width: 100%;
}
label {
	display: inline-block;
}
button,
select,
option {
	cursor: pointer;
}
a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}
ul li {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}
address {
	font-style: normal;
}
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}@font-face {font-family: Finlandica;font-display: swap;src: url("../../assets/fonts/Finlandica-SemiBold.woff2") format("woff2");font-weight: 600;font-style: normal;}
@font-face {font-family: Finlandica;font-display: swap;src: url("../../assets/fonts/Finlandica-Regular.woff2") format("woff2");font-weight: 400;font-style: normal;}
@font-face {font-family: Finlandica;font-display: swap;src: url("../../assets/fonts/Finlandica-Medium.woff2") format("woff2");font-weight: 500;font-style: normal;}
:root {
  --font-family: Finlandica, sans-serif;
  --viewport-height: 100vh;
  --primary: #f6b560;
  --primary-32: rgba(246, 181, 96, 0.32);
  --primary-48: rgba(246, 181, 96, 0.48);
  --main-text: #f6f6f6;
  --dark-bg: #0f0f0f;
  --dark-bg-80: rgba(15, 15, 15, 0.8);
  --color-gray-1f: #1f1e1e;
  --color-gray-29: #292828;
  --color-gray-3e: #3e3c3c;
  --color-gray-5e: #5e5e5e;
  --color-gray-7f: #7f7f7f;
  --semantic-red: #ef4444;
  --semantic-green: #00cfa9;
  --semantic-blue: #0096ff;
  --semantic-yellow: #ffc100;
  --shadow-color-accent: #f4a844;
  --red-24: rgba(239, 68, 68, 0.24);
  --red-33: rgba(239, 68, 68, 0.33);
}

@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}
body {
  min-width: 320px;
  color: var(--main-text);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 139%;
  background-color: var(--dark-bg);
}
[data-fls-scrolllock] body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 952px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

section {
  position: relative;
  z-index: 2;
}

.page {
  background-image: url("../../assets/img/body-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page--home {
  background-image: url("../../assets/img/home-bg.webp");
}

.page {
  padding-top: var(--header-height);
}

.page--nobg {
  background: none;
}

.title {
  font-weight: 400;
  line-height: 104%;
}
.title--h1 {
  line-height: 94%;
  word-break: break-word;
}
.title--h2 {
  line-height: 104%;
  word-break: break-word;
}
.title--h3 {
  line-height: 113%;
}
.title--h4 {
  line-height: 117%;
}
.title--h5 {
  font-size: 20px;
  line-height: 120%;
}
.title--h6 {
  font-size: 18px;
  line-height: 120%;
}
.title--medium {
  font-weight: 500;
}
.title--center {
  text-align: center;
}

.link,
.link-accent {
  max-width: fit-content;
  font-size: 16px;
  line-height: 138%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 0.3s;
}

.link-accent {
  position: relative;
  color: var(--primary);
}
.link-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  height: 1px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.button {
  max-width: fit-content;
  width: 100%;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  background: linear-gradient(180deg, #f6b560 0%, #f29112 100%);
  color: var(--dark-bg);
  border-radius: 99px;
  padding: 10px 20px;
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.button[disabled] {
  cursor: default;
  background: var(--primary) !important;
  opacity: 0.3;
}
.button--light {
  color: var(--primary);
  backdrop-filter: blur(40px);
  background: var(--primary-32);
}
.button--red {
  color: var(--semantic-red);
  background: var(--red-24);
}
.button--small {
  padding: 8px 16px;
  min-height: 36px;
  min-width: 36px;
  font-size: 16px;
}
.button--middle {
  min-height: 48px;
  min-width: 48px;
}
.button--fw {
  max-width: 100%;
}

.lang-block {
  align-self: start;
  max-width: fit-content;
  position: relative;
}
.lang-block.dropdown-top .lang-block__list {
  top: auto;
  bottom: calc(100% + 4px);
}
.lang-block__button {
  max-width: fit-content;
  border: 1px solid var(--color-gray-3e);
  background-color: var(--dark-bg-80);
  border-radius: 99px;
  padding: 6px 11px 6px 15px;
  min-height: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: border 0.3s;
}
.lang-block__button::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5.50015L8 10.5002L13 5.50015' stroke='%237F7F7F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform 0.3s;
}
.lang-block__button.active {
  border-color: var(--color-gray-5e);
}
.lang-block__button.active::after {
  transform: rotate(-180deg);
}
.lang-block__list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 5;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--color-gray-3e);
  background-color: var(--dark-bg);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 5px;
  transition: visibility 0.3s, opacity 0.3s;
}
.lang-block__list.visible {
  opacity: 1;
  visibility: visible;
}
.lang-block__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3px 2px;
  transition: color 0.3s;
}

.stopwatch {
  width: 28px;
  height: 28px;
  position: relative;
}
.stopwatch__border {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.stopwatch__bg {
  fill: none;
  stroke: var(--primary);
  stroke-opacity: 0.32;
  stroke-width: 10;
  stroke-linecap: round;
}
.stopwatch__progress {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.stopwatch__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  text-align: center;
}

.icon-search {
  padding-left: 36px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L10 10M2 6.66667C2 7.2795 2.12071 7.88634 2.35523 8.45252C2.58975 9.01871 2.93349 9.53316 3.36683 9.9665C3.80017 10.3998 4.31462 10.7436 4.88081 10.9781C5.447 11.2126 6.05383 11.3333 6.66667 11.3333C7.2795 11.3333 7.88634 11.2126 8.45252 10.9781C9.01871 10.7436 9.53316 10.3998 9.9665 9.9665C10.3998 9.53316 10.7436 9.01871 10.9781 8.45252C11.2126 7.88634 11.3333 7.2795 11.3333 6.66667C11.3333 6.05383 11.2126 5.447 10.9781 4.88081C10.7436 4.31462 10.3998 3.80017 9.9665 3.36683C9.53316 2.93349 9.01871 2.58975 8.45252 2.35523C7.88634 2.12071 7.2795 2 6.66667 2C6.05383 2 5.447 2.12071 4.88081 2.35523C4.31462 2.58975 3.80017 2.93349 3.36683 3.36683C2.93349 3.80017 2.58975 4.31462 2.35523 4.88081C2.12071 5.447 2 6.05383 2 6.66667Z' stroke='%237F7F7F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center left 11px;
  background-size: 16px;
}

.accordion-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accordion-block__item {
  border: 1px solid var(--color-gray-3e);
  border-radius: 16px;
  background-color: var(--dark-bg-80);
}
.accordion-block__title {
  padding: 8px 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-block__title {
  gap: 12px;
  cursor: pointer;
  transition: color 0.3s;
}
.accordion-block__title::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.99994 5.50012L7.99994 10.5001L12.9999 5.50012' stroke='%23F6F6F6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.3s, background 0.3s;
}
.accordion-block__title.--spoller-active {
  color: var(--primary);
}
.accordion-block__title.--spoller-active::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.99994 5.50012L7.99994 10.5001L12.9999 5.50012' stroke='%23f6b560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.accordion-block__body {
  padding: 0 16px 16px 16px;
  color: var(--color-gray-7f);
  font-size: 16px;
}

[data-switch-block] {
  position: relative;
}
[data-switch-block] button,
[data-switch-block] a {
  position: relative;
  z-index: 2;
}
[data-switch-block] .switch-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-gray-1f);
  border-radius: 100px;
  pointer-events: none;
  display: block;
  will-change: transform, width, height, left, top;
}
[data-switch-block] .switch-bg-border {
  border-radius: 0;
  background-color: transparent;
  border-bottom: 2px solid var(--primary);
}

.form-exchange {
  border: 1px solid var(--color-gray-3e);
  backdrop-filter: blur(40px);
  background-color: var(--dark-bg-80);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-exchange__warning {
  border-radius: 12px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
  background: rgba(255, 193, 0, 0.32);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-exchange__warning-icon {
  align-self: start;
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}
.form-exchange__warning-icon svg,
.form-exchange__warning-icon img {
  max-width: 100%;
  max-height: 100%;
}
.form-exchange__warning-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--main-text);
}
.form-exchange__warning-close {
  align-self: start;
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-text);
  transition: color 0.3s;
}
.form-exchange__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-exchange__inner .checkbox {
  padding: 0 8px;
}
.form-exchange__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.form-exchange__top > * {
  flex: 1 1 auto;
  min-width: calc(50% - 12px);
}
.form-exchange__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.form-exchange__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 12px;
}
.form-exchange__nav-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
  color: var(--color-gray-7f);
  padding: 5px 0px;
  min-height: 36px;
  position: relative;
  transition: color 0.3s;
}
.form-exchange__nav-btn.active {
  color: var(--primary);
}
.form-exchange__rate-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--color-gray-3e);
  border-radius: 24px;
  padding: 4px;
}
.form-exchange__rate-nav > * {
  flex: 1 1 auto;
  min-width: calc(50% - 5px);
}
.form-exchange__rate-btn {
  border-radius: 100px;
  padding: 4px 8px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.3s;
}
.form-exchange__rows {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-exchange__rows > * {
  flex: 1 1 auto;
  width: calc(50% - 8px);
  min-width: 270px;
}
.form-exchange__row {
  border: 1px solid var(--color-gray-3e);
  background-color: var(--color-gray-1f);
  border-radius: 20px;
  padding: 12px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border 0.3s;
}
.form-exchange__row.is-focused {
  border-color: var(--color-gray-5e);
}
.form-exchange__field {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: text;
}
.form-exchange__field::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form-exchange__field-label {
  color: var(--color-gray-7f);
}
.form-exchange__field-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}
.form-exchange__field-input::-webkit-outer-spin-button, .form-exchange__field-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-exchange__field-input {
  width: 100%;
  outline: none;
  font-weight: 500;
  font-size: 32px;
  line-height: 113%;
  color: var(--main-text);
}
.form-exchange__field-input:focus {
  outline: none;
}
.form-exchange__field-input::placeholder {
  color: var(--color-gray-5e);
}
.form-exchange__field-course {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--color-gray-7f);
}
.form-exchange__field-course span {
  color: var(--main-text);
}
.form-exchange__arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-gray-3e);
}
.form-exchange__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
}
.form-exchange__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-exchange__inputs > * {
  flex: 1 1 auto;
  width: calc(50% - 16px);
  min-width: 250px;
}
.hero .form-exchange__inputs {
  gap: 12px;
}
.form-exchange__rules {
  text-align: center;
}
.form-exchange__rules a {
  color: var(--primary);
}

.exchange-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.exchange-rate__title {
  color: var(--color-gray-7f);
}
.exchange-rate__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.exchange-rate__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.exchange-rate__value {
  color: var(--primary);
}

.filters-dropdown {
  max-width: fit-content;
  width: 100%;
  position: relative;
}
.filters-dropdown._active .filters-dropdown__header {
  background-color: var(--color-gray-5e);
}
.filters-dropdown._active .filters-dropdown__body {
  opacity: 1;
  visibility: visible;
}
.filters-dropdown__header {
  max-width: fit-content;
  width: 100%;
  border-radius: 999px;
  padding: 12px 16px 12px 12px;
  background-color: var(--color-gray-3e);
  min-height: 56px;
  cursor: pointer;
  transition: background 0.3s;
}
.filters-dropdown__header .filters-dropdown__label {
  display: none;
}
.filters-dropdown__box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filters-dropdown__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filters-dropdown__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filters-dropdown__details {
  display: grid;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filters-dropdown__details > * {
  overflow: hidden;
  text-overflow: ellipsis;
}
.filters-dropdown__code {
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
}
.filters-dropdown__label {
  font-size: 16px;
  line-height: 138%;
  color: var(--color-gray-7f);
}
.filters-dropdown__body {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border: 1px solid var(--color-gray-3e);
  border-radius: 20px;
  padding: 16px;
  background-color: var(--color-gray-1f);
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filters-dropdown__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.filters-dropdown__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.filters-dropdown__close {
  align-self: start;
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid var(--color-gray-3e);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: border 0.3s;
}
.filters-dropdown__input-wrap.is-focused .filters-dropdown__search {
  border-color: var(--color-gray-5e);
}
.filters-dropdown__search {
  border: 1px solid var(--color-gray-3e);
  background-color: var(--color-gray-1f);
  border-radius: 12px;
  padding: 6px 12px;
  height: 40px;
  transition: border 0.3s;
  outline: none;
}
.filters-dropdown__search:focus {
  outline: none;
  border-color: var(--color-gray-5e);
}
.filters-dropdown__list {
  max-height: 240px;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filters-dropdown__list::-webkit-scrollbar {
  width: 6px;
  display: block;
}
.filters-dropdown__list::-webkit-scrollbar-track {
  background: var(--main-text);
  border-radius: 8px;
  border: none;
}
.filters-dropdown__list::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-5e);
  border-radius: 8px;
  border: none;
  cursor: grab;
}
.filters-dropdown__list::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
.filters-dropdown__inner {
  display: flex;
  flex-direction: column;
}
.filters-dropdown__name {
  color: var(--color-gray-7f);
}
.filters-dropdown__name:not(:last-child) {
  margin-bottom: 4px;
}
.filters-dropdown__name:not(:first-child) {
  margin-top: 4px;
}
.filters-dropdown__name._hidden {
  display: none !important;
}
.filters-dropdown__item {
  border-radius: 16px;
  padding: 8px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-gray-1f);
}
.filters-dropdown__item.ocf-selected {
  background-color: var(--color-gray-29);
}
.filters-dropdown__item._hidden {
  display: none !important;
}

.input-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.input-field--fw {
  max-width: 100%;
  width: 100%;
  min-width: 100%;
}
.input-field__label {
  font-size: 16px;
  line-height: 138%;
  color: var(--main-text);
  margin-bottom: 5px;
}
.input-field__placeholder {
  pointer-events: none;
  position: absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 1;
  font-size: 18px;
  background-color: var(--color-gray-1f);
  line-height: 139%;
  color: var(--color-gray-7f);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: top 0.3s, font-size 0.3s;
}
.is-focused .input-field__placeholder, .is-filled .input-field__placeholder {
  top: 6px;
  font-size: 12px;
}
.input-field__input {
  border: 1px solid var(--color-gray-3e);
  border-radius: 16px;
  padding: 10px 16px;
  height: 52px;
  background-color: var(--color-gray-1f);
  font-size: 18px;
  line-height: 139%;
  color: var(--main-text);
  outline: none;
  transition: border 0.3s;
}
.input-field__input:focus {
  outline: none;
}
.is-focused .input-field__input, .is-filled .input-field__input {
  padding: 21px 16px 6px 16px;
  border-color: var(--color-gray-5e);
}
.input-field__input.is-error {
  border-color: var(--semantic-red);
}
.input-field__error {
  font-size: 14px;
  line-height: 143%;
  color: var(--semantic-red);
  padding: 0 8px;
}

.file-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  word-break: break-word;
}
.file-block.is-error .file-block__file {
  border-color: var(--semantic-red);
}
.file-block.has-file .file-block__file {
  color: var(--main-text);
}
.file-block__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.file-block__label {
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
  pointer-events: none;
}
.file-block__file {
  pointer-events: all;
  border: 1px dashed var(--color-gray-5e);
  background-color: var(--color-gray-1f);
  border-radius: 16px;
  padding: 8px 16px;
  height: 52px;
  overflow: hidden;
  display: grid;
  align-items: center;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
  transition: border 0.3s;
}
.file-block__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-block__icon svg,
.file-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.file-block__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs__link {
  font-size: 16px;
  line-height: 138%;
  color: var(--color-gray-5e);
}
.breadcrumbs__link.active {
  color: var(--color-gray-7f);
}
.breadcrumbs__link:not(:last-child) {
  margin-right: 8px;
}
.breadcrumbs__link:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
}
.breadcrumbs a.breadcrumbs__link {
  transition: color 0.3s;
}

.more-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.more-options__title {
  max-width: fit-content;
  font-size: 18px;
  line-height: 139%;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.more-options__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  height: 1px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.more-options__title::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5.50015L8 10.5002L13 5.50015' stroke='%23f6b560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform 0.3s;
}
.more-options__title.--spoller-active::after {
  transform: rotate(-180deg);
}
.more-options__body {
  padding-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.copy-btn {
  max-width: fit-content;
  width: 100%;
  border-radius: 99px;
  min-width: 28px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  backdrop-filter: blur(40px);
  background: var(--primary-32);
  transition: background 0.3s;
}

.delete-btn {
  max-width: fit-content;
  width: 100%;
  border-radius: 99px;
  min-width: 28px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--semantic-red);
  backdrop-filter: blur(40px);
  background: var(--red-24);
  transition: background 0.3s;
}

.status {
  align-self: start;
  max-width: fit-content;
  border-radius: 99px;
  padding: 4px 8px;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--semantic-blue);
  background-color: rgba(0, 150, 255, 0.32);
}
.status--yellow {
  color: var(--semantic-yellow);
  background-color: rgba(255, 193, 0, 0.32);
}
.status--red {
  color: var(--semantic-red);
  background-color: rgba(239, 68, 68, 0.32);
}
.status--green {
  color: var(--semantic-green);
  background-color: rgba(0, 207, 169, 0.32);
}

.sel-dropdown {
  width: 100%;
  position: relative;
}
.sel-dropdown._active .sel-dropdown__header::after {
  transform: rotate(-180deg);
}
.sel-dropdown._active .sel-dropdown__body {
  opacity: 1;
  visibility: visible;
}
.sel-dropdown.placeholder .sel-dropdown__header {
  color: var(--color-gray-7f);
}
.sel-dropdown.is-error .sel-dropdown__header {
  border-color: var(--semantic-red);
}
.sel-dropdown__header {
  width: 100%;
  text-align: left;
  border: 1px solid var(--color-gray-3e);
  background-color: var(--color-gray-1f);
  border-radius: 16px;
  padding: 12px 16px;
  min-height: 52px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border 0.3s;
}
.sel-dropdown__header::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5.5L8 10.5L13 5.5' stroke='%237F7F7F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform 0.3s;
}
.sel-dropdown__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}
.sel-dropdown__title > * {
  overflow: hidden;
  text-overflow: ellipsis;
}
.sel-dropdown__box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sel-dropdown__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sel-dropdown__icon img {
  max-height: 100%;
}
.sel-dropdown__details {
  display: grid;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sel-dropdown__details > * {
  overflow: hidden;
  text-overflow: ellipsis;
}
.sel-dropdown__body {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border: 1px solid var(--color-gray-3e);
  border-radius: 20px;
  padding: 16px 12px;
  background-color: var(--color-gray-1f);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sel-dropdown__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sel-dropdown__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.sel-dropdown__close {
  align-self: start;
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid var(--color-gray-3e);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: border 0.3s;
}
.sel-dropdown__input-wrap.is-focused .sel-dropdown__search {
  border-color: var(--color-gray-5e);
}
.sel-dropdown__search {
  border: 1px solid var(--color-gray-3e);
  background-color: var(--color-gray-1f);
  border-radius: 12px;
  padding: 6px 12px;
  height: 40px;
  transition: border 0.3s;
  outline: none;
}
.sel-dropdown__search:focus {
  outline: none;
  border-color: var(--color-gray-5e);
}
.sel-dropdown__list {
  max-height: 240px;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sel-dropdown__list::-webkit-scrollbar {
  width: 6px;
  display: block;
}
.sel-dropdown__list::-webkit-scrollbar-track {
  background: var(--main-text);
  border-radius: 8px;
  border: none;
}
.sel-dropdown__list::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-5e);
  border-radius: 8px;
  border: none;
  cursor: grab;
}
.sel-dropdown__list::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
.sel-dropdown__inner {
  display: flex;
  flex-direction: column;
}
.sel-dropdown__name {
  color: var(--color-gray-7f);
}
.sel-dropdown__name:not(:last-child) {
  margin-bottom: 4px;
}
.sel-dropdown__name:not(:first-child) {
  margin-top: 4px;
}
.sel-dropdown__name._hidden {
  display: none !important;
}
.sel-dropdown__item {
  width: 100%;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-gray-1f);
}
.sel-dropdown__item.ocf-selected {
  background-color: var(--color-gray-29);
}
.sel-dropdown__item._hidden {
  display: none !important;
}.menu {
  max-width: 733px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.menu__wrapper {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.menu__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu__login {
  overflow: hidden;
}
.menu__login-icon {
  display: none;
}
.menu__login-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu__login-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  width: 100%;
  height: calc(var(--viewport-height) - var(--top-position, 60px));
  right: -100%;
  top: 100%;
  overflow: auto;
  pointer-events: none;
  transition: right 0s;
  padding: 0 max(16px, (100% - 920px) / 2) 16px;
  transition-delay: 0.3s;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.user-menu::-webkit-scrollbar {
  width: 0;
  height: 0;
  appearance: none;
  display: none;
}
.user-menu > * {
  pointer-events: all;
}
[data-fls-user-menu-open] .user-menu {
  right: 0;
  transition-delay: 0s;
}
[data-fls-user-menu-open] .user-menu .user-menu__wrapper {
  transform: translate(0px, 0%);
}
.user-menu__wrapper {
  max-width: 350px;
  margin-left: auto;
  width: 100%;
  align-items: stretch;
  gap: 24px;
  background-color: var(--dark-bg);
  background-image: url("../../assets/img/menu-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 16px;
  transform: translate(0px, -100%);
  transition: transform 0.3s;
}
.user-menu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.user-menu__link {
  border-radius: 8px;
  padding: 5px 10px;
  min-height: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 139%;
  color: var(--main-text);
  transition: background 0.3s, color 0.3s;
}
.user-menu__link.active {
  backdrop-filter: blur(50px);
  background-color: rgba(215, 182, 140, 0.32);
  color: var(--primary);
}

.icon-menu {
  display: none;
}[data-fls-header-scroll-show].--header-scroll {
  transition: translate 0.3s;
  translate: 0px -100%;
}
[data-fls-header-scroll-show].--header-show {
  translate: 0 0;
}.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  padding: 20px 0;
}
.header__body {
  border: 1px solid var(--color-gray-3e);
  background-color: var(--dark-bg);
  border-radius: 99px;
  padding: 8px 8px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo {
  max-width: 113px;
  width: 100%;
}
.header__logo img {
  width: 100%;
  object-fit: cover;
}
.header a.header__logo {
  transition: opacity 0.3s;
}.userblock {
  padding: 50px 0 100px 0;
}
.userblock__body {
  display: flex;
  gap: 32px;
}
.userblock__nav {
  max-width: 200px;
  min-width: 157px;
}
.userblock__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.userblock__nav-link {
  border-radius: 8px;
  padding: 5px 10px;
  min-height: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 139%;
  color: var(--main-text);
  transition: background 0.3s, color 0.3s;
}
.userblock__nav-link svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.userblock__nav-link.active {
  backdrop-filter: blur(50px);
  background-color: rgba(215, 182, 140, 0.32);
  color: var(--primary);
}
.userblock__content {
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 20px;
}
.userblock__head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 16px;
}
.userblock__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.userblock__count {
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 4px 8px;
  min-height: 32px;
  background-color: rgba(215, 182, 140, 0.2);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--primary);
}
.userblock__breadcrumbs {
  display: none;
}
.exchange-table {
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 7px 15px;
  backdrop-filter: blur(50px);
  background-color: rgba(15, 15, 15, 0.8);
  overflow-y: auto;
  display: grid;
}
.exchange-table__inner {
  width: 100%;
  min-width: 699px;
  border-collapse: collapse;
}
.exchange-table__head {
  border-bottom: 1px solid var(--color-gray-3e);
  font-size: 18px;
}
.exchange-table__head-item {
  padding: 12px 8px;
  word-break: break-word;
  color: var(--color-gray-7f);
}
.exchange-table__row:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-3e);
}
.exchange-table__item {
  padding: 12px 8px;
  vertical-align: top;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}
.exchange-table__item > *:not(:last-child) {
  margin-bottom: 4px;
}
.exchange-table__currency {
  display: flex;
  align-items: center;
  gap: 8px;
}
.exchange-table__currency-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exchange-table__currency-icon img {
  max-height: 100%;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
  display: block;
}
.table-responsive::-webkit-scrollbar-track {
  background: var(--main-text);
  border-radius: 8px;
  border: none;
}
.table-responsive::-webkit-scrollbar-thumb {
  background-color: var(--color-gray-5e);
  border-radius: 8px;
  border: none;
  cursor: grab;
}
.table-responsive::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}

.settings-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.settings-detail__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.settings-detail__items > * {
  flex: 1 1 auto;
  min-width: calc(33.333% - 16px);
}
.settings-detail__item {
  border: 1px solid var(--color-gray-3e);
  border-radius: 24px;
  padding: 16px 20px;
  background-color: var(--dark-bg-80);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.settings-detail__item-title {
  color: var(--primary);
}
.settings-detail__item-label {
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
}
.settings-detail__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.settings-detail__inner {
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 24px;
  background-color: var(--dark-bg-80);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.settings-detail__head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.settings-detail__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--main-text);
}
.settings-detail__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.settings-detail__inputs > * {
  flex: 1 1 auto;
  width: calc(50% - 16px);
  min-width: 200px;
}
.settings-detail__inputs > *[class*="--fw"] {
  width: 100%;
}

.details-table {
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 7px 15px;
  backdrop-filter: blur(50px);
  background-color: rgba(15, 15, 15, 0.8);
  display: grid;
  word-break: break-word;
}
.details-table__head {
  display: flex;
  border-bottom: 1px solid var(--color-gray-3e);
}
.details-table__head-item {
  flex: 1 1 auto;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
}
.details-table__head-item:first-child {
  flex: none;
  width: 190px;
}
.details-table__row {
  display: flex;
}
.details-table__row:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-3e);
}
.details-table__info {
  flex: 1 1 auto;
  display: flex;
}
.details-table__item {
  flex: 1 1 auto;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.details-table__item:first-child {
  flex: none;
  width: 190px;
}
.details-table__item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details-table__item-icon img {
  max-height: 100%;
}
.details-table__actions {
  padding: 9px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.verification {
  border: 1px solid var(--color-gray-3e);
  backdrop-filter: blur(40px);
  background-color: var(--dark-bg-80);
  border-radius: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.verification__text {
  color: var(--color-gray-7f);
}
.verification__form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.verification__form > * {
  flex: 1 1 auto;
  max-width: none;
  width: calc(50% - 16px);
  min-width: 200px;
}
.verification__form > *[class*="--fw"] {
  width: 100%;
}
.verification__form > *[class*="--long"] {
  width: calc(71% - 16px);
}
.verification__form > *[class*="--small"] {
  width: calc(29% - 16px);
  min-width: 170px;
}
.verification__bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.verification__bottom > * {
  flex: 1 1 auto;
  max-width: none;
  width: calc(50% - 16px);
  min-width: 200px;
}
.verification__bottom > *[class*="--fw"] {
  width: 100%;
}
.verification__bottom > *[class*="--long"] {
  width: calc(71% - 16px);
}
.verification__bottom > *[class*="--small"] {
  width: calc(29% - 16px);
  min-width: 170px;
}
.verification__send {
  align-self: end;
}
.verification__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.verification__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.verification__label {
  color: var(--color-gray-7f);
}
.verification__value {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--main-text);
  word-break: break-word;
}.footer {
  padding: 100px 0;
  border-top: 1px solid var(--color-gray-1f);
  background-image: url("../../assets/img/footer-bg.webp");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer__info {
  max-width: 224px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo {
  max-width: 113px;
  width: 100%;
}
.footer__logo img {
  width: 100%;
  object-fit: cover;
}
.footer__copy {
  font-size: 16px;
  line-height: 150%;
  color: var(--color-gray-5e);
}
.footer__menu {
  max-width: 150px;
  width: 100%;
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__menu-link {
  font-size: 16px;
  line-height: 138%;
  color: var(--color-gray-7f);
}
.footer__contacts {
  max-width: 179px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__label {
  color: var(--color-gray-5e);
}
.footer__value {
  word-break: break-word;
}
.footer a.footer__value {
  transition: color 0.3s;
}
.footer__review {
  max-width: 158px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__review-text {
  color: var(--color-gray-7f);
}
.footer__review-text span {
  font-weight: 500;
  color: var(--main-text);
}
.footer__review-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__review-item {
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__review-item img {
  max-height: 100%;
}
.footer a.footer__review-item {
  transition: opacity 0.3s;
}.authorization {
  padding: 40px 0;
  min-height: 100vh;
  display: grid;
  background-image: url("../../assets/img/login-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.authorization__container {
  width: 100%;
  display: grid;
}
.authorization__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.authorization__content {
  max-width: 464px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.authorization__title {
  color: var(--primary);
}
.authorization__text {
  max-width: 388px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-gray-7f);
}
.authorization__text ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 25px;
}
.authorization__text ul li {
  list-style: disc;
}
.authorization__form {
  max-width: 416px;
  width: 100%;
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(40px);
  background-color: var(--dark-bg-80);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.authorization__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.authorization__logo {
  max-width: 42px;
  width: 100%;
}
.authorization__logo img {
  width: 100%;
  object-fit: cover;
}
.authorization__inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.authorization__info {
  text-align: center;
}.text-section {
  padding: 50px 0 100px 0;
}
.text-section__body {
  display: flex;
  gap: 32px;
}
.text-section__nav {
  max-width: 220px;
  min-width: 189px;
}
.text-section__nav-link {
  border-left: 1px solid transparent;
  padding: 5px 5px 5px 10px;
  font-size: 18px;
  word-break: break-word;
  transition: border 0.3s, color 0.3s;
}
.text-section__nav-link.active {
  border-color: var(--primary);
  color: var(--primary);
}
.text-section__content {
  flex: 1 1 auto;
  width: 100%;
  color: var(--color-gray-7f);
  font-size: 18px;
  line-height: 139%;
}
.text-section__content .spollers {
  color: var(--main-text);
}
.text-section__content > *:not(:last-child) {
  margin-bottom: 16px;
}
.text-section__content > * span {
  color: var(--main-text);
}
.text-section__content > div:not(:first-child) {
  margin-top: 32px;
}
.text-section__content > div:not(:last-child) {
  margin-bottom: 32px;
}
.text-section__content h1,
.text-section__content h2,
.text-section__content h3,
.text-section__content h4,
.text-section__content h5,
.text-section__content h6 {
  font-weight: 400;
  line-height: 104%;
  color: var(--main-text);
}
.text-section__content h1 span,
.text-section__content h2 span,
.text-section__content h3 span,
.text-section__content h4 span,
.text-section__content h5 span,
.text-section__content h6 span {
  color: var(--primary);
}
.text-section__content h1:not(:first-child),
.text-section__content h2:not(:first-child),
.text-section__content h3:not(:first-child),
.text-section__content h4:not(:first-child),
.text-section__content h5:not(:first-child),
.text-section__content h6:not(:first-child) {
  margin-top: 32px;
}
.text-section__content h1:not(:last-child),
.text-section__content h2:not(:last-child),
.text-section__content h3:not(:last-child),
.text-section__content h4:not(:last-child),
.text-section__content h5:not(:last-child),
.text-section__content h6:not(:last-child) {
  margin-bottom: 16px;
}
.text-section__content h1 {
  line-height: 94%;
  word-break: break-word;
}
.text-section__content h1:not(:last-child) {
  margin-bottom: 32px;
}
.text-section__content h2 {
  line-height: 104%;
  word-break: break-word;
}
.text-section__content h2:not(:last-child) {
  margin-bottom: 32px;
}
.text-section__content h3 {
  line-height: 113%;
}
.text-section__content h4 {
  line-height: 117%;
}
.text-section__content h5 {
  font-size: 20px;
  line-height: 120%;
}
.text-section__content h6 {
  font-size: 18px;
  line-height: 120%;
}
.text-section__content b,
.text-section__content strong {
  font-weight: 600;
}
.text-section__content img {
  display: block;
}
.text-section__content img:not(:first-child) {
  margin-top: 32px;
}
.text-section__content img:not(:last-child) {
  margin-bottom: 32px;
}
.text-section__content ul,
.text-section__content ol {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section__content ul li span,
.text-section__content ol li span {
  color: var(--main-text);
}
.text-section__content ul ul,
.text-section__content ul ol,
.text-section__content ol ul,
.text-section__content ol ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section__content ul li {
  list-style: disc;
}
.text-section__content > a {
  max-width: fit-content;
  display: block;
}
.text-section__content hr {
  border: 1px solid var(--color-gray-3e);
}
.text-section__content hr:not(:first-child) {
  margin-top: 32px;
}
.text-section__content hr:not(:last-child) {
  margin-bottom: 32px;
}
.text-section__content table {
  border-collapse: collapse;
  width: 100%;
  word-break: break-word;
}
.text-section__content table:not(:first-child) {
  margin-top: 32px;
}
.text-section__content table:not(:last-child) {
  margin-bottom: 32px;
}
.text-section__content table thead {
  font-weight: 600;
  color: var(--color-gray-7f);
}
.text-section__content table tr {
  border: 1px solid var(--color-gray-3e);
}
.text-section__content table td {
  border: 1px solid var(--color-gray-3e);
  padding: 8px 12px;
}
.text-section__content blockquote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--color-gray-3e);
  backdrop-filter: blur(40px);
  background-color: var(--dark-bg-80);
  padding: 32px;
}
.text-section__content blockquote:not(:first-child) {
  margin-top: 32px;
}
.text-section__content blockquote:not(:last-child) {
  margin-bottom: 32px;
}.exchange-block {
  padding: 50px 0 100px 0;
}
.exchange-block__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.exchange-block__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exchange-block__steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.exchange-block__step {
  color: var(--color-gray-7f);
  display: flex;
  align-items: center;
  gap: 12px;
}
.exchange-block__step:not(:last-child)::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.8333 8L2.83325 8M13.8333 8L8.91017 13M13.8333 8L8.91018 3' stroke='%235E5E5E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.exchange-block__step.current {
  font-weight: 500;
  color: var(--main-text);
}
.exchange-block__step.current .exchange-block__step-num {
  border-color: var(--main-text);
  color: var(--main-text);
}
.exchange-block__step.active {
  font-weight: 500;
  color: var(--primary);
}
.exchange-block__step.active .exchange-block__step-num {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(215, 182, 140, 0.2);
}
.exchange-block__step-num {
  align-self: start;
  border: 1px solid var(--color-gray-5e);
  max-width: fit-content;
  border-radius: 99px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--color-gray-7f);
}
.exchange-block__step-text {
  font-size: 18px;
  line-height: 139%;
}
.exchange-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.exchange-block__inner {
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 32px;
  background-color: var(--dark-bg-80);
}

.payment-block {
  display: flex;
  gap: 32px;
}
.payment-block__qrcode {
  align-self: start;
  max-width: 208px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  border: 1px solid var(--primary);
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-block__qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.payment-block__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.payment-block__head {
  width: 100%;
  display: grid;
  align-content: start;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px 16px;
}
.payment-block__head-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.payment-block__timer {
  align-self: start;
  max-width: fit-content;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 3px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(215, 182, 140, 0.2);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--primary);
}
.payment-block__cancel {
  align-self: start;
  margin-left: auto;
}
.payment-block__cancel-icon {
  display: none;
}
.payment-block__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-block__text {
  max-width: 431px;
  color: var(--color-gray-7f);
}
.payment-block__text span {
  font-weight: 500;
  color: var(--main-text);
}
.payment-block__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.payment-block__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-block__label {
  color: var(--color-gray-7f);
}
.payment-block__value {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--main-text);
  word-break: break-word;
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.payment-detail__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.payment-detail__head-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.payment-detail__title {
  word-break: break-word;
}
.payment-detail__text {
  color: var(--color-gray-7f);
}
.payment-detail__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.payment-detail__label {
  color: var(--color-gray-7f);
}
.payment-detail__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
  color: var(--main-text);
  word-break: break-word;
}
.payment-detail__rows {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.payment-detail__rows > * {
  flex: 1 1 auto;
  width: calc(50% - 8px);
  min-width: 270px;
}
.payment-detail__row {
  background-color: var(--color-gray-1f);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-detail__row-body {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.payment-detail__row-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.payment-detail__row-label {
  color: var(--color-gray-7f);
}
.payment-detail__row-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--main-text);
  word-break: break-word;
}
.payment-detail__row-icon {
  flex-shrink: 0;
  width: 24px;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-detail__row-icon img {
  max-height: 100%;
}
.payment-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-detail__subtitle {
  color: var(--color-gray-7f);
}body::after {
  content: "";
  backdrop-filter: blur(15px);
  background-color: rgba(31, 30, 30, 0.2);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 1549;
}

[data-fls-popup-open] body::after {
  opacity: 1;
}

[data-fls-popup] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 16px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}
[data-fls-popup][data-fls-popup-active] {
  z-index: 1550;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

[data-fls-popup-active] [data-fls-popup-body] {
  visibility: visible;
  transform: scale(1);
}

[data-fls-popup-wrapper] {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-fls-popup-body] {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s, visibility 0.3s ease 0s;
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 20px;
  background-color: var(--dark-bg);
  width: 100%;
  max-width: 552px;
}
.popup--small [data-fls-popup-body] {
  max-width: 456px;
}

[data-fls-popup-youtube-place] iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.popup__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup__head {
  display: flex;
  gap: 12px;
}
.popup__close {
  align-self: start;
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid var(--color-gray-3e);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: border 0.3s;
}
.popup__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.popup__inputs > * {
  flex: 1 1 auto;
  width: calc(50% - 16px);
  min-width: 200px;
}
.popup__inputs > *[class*="--fw"] {
  width: 100%;
}
.authentication {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.authentication__body {
  display: flex;
  gap: 16px;
}
.authentication__qrcode {
  align-self: start;
  max-width: 121px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  border: 1px solid var(--primary);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.authentication__qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.authentication__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.authentication__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.authentication__item-label {
  color: var(--color-gray-7f);
}
.authentication__item-value {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--main-text);
  word-break: break-word;
  display: flex;
  align-items: center;
  gap: 12px;
}[data-fls-spollers] summary {
  list-style: none;
}
[data-fls-spollers] summary::marker, [data-fls-spollers] summary::-webkit-details-marker {
  display: none;
}

.spollers {
  display: flex;
  flex-direction: column;
}

.spollers__item {
  border-top: 1px solid var(--color-gray-3e);
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  padding: 16px 0;
  position: relative;
}
.spollers__title {
  line-height: 117%;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  list-style: none;
}
.spollers__title::marker, .spollers__title::-webkit-details-marker {
  display: none;
}
.spollers__title {
  cursor: pointer;
}
.spollers__title::after {
  content: "";
  margin-left: auto;
  flex-shrink: 0;
  border: 1px solid var(--color-gray-3e);
  border-radius: 59%;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2V14M2 8L14 8' stroke='%237F7F7F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform 0.5s ease 0s, background 0.3s;
}
.spollers__title.--spoller-active {
  color: var(--primary);
}
.spollers__title.--spoller-active::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2V14M2 8L14 8' stroke='%23f6f6f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.spollers__body {
  padding-bottom: 16px;
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
  display: flex;
  flex-direction: column;
}
.spollers__body > *:not(:last-child) {
  margin-bottom: 10px;
}
.spollers__body ul,
.spollers__body ol {
  padding-left: 25px;
}
.spollers__body ul li {
  list-style: disc;
}.swiper {
  overflow: hidden;
}

.swiper-initialized {
  touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock,
.swiper-block-lock,
.swiper-pagination-lock,
.swiper-scrollbar-lock {
  display: none !important;
}

.swiper:not(.swiper-initialized) .swiper-button-prev,
.swiper:not(.swiper-initialized) .swiper-button-next,
.swiper:not(.swiper-initialized) .swiper-block-lock,
.swiper:not(.swiper-initialized) .swiper-pagination,
.swiper:not(.swiper-initialized) .swiper-scrollbar {
  display: none !important;
}.hero {
  padding: 80px 0 50px 0;
}
.hero__body {
  display: flex;
  gap: 40px;
}
.hero__content {
  max-width: 474px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__head {
  border: 1px solid var(--color-gray-3e);
  background-color: var(--dark-bg);
  background-image: url("../../assets/img/hero/hero-img.webp");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  border-radius: 32px;
  padding: 20px 26.36% 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__head-text {
  max-width: 265px;
  width: 100%;
  color: var(--color-gray-7f);
}
.hero__bottom {
  margin-top: auto;
}
.hero__bottom-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__bottom-text {
  color: var(--color-gray-5e);
}
.hero__bottom-logo {
  max-width: 89px;
  width: 100%;
}
.hero__bottom-logo img {
  width: 100%;
  object-fit: cover;
}
.hero__form {
  max-width: 406px;
  width: 100%;
  padding: 20px;
  gap: 16px;
}.runningline {
  padding: 50px 0;
}
.runningline__item {
  font-weight: 500;
}
.runningline__item {
  line-height: 135%;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.5;
}.advantages {
  padding: 50px 0;
}
.advantages__title {
  margin-bottom: 50px;
}
.advantages__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.advantages__item {
  border: 1px solid var(--color-gray-3e);
  background-color: var(--dark-bg);
  border-radius: 32px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.advantages__item-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.advantages__item-title {
  max-width: 230px;
  color: var(--primary);
}
.advantages__item-text {
  margin-top: auto;
  max-width: 272px;
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
}
.advantages__item-img {
  align-self: center;
  max-width: 164px;
  width: 100%;
  min-width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages__item-img img {
  max-height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 29px rgba(246, 181, 96, 0.52));
}.features {
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.features::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-45%, -65%);
  width: 60%;
  aspect-ratio: 662/577;
  pointer-events: none;
  background-image: url("../../assets/img/features-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  mix-blend-mode: lighten;
}
.features__title {
  margin-bottom: 50px;
}
.features__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.features__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.features__item-title {
  line-height: 115%;
  color: var(--primary);
}
.features__item-text {
  line-height: 120%;
}.reviews {
  padding: 50px 0 100px 0;
}
.reviews__title {
  margin-bottom: 50px;
}
.reviews__slider {
  overflow: visible;
  position: relative;
}

.review-card {
  border-radius: 32px;
  padding: 20px;
  background-color: var(--color-gray-1f);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.review-card > *:not(:last-child) {
  margin-bottom: 8px;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-card__head:not(:last-child) {
  margin-bottom: 16px;
}
.review-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card__stars img {
  max-width: 20px;
  width: 100%;
  object-fit: cover;
}
.review-card__arrow {
  flex-shrink: 0;
  margin-left: auto;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.review-card__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--primary);
}
.review-card__text {
  font-size: 18px;
  line-height: 139%;
}
.review-card__author {
  margin-top: auto;
  font-size: 18px;
  color: var(--color-gray-7f);
}.partners {
  padding: 50px 0;
}
.partners__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.partners__text {
  font-size: 18px;
  line-height: 139%;
  text-align: center;
  color: var(--color-gray-7f);
}
.partners__items {
  display: flex;
  align-items: center;
  /*justify-content: space-evenly;*/
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
.partners__item {
  filter: brightness(0.5);
}
.partners__item img {
  max-height: 100%;
}.subscribe {
  padding: 50px 0;
}
.subscribe__body {
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 32px;
  background-color: var(--dark-bg);
  background-image: url("../../assets/img/subscribe/bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.subscribe__content {
  display: flex;
  flex-direction: column;
}
.subscribe__content > *:not(:last-child) {
  margin-bottom: 20px;
}
.subscribe__head {
  display: flex;
  flex-direction: column;
}
.subscribe__head > *:not(:last-child) {
  margin-bottom: 8px;
}
.subscribe__name {
  word-break: break-word;
  color: var(--primary);
}
.subscribe__text {
  max-width: 335px;
  color: var(--color-gray-7f);
}
.subscribe__img {
  align-self: center;
  max-width: 225px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscribe__img img {
  max-height: 100%;
}.faq {
  padding: 50px 0 100px 0;
}
.faq__body {
  display: flex;
  gap: 16px;
}
.faq__title {
  max-width: 172px;
  width: 100%;
  word-break: break-word;
}
.faq__content {
  max-width: 732px;
  width: 100%;
}.checkbox {
  max-width: fit-content;
  display: inline-block;
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:focus-visible ~ .checkbox__text {
  outline: auto;
}
.checkbox__input:checked ~ .checkbox__text::before {
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_i_110_5474)'%3E%3Crect x='1' y='1' width='18' height='18' fill='url(%23paint0_linear_110_5474)'/%3E%3C/g%3E%3Crect x='0.5' y='0.5' width='19' height='19' stroke='url(%23paint1_linear_110_5474)'/%3E%3Cpath d='M6.25 9.23747L8.75 11.75L13.75 6.75' stroke='%230F0F0F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_i_110_5474' x='0' y='0' width='20' height='20' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='4'/%3E%3CfeComposite in2='hardAlpha' operator='arithmetic' k2='-1' k3='1'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.843137 0 0 0 0 0.713726 0 0 0 0 0.54902 0 0 0 1 0'/%3E%3CfeBlend mode='normal' in2='shape' result='effect1_innerShadow_110_5474'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_110_5474' x1='10' y1='1' x2='10' y2='19' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6B560'/%3E%3Cstop offset='1' stop-color='%23F29112'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_110_5474' x1='10' y1='1' x2='10' y2='19' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F6B560'/%3E%3Cstop offset='1' stop-color='%23F29112'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.checkbox__text {
  cursor: pointer;
  position: relative;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
}
.checkbox__text:before {
  content: "";
  margin-top: 2px;
  border-radius: 4px;
  align-self: flex-start;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gray-5e);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px;
  transition: border 0.3s;
}

.switch {
  max-width: fit-content;
  display: inline-flex;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.switch__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.switch__input:focus-visible ~ .switch__check {
  outline: auto;
}
.switch__input:checked ~ .switch__check {
  background: linear-gradient(180deg, #f6b560 0%, #f29112 100%);
}
.switch__input:checked ~ .switch__check::before {
  left: 16px;
  background-color: var(--dark-bg);
}
.switch__check {
  display: block;
  margin-top: 2px;
  border-radius: 12px;
  align-self: flex-start;
  flex: 0 0 32px;
  width: 32px;
  height: 20px;
  background-color: var(--color-gray-3e);
  position: relative;
}
.switch__check::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: var(--main-text);
  transition: left 0.2s;
}
.switch__text {
  position: relative;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 139%;
}.contacts {
  padding: 50px 0 100px 0;
}
.contacts__title {
  margin-bottom: 50px;
}
.contacts__body {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contacts__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts__subtitle {
  padding: 0 16px;
}
.contacts__wrapper {
  border: 1px solid var(--color-gray-3e);
  border-radius: 32px;
  padding: 20px;
  backdrop-filter: blur(40px);
  background-color: var(--dark-bg-80);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts__text {
  max-width: 625px;
  font-size: 18px;
  line-height: 139%;
  color: var(--color-gray-7f);
}
.contacts__time {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-gray-7f);
}
.contacts__time span {
  color: var(--main-text);
}
.contacts__items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.contacts__label {
  color: var(--color-gray-7f);
}
.contacts__value {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--main-text);
  word-break: break-word;
}
.contacts a.contacts__value {
  transition: color 0.3s;
}
.contacts__partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 45px;
}
.contacts__partner {
  filter: brightness(0.5);
}
.contacts__partner img {
  max-height: 100%;
}
.contacts__reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}
.contacts__reviews-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
}
.contacts__reviews-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
}
.contacts__reviews-item {
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__reviews-item img {
  max-height: 100%;
}
.contacts a.contacts__reviews-item {
  transition: opacity 0.3s;
}
@media (width <= 61.99875em) {
  .more-options__body {
    gap: 12px;
  }
  .menu__login {
    padding: 5px;
  }
  .menu__login-text {
    display: none;
  }
  .menu__login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header {
    border-bottom: 1px solid var(--color-gray-3e);
    padding: 12px 0;
    transition: background 0.3s;
  }
  .header.--header-scroll {
    background-color: var(--dark-bg);
  }
  .header__body {
    border: none;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
  }
  .payment-block {
    gap: 16px;
  }
  .payment-block__head {
    gap: 16px;
  }
  .hero__body {
    gap: 16px;
  }
  .partners__items {
    gap: 20px;
  }
}
@media (width <= 59.5em) {
  .menu__wrapper {
    gap: 12px;
  }
}
@media (width <= 47.99875em) and (width <= 29.99875em) {
  .contacts__reviews {
    padding: 0;
  }
}
@media (width <= 47.99875em) {
  .page {
    background-image: url("../../assets/img/body-bg-mob.webp");
  }
  .page--home {
    background-image: url("../../assets/img/home-bg-mob.webp");
  }
  .title--h1 {
    line-height: 113%;
  }
  .title--h2 {
    line-height: 113%;
  }
  .title--h3 {
    line-height: 117%;
  }
  .title--h5 {
    font-size: 18px;
    line-height: 144%;
  }
  .title--h6 {
    font-size: 16px;
    line-height: 144%;
  }
  .form-exchange__inputs {
    gap: 12px;
  }
  .breadcrumbs__link {
    font-size: 14px;
    line-height: 143%;
  }
  .breadcrumbs__link:not(:last-child) {
    margin-right: 4px;
  }
  .breadcrumbs__link:not(:last-child)::after {
    margin-left: 4px;
  }
  .menu__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: absolute;
    width: 100%;
    height: calc(var(--viewport-height) - var(--top-position, 60px));
    right: -100%;
    top: calc(100% + 1px);
    overflow: auto;
    pointer-events: none;
    transition: right 0s;
    transition-delay: 0.3s;
  }
  .menu__body > * {
    pointer-events: all;
  }
  [data-fls-menu-open] .menu__body {
    right: 0;
    transition-delay: 0s;
  }
  [data-fls-menu-open] .menu__body .menu__wrapper {
    transform: translate(0px, 0%);
  }
  .menu__wrapper {
    width: 100%;
    flex: none;
    align-items: stretch;
    gap: 24px;
    background-color: var(--dark-bg);
    background-image: url("../../assets/img/menu-bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--color-gray-3e);
    padding: 63px 16px;
    transform: translate(0px, -100%);
    transition: transform 0.3s;
  }
  .menu__list {
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }
  .menu__link {
    text-align: center;
  }
  .menu__actions {
    margin-left: auto;
    gap: 12px;
  }
  .userblock {
    padding: 20px 0 40px 0;
  }
  .userblock__body {
    flex-direction: column;
    gap: 20px;
  }
  .userblock__nav {
    display: none;
  }
  .userblock__breadcrumbs {
    align-self: center;
    width: 100%;
    display: block;
    order: 1;
  }
  .exchange-table {
    padding: 0 7px;
  }
  .exchange-table__inner {
    font-size: 14px;
    line-height: 143%;
  }
  .exchange-table__head {
    font-size: 14px;
  }
  .settings-detail {
    gap: 16px;
  }
  .settings-detail__items {
    gap: 8px;
  }
  .settings-detail__items > * {
    min-width: calc(33.333% - 8px);
  }
  .settings-detail__item {
    padding: 16px;
  }
  .settings-detail__form {
    gap: 16px;
  }
  .settings-detail__inner {
    padding: 16px;
  }
  .settings-detail__inputs {
    gap: 8px;
  }
  .settings-detail__inputs > * {
    width: calc(50% - 8px);
  }
  .details-table {
    padding: 7px;
  }
  .verification {
    padding: 16px;
  }
  .verification__form {
    gap: 8px;
  }
  .verification__form > * {
    width: calc(50% - 8px);
  }
  .verification__form > *[class*="--long"] {
    width: calc(71% - 8px);
  }
  .verification__form > *[class*="--small"] {
    width: calc(29% - 8px);
  }
  .verification__bottom {
    width: 100%;
  }
  .footer {
    border-color: var(--color-gray-3e);
    padding: 40px 0;
  }
  .footer__body {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: stretch;
    gap: 20px 6px;
  }
  .authorization__form {
    padding: 20px 16px;
    gap: 20px;
  }
  .authorization__inputs {
    gap: 8px;
  }
  .text-section {
    padding: 40px 0;
  }
  .text-section__body {
    flex-direction: column;
    gap: 16px;
  }
  .text-section__nav {
    max-width: 100%;
  }
  .text-section__nav-link {
    font-size: 16px;
  }
  .text-section__content {
    font-size: 16px;
  }
  .text-section__content h1 {
    line-height: 113%;
  }
  .text-section__content h1:not(:last-child) {
    margin-bottom: 20px;
  }
  .text-section__content h2 {
    line-height: 113%;
  }
  .text-section__content h2:not(:last-child) {
    margin-bottom: 20px;
  }
  .text-section__content h3 {
    line-height: 117%;
  }
  .text-section__content h5 {
    font-size: 18px;
    line-height: 144%;
  }
  .text-section__content h6 {
    font-size: 16px;
    line-height: 144%;
  }
  .exchange-block {
    padding: 20px 0 40px 0;
  }
  .exchange-block__step-num {
    min-width: 20px;
    min-height: 20px;
    font-size: 14px;
  }
  .exchange-block__step-text {
    font-size: 16px;
  }
  .exchange-block__inner {
    padding: 16px;
  }
  .payment-block__content {
    gap: 16px;
  }
  .payment-block__cancel {
    padding: 8px;
  }
  .payment-block__cancel-icon {
    display: block;
  }
  .payment-block__cancel-text {
    display: none;
  }
  .payment-block__value {
    font-size: 16px;
  }
  .payment-detail {
    gap: 16px;
  }
  .payment-detail__head-top {
    flex-wrap: wrap;
    gap: 12px;
  }
  .payment-detail__rows {
    gap: 8px;
  }
  .payment-detail__row {
    padding: 12px;
    gap: 8px;
  }
  .popup__inputs {
    gap: 12px;
  }
  .authentication__item-value {
    font-size: 16px;
  }
  .spollers__title {
    line-height: 139%;
    padding: 12px 0;
  }
  .spollers__body {
    padding-bottom: 12px;
    font-size: 16px;
  }
  .hero {
    padding: 4px 0 40px 0;
  }
  .hero__body {
    flex-direction: column-reverse;
  }
  .hero__content {
    max-width: 100%;
    gap: 16px;
  }
  .hero__form {
    max-width: 100%;
  }
  .runningline {
    padding: 40px 0;
  }
  .advantages {
    padding: 20px 0 40px 0;
  }
  .advantages__title {
    margin-bottom: 24px;
  }
  .advantages__items {
    grid-template-columns: 1fr;
  }
  .advantages__item-title {
    max-width: 100%;
  }
  .advantages__item-text {
    max-width: 100%;
  }
  .features {
    padding: 40px 0;
  }
  .features::before {
    width: 100%;
  }
  .features__title {
    margin-bottom: 20px;
  }
  .features__item-text {
    line-height: 143%;
  }
  .reviews {
    padding: 40px 0;
  }
  .reviews__title {
    margin-bottom: 20px;
  }
  .reviews__wrapper:not(:last-child) {
    margin-bottom: 20px;
  }
  .reviews__more {
    margin: 0 auto;
  }
  .review-card__title {
    font-size: 18px;
    line-height: 144%;
  }
  .review-card__text {
    font-size: 16px;
  }
  .review-card__author {
    font-size: 16px;
  }
  .partners {
    padding: 40px 0 20px 0;
  }
  .partners__head {
    gap: 16px;
    margin-bottom: 20px;
  }
  .partners__text {
    font-size: 16px;
  }
  .subscribe {
    padding: 20px 0;
  }
  .subscribe__img {
    max-width: 150px;
  }
  .faq {
    padding: 40px 0;
  }
  .faq__body {
    flex-direction: column;
    gap: 20px;
  }
  .faq__title {
    max-width: 100%;
    text-align: center;
  }
  .faq__content {
    max-width: 100%;
  }
  .contacts {
    padding: 40px 0;
  }
  .contacts__title {
    margin-bottom: 16px;
  }
  .contacts__body {
    gap: 16px;
  }
  .contacts__inner {
    gap: 8px;
  }
  .contacts__wrapper {
    padding: 16px;
  }
  .contacts__text {
    font-size: 16px;
  }
  .contacts__time {
    font-size: 16px;
  }
  .contacts__partners {
    gap: 20px;
  }
  .contacts__reviews {
    gap: 12px;
  }
  .contacts__reviews-text {
    font-size: 20px;
    line-height: 120%;
  }
}
@media (max-width: 47.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}
@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    backdrop-filter: blur(40px);
    background-color: var(--primary-32);
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 11px;
    position: absolute;
    width: 13px;
    height: 1.5px;
    border-radius: 2px;
    background-color: var(--primary);
  }
  .icon-menu::before {
    top: 13px;
  }
  .icon-menu::after {
    bottom: 13px;
  }
  .icon-menu span {
    top: calc(50% - 0.75px);
  }
  [data-fls-menu-open] .icon-menu span {
    width: 0;
  }
  [data-fls-menu-open] .icon-menu::before {
    top: calc(50% - 0.75px);
    transform: rotate(-45deg);
  }
  [data-fls-menu-open] .icon-menu::after {
    bottom: calc(50% - 0.75px);
    transform: rotate(45deg);
  }
  .text-section__content > div:not(:first-child) {
    margin-top: 20px;
  }
  .text-section__content > div:not(:last-child) {
    margin-bottom: 20px;
  }
  .text-section__content h1:not(:first-child),
  .text-section__content h2:not(:first-child),
  .text-section__content h3:not(:first-child),
  .text-section__content h4:not(:first-child),
  .text-section__content h5:not(:first-child),
  .text-section__content h6:not(:first-child) {
    margin-top: 20px;
  }
  .text-section__content img:not(:first-child) {
    margin-top: 20px;
  }
  .text-section__content img:not(:last-child) {
    margin-bottom: 20px;
  }
  .text-section__content hr:not(:first-child) {
    margin-top: 20px;
  }
  .text-section__content hr:not(:last-child) {
    margin-bottom: 20px;
  }
  .text-section__content table:not(:first-child) {
    margin-top: 20px;
  }
  .text-section__content table:not(:last-child) {
    margin-bottom: 20px;
  }
  .text-section__content blockquote {
    padding: 20px;
  }
  .text-section__content blockquote:not(:first-child) {
    margin-top: 20px;
  }
  .text-section__content blockquote:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (width <= 40.62375em) {
  .details-table__head-item:first-child {
    display: none;
  }
  .details-table__row {
    padding: 12px 0;
    gap: 10px;
  }
  .details-table__info {
    flex-direction: column;
    gap: 4px;
  }
  .details-table__item {
    padding: 0;
  }
  .details-table__actions {
    padding: 0;
  }
  .footer {
    background-image: url("../../assets/img/footer-bg-mob.webp");
  }
  .authorization__body {
    flex-direction: column-reverse;
    align-items: stretch;
    justify-content: center;
  }
  .authorization__content {
    max-width: 100%;
  }
  .authorization__text {
    max-width: 100%;
    gap: 16px;
  }
  .authorization__text ul {
    gap: 16px;
  }
  .authorization__form {
    max-width: 100%;
  }
  .payment-block {
    flex-wrap: wrap;
  }
  .payment-block__qrcode {
    max-width: 98px;
    padding: 4px;
    border-radius: 12px;
  }
  .payment-block__content {
    display: contents;
  }
  .payment-block__head {
    width: calc(100% - 114px);
    gap: 8px 12px;
  }
  .payment-block__head .payment-block__text {
    font-size: 14px;
  }
  .payment-block__head-body {
    gap: 8px;
  }
  .payment-block__apply {
    max-width: 100%;
  }
  .payment-detail__items {
    flex-direction: column;
    gap: 4px;
  }
  .payment-detail__item {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }
  .authentication__body {
    flex-direction: column;
  }
  .authentication__qrcode {
    max-width: 200px;
    padding: 9px;
    border-radius: 20px;
    margin: 0 auto;
  }
  .subscribe__body {
    position: relative;
    padding: 20px 16px;
  }
  .subscribe__head {
    padding-right: 90px;
  }
  .subscribe__img {
    position: absolute;
    top: 20px;
    right: 16px;
    max-width: 92px;
  }
  .contacts__items {
    flex-direction: column;
    gap: 4px;
  }
  .contacts__item {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }
}
@media (width <= 29.99875em) {
  .title--h1 {
    font-size: 32px;
  }
  .title--h2 {
    font-size: 32px;
  }
  .title--h3 {
    font-size: 24px;
  }
  .title--h4 {
    font-size: 20px;
  }
  .lang-block__button {
    font-size: 14px;
  }
  .lang-block__link {
    font-size: 14px;
  }
  .accordion-block__title {
    font-size: 14px;
  }
  .accordion-block__body {
    font-size: 14px;
  }
  .form-exchange {
    padding: 16px;
    gap: 20px;
  }
  .form-exchange__link {
    font-size: 14px;
  }
  .form-exchange__rows > * {
    min-width: 250px;
  }
  .exchange-rate__title {
    display: none;
  }
  .exchange-rate__inner {
    flex: 1 1 auto;
  }
  .exchange-rate__time {
    margin-left: auto;
  }
  .menu__actions {
    gap: 8px;
  }
  .user-menu {
    top: calc(100% + 1px);
    padding: 0;
  }
  .user-menu__wrapper {
    border-radius: 0;
    border-right: none;
    border-left: none;
    max-width: none;
    padding: 38px 16px;
  }
  .userblock__count {
    font-size: 18px;
  }
  .userblock__breadcrumbs {
    order: 0;
  }
  .userblock__filter {
    max-width: 100%;
  }
  .settings-detail__items > * {
    width: 100%;
  }
  .settings-detail__btn {
    max-width: 100%;
  }
  .settings-detail__save {
    max-width: 100%;
  }
  .details-table__item {
    font-size: 14px;
  }
  .verification__items {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .verification__item {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
  .verification__label {
    font-size: 14px;
    line-height: 143%;
  }
  .verification__value {
    font-size: 14px;
    line-height: 143%;
    text-align: right;
  }
  .footer__info {
    max-width: 100%;
    border-top: 1px solid var(--color-gray-3e);
    padding-top: 20px;
    grid-column: 1/-1;
    order: 2;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }
  .footer__head {
    gap: 8px;
  }
  .footer__menu {
    max-width: 100%;
    border-top: 1px solid var(--color-gray-3e);
    padding-top: 20px;
    grid-column: 1/-1;
    order: 1;
  }
  .footer__menu-list {
    display: block;
    columns: 150px;
    column-gap: 8px;
  }
  .footer__menu-list > * {
    break-inside: avoid-column;
    margin-bottom: 8px;
  }
  .footer__review {
    order: -1;
  }
  .authorization {
    background-image: url("../../assets/img/login-bg-mob.webp");
  }
  .authorization__text {
    font-size: 14px;
  }
  .text-section__content {
    font-size: 14px;
    line-height: 143%;
  }
  .text-section__content h1 {
    font-size: 32px;
  }
  .text-section__content h2 {
    font-size: 32px;
  }
  .text-section__content h3 {
    font-size: 24px;
  }
  .text-section__content h4 {
    font-size: 20px;
  }
  .exchange-block__step:not(:last-child)::after {
    display: none;
  }
  .exchange-block__wrapper {
    gap: 8px;
  }
  .payment-block__timer {
    border-radius: 8px;
    padding: 2px 7px;
    font-size: 16px;
  }
  .payment-detail__text {
    font-size: 14px;
  }
  .payment-detail__label {
    font-size: 14px;
  }
  .payment-detail__value {
    font-size: 14px;
  }
  .payment-detail__rows > * {
    min-width: 250px;
  }
  .payment-detail__row-label {
    font-size: 14px;
  }
  .payment-detail__row-value {
    font-size: 14px;
  }
  .spollers__title {
    font-size: 18px;
  }
  .hero__head {
    background-position: top right -28px;
  }
  .hero__form {
    padding: 12px;
    gap: 12px;
  }
  .runningline__item {
    font-size: 24px;
  }
  .advantages__items {
    gap: 8px;
  }
  .advantages__item {
    padding: 24px 16px;
    flex-direction: column;
    gap: 16px;
  }
  .advantages__item-body {
    gap: 12px;
    text-align: center;
  }
  .advantages__item-text {
    font-size: 16px;
  }
  .advantages__item-img {
    max-width: 104px;
    order: -1;
  }
  .features::before {
    transform: translate(-50%, -50%);
  }
  .features__items {
    gap: 20px 16px;
  }
  .features__items > * {
    min-width: calc(50% - 16px);
  }
  .features__item-text {
    font-size: 14px;
  }
  .partners {
    position: relative;
  }
  .partners::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0px);
    width: 100%;
    aspect-ratio: 375/300;
    background-image: url("../../assets/img/partners/decor.webp");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
  }
  .partners__items {
    justify-content: stretch;
  }
  .partners__items > * {
    max-width: calc(33.333% - 20px);
  }
  .subscribe__body {
    background-image: url("../../assets/img/subscribe/bg-mob.webp");
  }
  .contacts__text {
    font-size: 14px;
    line-height: 143%;
  }
  .contacts__label {
    font-size: 14px;
  }
  .contacts__value {
    font-size: 14px;
  }
  .contacts__partners > * {
    max-width: calc(33.333% - 20px);
  }
}
@media (width <= 23.12375em) {
  .file-block__label {
    font-size: 16px;
  }
  .file-block__file {
    font-size: 16px;
  }
  .payment-block__head {
    width: 100%;
    order: -1;
  }
  .subscribe__head {
    padding-right: 60px;
  }
  .subscribe__img {
    max-width: 60px;
  }
}
@media (max-width: 22.49875em) {
  .input-field__placeholder {
    top: 15.5px;
    font-size: 16px;
  }
}
@media (width > 29.99875em) and (width <= 59.5em) {
  .title--h1 {
    font-size: clamp( 32px , -0.5396381509px  +  6.7793737553vw , 64px );
  }
  .title--h2 {
    font-size: clamp( 32px , 12.6795898479px  +  4.0252531672vw , 51px );
  }
  .title--h3 {
    font-size: clamp( 24px , 15.8650904623px  +  1.6948434388vw , 32px );
  }
  .title--h4 {
    font-size: clamp( 20px , 15.9325452311px  +  0.8474217194vw , 24px );
  }
  .accordion-block__title {
    font-size: clamp( 14px , 9.9325452311px  +  0.8474217194vw , 18px );
  }
  .text-section__content h1 {
    font-size: clamp( 32px , -0.5396381509px  +  6.7793737553vw , 64px );
  }
  .text-section__content h2 {
    font-size: clamp( 32px , 12.6795898479px  +  4.0252531672vw , 51px );
  }
  .text-section__content h3 {
    font-size: clamp( 24px , 15.8650904623px  +  1.6948434388vw , 32px );
  }
  .text-section__content h4 {
    font-size: clamp( 20px , 15.9325452311px  +  0.8474217194vw , 24px );
  }
  .spollers__title {
    font-size: clamp( 18px , 11.8988178467px  +  1.2711325791vw , 24px );
  }
  .runningline__item {
    font-size: clamp( 24px , 7.7301809245px  +  3.3896868777vw , 40px );
  }
  .features__item-text {
    font-size: clamp( 14px , 7.8988178467px  +  1.2711325791vw , 20px );
  }
}
@media (width > 40.62375em) {
  .payment-detail__item:not(:last-child) {
    padding-right: 16px;
    border-right: 1px solid var(--color-gray-3e);
  }
  .contacts__item:not(:last-child) {
    padding-right: 32px;
    border-right: 1px solid var(--color-gray-3e);
  }
}
@media (width > 47.99875em) {
  .advantages__item--big {
    grid-row: span 2;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: stretch;
    gap: 32px;
  }
  .advantages__item--big .advantages__item-body {
    gap: 16px;
  }
  .advantages__item--big .advantages__item-title {
    max-width: 100%;
  }
  .advantages__item--big .advantages__item-text {
    max-width: 100%;
  }
  .advantages__item--big .advantages__item-img {
    max-width: 277px;
    margin: 0 auto;
  }
  .reviews__slider::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0f0f0f 100%);
  }
  .reviews__wrapper {
    display: block;
    columns: 3;
    column-gap: 16px;
  }
  .reviews__wrapper > * {
    break-inside: avoid-column;
    margin-bottom: 16px;
  }
  .reviews__more {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, 0px);
  }
}
@media (width > 59.5em) {
  .title--h1 {
    font-size: 64px;
  }
  .title--h2 {
    font-size: 51px;
  }
  .title--h3 {
    font-size: 32px;
  }
  .title--h4 {
    font-size: 24px;
  }
  .accordion-block__title {
    font-size: 18px;
  }
  .text-section__content h1 {
    font-size: 64px;
  }
  .text-section__content h2 {
    font-size: 51px;
  }
  .text-section__content h3 {
    font-size: 32px;
  }
  .text-section__content h4 {
    font-size: 24px;
  }
  .spollers__title {
    font-size: 24px;
  }
  .runningline__item {
    font-size: 40px;
  }
  .features__item-text {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .link:hover {
    color: var(--primary);
  }
  .link-accent:hover::after {
    opacity: 1;
  }
  .button:hover {
    box-shadow: 0 0 16px 0 var(--shadow-color-accent);
  }
  .button[disabled]:hover {
    box-shadow: none;
  }
  .button--light:hover {
    background: var(--primary-48);
    box-shadow: none;
  }
  .button--red:hover {
    background: var(--red-33);
    box-shadow: none;
  }
  .lang-block__button:hover {
    border-color: var(--color-gray-5e);
  }
  .lang-block__link:hover {
    color: var(--primary);
  }
  .accordion-block__title:hover {
    color: var(--primary);
  }
  .accordion-block__title:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.99994 5.50012L7.99994 10.5001L12.9999 5.50012' stroke='%23f6b560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
  .form-exchange__warning-close:hover {
    color: var(--semantic-red);
  }
  .form-exchange__nav-btn:hover {
    color: var(--primary);
  }
  .form-exchange__row:hover {
    border-color: var(--color-gray-5e);
  }
  .form-exchange__rules a:hover {
    text-decoration: underline;
  }
  .filters-dropdown__header:hover {
    background-color: var(--color-gray-5e);
  }
  .filters-dropdown__close:hover {
    border-color: var(--main-text);
  }
  .filters-dropdown__item:hover {
    background-color: var(--color-gray-3e);
  }
  .filters-dropdown__item.ocf-selected:hover {
    background-color: var(--color-gray-29);
  }
  .input-field__input:hover {
    border-color: var(--color-gray-5e);
  }
  .file-block__file:hover {
    border-color: var(--color-gray-7f);
  }
  .breadcrumbs a.breadcrumbs__link:hover {
    color: var(--primary);
  }
  .more-options__title:hover::before {
    opacity: 1;
  }
  .copy-btn:hover {
    background: var(--primary-48);
  }
  .delete-btn:hover {
    background: var(--red-33);
  }
  .sel-dropdown__header:hover {
    border-color: var(--color-gray-5e);
  }
  .sel-dropdown__close:hover {
    border-color: var(--main-text);
  }
  .sel-dropdown__item:hover {
    background-color: var(--color-gray-3e);
  }
  .sel-dropdown__item.ocf-selected:hover {
    background-color: var(--color-gray-29);
  }
  .user-menu__link:hover {
    color: var(--color-gray-7f);
  }
  .user-menu__link.active:hover {
    color: var(--primary);
  }
  .header a.header__logo:hover {
    opacity: 0.7;
  }
  .userblock__nav-link:hover {
    color: var(--color-gray-7f);
  }
  .footer a.footer__value:hover {
    color: var(--primary);
  }
  .footer a.footer__review-item:hover {
    opacity: 0.5;
  }
  .text-section__nav-link:hover {
    border-color: var(--color-gray-7f);
    color: var(--color-gray-7f);
  }
  .text-section__nav-link.active:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  .popup__close:hover {
    border-color: var(--main-text);
  }
  .spollers__title:hover {
    color: var(--primary);
  }
  .review-card:hover {
    background-color: var(--color-gray-29);
  }
  .review-card:hover .review-card__arrow {
    color: var(--primary);
  }
  .checkbox__text:hover::before {
    border-color: var(--color-gray-7f);
  }
  .contacts a.contacts__value:hover {
    color: var(--primary);
  }
  .contacts a.contacts__reviews-item:hover {
    opacity: 0.5;
  }
}