@charset "UTF-8";
*:before,
*,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  min-height: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
.wrapper {
  position: relative;
  width: 100%;
  max-width: calc(var(--width-container) + var(--offsets, 40px) * 2);
  margin: var(--wrapper-margin) auto 0;
  padding: 0 var(--offsets, 40px);
}
.wrapper > img:not([class]) {
  margin-top: 24px;
}
.wrapper > img:not([class]):first-child {
  margin-top: 0;
}
.wrapper > .btn {
  min-width: 170px;
  max-width: 100%;
  margin-top: 24px;
}
.wrapper > .btn:first-child {
  margin-top: 0;
}
.wrapper > p:not([class]), .wrapper > h2:not([class]), .wrapper > h2.heading, .wrapper > h1:not([class]) {
  max-width: 1156px;
}
.wrapper.with-btn {
  display: grid;
  grid-template-columns: 1fr auto;
}
.wrapper.with-btn > .btn {
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .wrapper.with-btn > * {
    grid-column: 1/-1;
  }
  .wrapper.with-btn > h2 {
    grid-column: 1/2;
    align-self: center;
  }
  .wrapper.with-btn > .btn {
    grid-column: 2/-1;
    padding-block: 12px;
    align-self: center;
    margin-top: 0;
  }
}
@media (max-width: 767.9px) {
  .wrapper.with-btn {
    grid-template-columns: 1fr;
  }
  .wrapper.with-btn > .btn {
    order: 100;
  }
}
@media (max-width: 575.9px) {
  .wrapper > img:not([class]) {
    margin-top: 20px;
  }
  .wrapper > .btn {
    width: 100%;
    min-width: unset;
    margin-top: 20px;
  }
  .wrapper > .btn {
    width: 100%;
  }
}

.breadcrumbs + main > .wrapper:first-child {
  margin-top: 20px;
}
@media (max-width: 575.9px) {
  .breadcrumbs + main > .wrapper:first-child {
    margin-top: 10px;
  }
}

h3,
h4,
h5,
h6 {
  color: var(--On-Surface, #f4f8fd);
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  h3,
  h4,
  h5,
  h6 {
    font-size: 1.125rem;
  }
}

* + .wp-block-heading,
* + .wp-block-list,
p:not([class]) {
  margin-top: 24px;
}

@media (max-width: 575.9px) {
  * + .wp-block-heading,
  * + .wp-block-list,
  p:not([class]) {
    margin-top: 16px;
  }
}

a {
  color: var(--on-surface-variant);
}

p:not([class]) a:not([class]),
ul:not([class]) a:not([class]),
ol:not([class]) a:not([class]) {
  color: var(--Primary-link, #3290ff);
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
p:not([class]) a:not([class]):active,
ul:not([class]) a:not([class]):active,
ol:not([class]) a:not([class]):active {
  color: var(--Primary, #0075ff);
}
@media (any-hover: hover) {
  p:not([class]) a:not([class]):hover,
  ul:not([class]) a:not([class]):hover,
  ol:not([class]) a:not([class]):hover {
    color: var(--Primary, #0075ff);
  }
  p:not([class]) a:not([class]):focus,
  ul:not([class]) a:not([class]):focus,
  ol:not([class]) a:not([class]):focus {
    color: var(--Primary, #0075ff);
  }
}

h1 {
  color: var(--On-Surface, #f4f8fd);
  font-size: 2.625rem;
  line-height: 116%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  color: var(--On-Surface, #f4f8fd);
  font-size: 2rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  h2 {
    font-size: 1.375rem;
  }
}

.heading {
  position: relative;
  padding-left: 24px;
}
.heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 8px;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, #3c5cfa 0%, #141415 100%);
}

ul:not([class]),
ul.wp-block-list,
ol:not([class]),
ol.wp-block-list {
  margin-top: 24px;
}
ul:not([class]):first-child,
ul.wp-block-list:first-child,
ol:not([class]):first-child,
ol.wp-block-list:first-child {
  margin-top: 0;
}
ul:not([class]) li,
ul.wp-block-list li,
ol:not([class]) li,
ol.wp-block-list li {
  position: relative;
  margin-top: 16px;
}
ul:not([class]) li:first-child,
ul.wp-block-list li:first-child,
ol:not([class]) li:first-child,
ol.wp-block-list li:first-child {
  margin-top: 0;
}
ul:not([class]) li span,
ul.wp-block-list li span,
ol:not([class]) li span,
ol.wp-block-list li span {
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  ul:not([class]) li span,
  ul.wp-block-list li span,
  ol:not([class]) li span,
  ol.wp-block-list li span {
    font-size: 0.9375rem;
  }
}

ol:not([class]),
ol.wp-block-list {
  counter-reset: ol-default;
}
ol:not([class]) li,
ol.wp-block-list li {
  position: relative;
  counter-increment: ol-default;
  padding-left: 38px;
  min-height: 26px;
}
ol:not([class]) li::before,
ol.wp-block-list li::before {
  position: absolute;
  left: 2px;
  top: -2px;
  content: counter(ol-default);
  width: 28px;
  height: 22px;
  border-radius: 10px;
  background: var(--Tertiary, #ff006a);
  color: var(--On-Surface, #f4f8fd);
  text-align: center;
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  ol:not([class]) li::before,
  ol.wp-block-list li::before {
    font-size: 0.9375rem;
  }
}
@media (max-width: 575.9px) {
  ol:not([class]) li,
  ol.wp-block-list li {
    padding-left: 33px;
  }
  ol:not([class]) li::before,
  ol.wp-block-list li::before {
    width: 16px;
    width: 24px;
    height: 19px;
    border-radius: 8px;
  }
}

ul:not([class]) li,
ul.wp-block-list li {
  padding-left: 26px;
}
ul:not([class]) li::before,
ul.wp-block-list li::before {
  content: "";
  position: absolute;
  margin: 3px 6px;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff4190 0%, #ff4190 50%, var(--Tertiary, #ff006a) 50%, var(--Tertiary, #ff006a) 100%);
}

@font-face {
  font-family: "Epilogue";
  font-display: swap;
  src: url('fonts/Epilogue-Italic-VariableFont_wght.woff2') format("woff2"), url('fonts/Epilogue-Italic-VariableFont_wght.woff') format("woff");
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: "Epilogue";
  font-display: swap;
  src: url('fonts/Epilogue-VariableFont_wght.woff2') format("woff2"), url('fonts/Epilogue-VariableFont_wght.woff') format("woff");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url('fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format("woff2"), url('fonts/Inter-Italic-VariableFont_opsz,wght.woff') format("woff");
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url('fonts/Inter-VariableFont_opsz,wght.woff2') format("woff2"), url('fonts/Inter-VariableFont_opsz,wght.woff') format("woff");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "SegoeUI";
  font-display: swap;
  src: url('fonts/SegoeUI.woff') format("woff");
  font-weight: 400;
  font-style: normal;
}
.form {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.form > .btn {
  width: 100%;
}
.form__label {
  min-height: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.form__label + .form__label {
  margin-top: 6px;
}
.form__label {
  position: relative;
  display: flex;
}
.form__label-text {
  position: absolute;
  left: 14px;
  top: 16px;
  background: var(--surface-container-high, #282b24);
  color: var(--on-surface-variant, #c3c8bb);
  padding-inline: 2px;
  pointer-events: none;
  transition-property: transform, top, color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.form__label-error {
  position: relative;
  left: 8px;
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--error, #ffb4ab);
}
.form__label.has-value input,
.form__label.has-value textarea {
  border-color: var(--primary, #7ade50);
  box-shadow: 0 0 0 1px var(--primary, #7ade50);
}
.form__label.has-value .form__label-text {
  top: 0px;
  transform: translateY(-50%);
  color: var(--primary, #7ade50);
}
.form__label.has-error input,
.form__label.has-error textarea {
  border-color: var(--error, #ffb4ab) !important;
  box-shadow: 0 0 0 1px var(--error, #ffb4ab) !important;
}
.form__label.has-error .form__label-text {
  color: var(--error, #ffb4ab) !important;
}
.form__label.has-error .form__label-error {
  display: flex;
}
.form input,
.form textarea {
  font-size: 1.125rem;
  line-height: 136%;
  color: var(--on-surface-var, #c0c8d8);
}
.form input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 15px;
  background: transparent;
  border-radius: 4px;
  border: 1px solid var(--outline, #8d9287);
  box-shadow: 0 0 0 1px transparent;
  color: var(--on-surface, #e1e4d9);
  transition-property: border-color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .form input:hover {
    border-color: var(--on-surface, #e1e4d9);
  }
  .form input:hover + .form__label-text {
    color: var(--on-surface, #e1e4d9);
  }
}
.form input:focus {
  border-color: var(--primary, #7ade50);
  box-shadow: 0 0 0 1px var(--primary, #7ade50);
}
.form input:focus ~ .form__label-text,
.form input:focus .form__label-text {
  top: 0px;
  transform: translateY(-50%);
  color: var(--primary, #7ade50);
}
.form .form__response {
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
  text-align: center;
}

.no-scroll {
  overflow: hidden;
}

html {
  font: 400 var(--font-default)/1.5 var(--ff-epilogue), sans-serif;
}
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: 10px;
    scrollbar-color: var(--Primary, #0075ff) transparent;
  }
}
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--Primary, #0075ff);
}
html::-webkit-scrollbar-track {
  background: transparent;
}

body {
  background: var(--Surface, #141415);
  color: var(--on-surface-var, #d7dbe6);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  body {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1480px) {
  body:has(.sidebar-menu) {
    padding-left: 320px;
  }
  body:has(.sidebar-menu.closed) {
    padding-left: 64px;
  }
}
@media (max-width: 1479.9px) {
  body:has(.sidebar-menu) {
    padding-left: 64px;
  }
}
@media (max-width: 1239.9px) {
  body:has(.sidebar-menu) {
    padding-left: 0;
  }
}

.default-arrow {
  max-width: 32px;
  max-height: 32px;
  margin: 4px;
}
.default-arrow__bg {
  transition-property: fill, fill-opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.default-arrow__grad {
  transition-property: stroke-opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.default-arrow__arrow {
  transform-origin: center center;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}

main {
  flex-grow: 1;
}

table,
.wp-block-table {
  width: 100%;
  table-layout: auto;
  border-spacing: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

:root {
  --offsets: 40px;
  --width-container: 1776px;
  --wrapper-margin: 36px;
  --font-default: 16px;
  --ff-epilogue: "Epilogue", sans-serif;
  --ff-inter: "Inter", sans-serif;
  --ff-segoe: "SegoeUI", sans-serif;
  --star-color: #f9b626;
  --star-bg: #9aa1b1;
  --brkp-burger: 991.9px;
  /* COLORS */
  --Surface: #141415;
  --Surface-Dim: #000203;
  --On-Surface: #f4f8fd;
  --On-Surface-Dark: #9aa1b1;
  --On-Surface-Var: #d7dbe6;
  --Surf-Container-High: #383839;
  --Surf-Container: #1f1f1f;
  --Primary: #0075ff;
  --Primary-Link: #3290ff;
  --Secondary: #00b24b;
  --Tertiary: #ff006a;
  --Hover: rgba(255 255 255 / 0.04);
  --Click: rgba(255 255 255 / 0.08);
  --Disable: rgba(121 126 141 / 0.08);
  --On-Disable: rgba(255 255 255 / 0.3);
  --Error: #fd2b44;
  --Outline-Variant: rgba(229 234 248 / 0.07);
  --Label: rgba(255 255 255 / 0.26);
  --Blackout: rgba(22 21 21 / 0.8);
  --Hover-Dark: rgba(21 40 63 / 0.08);
  --Click-Dark: rgba(21 40 63 / 0.12);
  --Succes: #00b24b;
  --hover: rgba(255, 255, 255, 0.04);
  --click: rgba(255, 255, 255, 0.08);
  /* GRADIENTS */
  --outline-stop-1-color: #e5eaf8;
  --outline-stop-1-position: 0%;
  --outline-stop-2-color: #5e5f62;
  --outline-stop-2-position: 100%;
  --slots-stop-1-color: #222634;
  --slots-stop-1-position: 0%;
  --slots-stop-2-color: #10131b;
  --slots-stop-2-position: 100%;
  --silver-stop-1-color: #c2c2c7;
  --silver-stop-1-position: 0%;
  --silver-stop-2-color: #848487;
  --silver-stop-2-position: 17.2%;
  --silver-stop-3-color: #bbbbbd;
  --silver-stop-3-position: 33.1%;
  --silver-stop-4-color: #5e5e64;
  --silver-stop-4-position: 49.7%;
  --silver-stop-5-color: #dadade;
  --silver-stop-5-position: 68%;
  --silver-stop-6-color: #505052;
  --silver-stop-6-position: 85.2%;
  --silver-stop-7-color: #ccccd6;
  --silver-stop-7-position: 100%;
  --linear-gradient-stop-1-color: #004449;
  --linear-gradient-stop-1-position: 0%;
  --linear-gradient-stop-2-color: #043639;
  --linear-gradient-stop-2-position: 100%;
  --gold-stop-1-color: #d99e34;
  --gold-stop-1-position: 0%;
  --gold-stop-2-color: #e1a439;
  --gold-stop-2-position: 43.3%;
  --gold-stop-3-color: #b16917;
  --gold-stop-3-position: 100%;
  --linear-stop-1-color: #3c5cfa;
  --linear-stop-1-position: 0%;
  --linear-stop-2-color: #141415;
  --linear-stop-2-position: 100%;
  --main-gradient-stop-1-color: #000203;
  --main-gradient-stop-1-position: 0%;
  --main-gradient-stop-2-color: #292b2d;
  --main-gradient-stop-2-position: 100%;
  /* SHADOWS */
  --shadow-1: 0 3px 6px 0 rgba(6 8 20 / 0.25);
  --shadow-2: 0 0 24px 0 rgba(255 255 255 / 0.22);
  --shadow-3: 0 4px 12px 0 rgba(5 8 16 / 0.26);
}
@media (max-width: 991.9px) {
  :root {
    --offsets: 20px;
  }
}
@media (max-width: 575.9px) {
  :root {
    --offsets: 16px;
    --wrapper-margin: 28px;
  }
}

.header {
  --header-height: 88px;
  position: relative;
  padding-block: 12px;
}
@media (max-width: 1239.9px) {
  .header {
    border-bottom: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
  }
}
.header__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 0 var(--offsets, 40px);
  max-width: calc(var(--width-container) + var(--offsets, 40px) * 2);
  margin: 0 auto;
}
.header__logo {
  display: flex;
  margin-right: auto;
}
.header__logo:is(a) {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .header__logo:is(a):hover {
    opacity: 0.6;
  }
}
.header__logo:is(a):active {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .header__logo:is(a):focus {
    opacity: 0.6;
  }
}
.header__logo img,
.header__logo svg {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}
@media (max-width: 575.9px) {
  .header__logo img,
  .header__logo svg {
    max-width: 100px;
    max-height: 50px;
  }
}
.header__mob {
  background: var(--surf-container, #1f1f1f);
  z-index: 50;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  display: none;
  padding: var(--offsets, 40px);
  overflow-y: auto;
}
@supports not selector(::-webkit-scrollbar) {
  .header__mob {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
  }
}
.header__mob::-webkit-scrollbar {
  width: 4px;
}
.header__mob::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--primary-opacity-012, rgba(208, 188, 255, 0.12));
  border-radius: 9px;
  border: 4px solid transparent;
}
.header__mob::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 9px;
}
@media (min-width: 1240px) {
  .header__mob {
    display: contents;
  }
}
@media (max-width: 575.9px) {
  .header__mob {
    gap: 16px;
  }
}
.header__nav {
  z-index: 50;
  flex: 1 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.header__burger {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--disable, rgba(121, 126, 141, 0.08));
  margin: 4px;
  cursor: pointer;
  overflow: hidden;
}
.header__burger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.header__burger::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="11" viewBox="0 0 16 11" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M.917 1.833A.917.917 0 1 1 .917 0h14.166a.917.917 0 1 1 0 1.833zM0 5.5c0 .506.41.917.917.917h14.166a.917.917 0 1 0 0-1.834H.917A.917.917 0 0 0 0 5.5m0 4.583c0 .507.41.917.917.917h14.166a.917.917 0 1 0 0-1.833H.917a.917.917 0 0 0-.917.916" fill="%23F4F8FD"/></svg>');
  width: 16px;
  height: 11px;
  margin-top: -4px;
  display: block;
}
@media (min-width: 1240px) {
  .header__burger {
    display: none;
  }
}
@media (any-hover: hover) {
  .header__burger:hover::before {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.header__burger:active::before {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .header__burger:focus::before {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
.header .header-menu {
  padding: 8px;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: var(--surf-container, #1f1f1f);
}
.header .header-menu .submenu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
}
@supports not selector(::-webkit-scrollbar) {
  .header .header-menu .submenu {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
  }
}
.header .header-menu .submenu::-webkit-scrollbar {
  width: 4px;
}
.header .header-menu .submenu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--primary-opacity-012, rgba(208, 188, 255, 0.12));
  border-radius: 9px;
  border: 4px solid transparent;
}
.header .header-menu .submenu::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 9px;
}
.header .header-menu .item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.header .header-menu .item.parent {
  cursor: pointer;
}
.header .header-menu .item a,
.header .header-menu .item span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.header .header-menu > .item:not(:first-child) {
  margin-left: 12px;
}
.header .header-menu > .item:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
.header .header-menu > .item:nth-child(1) {
  z-index: 49;
}
.header .header-menu > .item:nth-child(2) {
  z-index: 48;
}
.header .header-menu > .item:nth-child(3) {
  z-index: 47;
}
.header .header-menu > .item:nth-child(4) {
  z-index: 46;
}
.header .header-menu > .item:nth-child(5) {
  z-index: 45;
}
.header .header-menu > .item:nth-child(6) {
  z-index: 44;
}
.header .header-menu > .item:nth-child(7) {
  z-index: 43;
}
.header .header-menu > .item:nth-child(8) {
  z-index: 42;
}
.header .header-menu > .item:nth-child(9) {
  z-index: 41;
}
.header .header-menu > .item:nth-child(10) {
  z-index: 40;
}
.header .header-menu > .item:nth-child(11) {
  z-index: 39;
}
.header .header-menu > .item:nth-child(12) {
  z-index: 38;
}
.header .header-menu > .item:nth-child(13) {
  z-index: 37;
}
.header .header-menu > .item:nth-child(14) {
  z-index: 36;
}
.header .header-menu > .item:nth-child(15) {
  z-index: 35;
}
.header .header-menu > .item:nth-child(16) {
  z-index: 34;
}
.header .header-menu > .item:nth-child(17) {
  z-index: 33;
}
.header .header-menu > .item:nth-child(18) {
  z-index: 32;
}
.header .header-menu > .item:nth-child(19) {
  z-index: 31;
}
.header .header-menu > .item:nth-child(20) {
  z-index: 30;
}
.header .header-menu > .item:nth-child(21) {
  z-index: 29;
}
.header .header-menu > .item:nth-child(22) {
  z-index: 28;
}
.header .header-menu > .item:nth-child(23) {
  z-index: 27;
}
.header .header-menu > .item:nth-child(24) {
  z-index: 26;
}
.header .header-menu > .item:nth-child(25) {
  z-index: 25;
}
.header .header-menu > .item:nth-child(26) {
  z-index: 24;
}
.header .header-menu > .item:nth-child(27) {
  z-index: 23;
}
.header .header-menu > .item:nth-child(28) {
  z-index: 22;
}
.header .header-menu > .item:nth-child(29) {
  z-index: 21;
}
.header .header-menu > .item:nth-child(30) {
  z-index: 20;
}
.header .header-menu > .item:nth-child(31) {
  z-index: 19;
}
.header .header-menu > .item:nth-child(32) {
  z-index: 18;
}
.header .header-menu > .item:nth-child(33) {
  z-index: 17;
}
.header .header-menu > .item:nth-child(34) {
  z-index: 16;
}
.header .header-menu > .item:nth-child(35) {
  z-index: 15;
}
.header .header-menu > .item:nth-child(36) {
  z-index: 14;
}
.header .header-menu > .item:nth-child(37) {
  z-index: 13;
}
.header .header-menu > .item:nth-child(38) {
  z-index: 12;
}
.header .header-menu > .item:nth-child(39) {
  z-index: 11;
}
.header .header-menu > .item:nth-child(40) {
  z-index: 10;
}
.header .header-menu > .item:nth-child(41) {
  z-index: 9;
}
.header .header-menu > .item:nth-child(42) {
  z-index: 8;
}
.header .header-menu > .item:nth-child(43) {
  z-index: 7;
}
.header .header-menu > .item:nth-child(44) {
  z-index: 6;
}
.header .header-menu > .item:nth-child(45) {
  z-index: 5;
}
.header .header-menu > .item:nth-child(46) {
  z-index: 4;
}
.header .header-menu > .item:nth-child(47) {
  z-index: 3;
}
.header .header-menu > .item:nth-child(48) {
  z-index: 2;
}
.header .header-menu > .item:nth-child(49) {
  z-index: 1;
}
.header .header-menu > .item:nth-child(50) {
  z-index: 0;
}
.header .header-menu .item.parent, .header .header-menu .item:not(.parent) > a, .header .header-menu .item:not(.parent) > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
}
@media (any-hover: hover) {
  .header .header-menu .item.parent:hover, .header .header-menu .item:not(.parent) > a:hover, .header .header-menu .item:not(.parent) > span:hover {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.header .header-menu .item.parent:active, .header .header-menu .item:not(.parent) > a:active, .header .header-menu .item:not(.parent) > span:active {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .header .header-menu .item.parent:focus, .header .header-menu .item:not(.parent) > a:focus, .header .header-menu .item:not(.parent) > span:focus {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
.header .header-menu .item.parent:active::before, .header .header-menu .item:not(.parent) > a:active::before, .header .header-menu .item:not(.parent) > span:active::before {
  opacity: 1;
}
.header .header-menu .item.parent:active > a::before, .header .header-menu .item.parent:active > span::before, .header .header-menu .item:not(.parent) > a:active > a::before, .header .header-menu .item:not(.parent) > a:active > span::before, .header .header-menu .item:not(.parent) > span:active > a::before, .header .header-menu .item:not(.parent) > span:active > span::before {
  opacity: 1;
}
@media (any-hover: hover) {
  .header .header-menu .item.parent:hover::before, .header .header-menu .item:not(.parent) > a:hover::before, .header .header-menu .item:not(.parent) > span:hover::before {
    opacity: 1;
  }
  .header .header-menu .item.parent:hover > a::before, .header .header-menu .item.parent:hover > span::before, .header .header-menu .item:not(.parent) > a:hover > a::before, .header .header-menu .item:not(.parent) > a:hover > span::before, .header .header-menu .item:not(.parent) > span:hover > a::before, .header .header-menu .item:not(.parent) > span:hover > span::before {
    opacity: 1;
  }
  .header .header-menu .item.parent:focus::before, .header .header-menu .item:not(.parent) > a:focus::before, .header .header-menu .item:not(.parent) > span:focus::before {
    opacity: 1;
  }
  .header .header-menu .item.parent:focus > a::before, .header .header-menu .item.parent:focus > span::before, .header .header-menu .item:not(.parent) > a:focus > a::before, .header .header-menu .item:not(.parent) > a:focus > span::before, .header .header-menu .item:not(.parent) > span:focus > a::before, .header .header-menu .item:not(.parent) > span:focus > span::before {
    opacity: 1;
  }
}
.header .header-menu .item a,
.header .header-menu .item span {
  flex: 1;
}
.header .header-menu .item a::before,
.header .header-menu .item span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.header .header-menu .item a::before,
.header .header-menu .item span::before {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.header .header-menu .item > a, .header .header-menu .item > span {
  color: var(--On-Surface, #f4f8fd);
  text-align: center;
}
.header .header-menu .item.current.parent, .header .header-menu .item.current:not(.parent) > a, .header .header-menu .item.current:not(.parent) > span {
  background: var(--hover, rgba(255, 255, 255, 0.04));
}
.header .header-menu .item.current.parent::before, .header .header-menu .item.current:not(.parent) > a::before, .header .header-menu .item.current:not(.parent) > span::before {
  opacity: 1;
}
.header .header-menu .item.current.parent > a::before, .header .header-menu .item.current.parent > span::before, .header .header-menu .item.current:not(.parent) > a > a::before, .header .header-menu .item.current:not(.parent) > a > span::before, .header .header-menu .item.current:not(.parent) > span > a::before, .header .header-menu .item.current:not(.parent) > span > span::before {
  opacity: 1;
}
@media (any-hover: hover) {
  .header .header-menu .item.parent:hover .arrow-down {
    transform: rotate(-180deg);
  }
}
.header .header-menu svg {
  min-width: 24px;
  min-height: 24px;
}
.header .header-menu .item.parent::before {
  content: "";
  width: 100%;
  height: 24px;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate(0, -4px);
  display: none;
}
.header .header-menu .item.parent .arrow-down {
  min-width: 40px;
  min-height: 40px;
}
@media (any-hover: hover) {
  .header .header-menu .item.parent:hover::before {
    display: block;
  }
  .header .header-menu .item.parent:hover > .submenu {
    display: flex;
  }
  .header .header-menu .item.parent:hover .arrow-down {
    transform: rotate(-180deg);
  }
}
.header .header-menu .submenu {
  width: 100%;
  max-width: 300px;
  display: none;
  padding: 8px;
  border-radius: 16px;
  background: var(--surf-container, #1f1f1f);
  box-shadow: 0 4px 12px 0 rgba(5, 8, 16, 0.26);
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
}
.header .header-menu .submenu:not(:has(.submenu)) {
  max-height: 300px;
  overflow-y: auto;
}
.header .header-menu .submenu .item {
  text-transform: none;
}
.header .header-menu .submenu .item .arrow-down {
  transform: rotate(-90deg);
}
.header .header-menu .submenu .item:not(:first-child) {
  margin-top: 12px;
}
.header .header-menu .submenu .item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--outline-variant, rgba(229, 234, 248, 0.07));
}
.header .header-menu .submenu .item.parent .default-arrow {
  transform: rotate(-90deg);
}
.header .header-menu .submenu .submenu {
  top: 0;
  left: calc(100% + 16px);
  max-height: unset;
  overflow-y: unset;
}
.header .header-menu .submenu .submenu::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 24px;
  height: 100%;
  background-color: transparent;
}
.header .header__mob + .header__btns {
  margin-left: -24px;
}
.header .header__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  align-self: flex-end;
}
@media (max-width: 1239.9px) {
  .header:not(.menu-active) .header__nav {
    display: none;
  }
}
.header.menu-active .header__burger::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none"><path d="M1.195.205a.7.7 0 1 0-.99.99L6.01 7 .205 12.805a.7.7 0 0 0 .99.99L7 7.99l5.805 5.805a.7.7 0 0 0 .99-.99L7.99 7l5.805-5.805a.7.7 0 0 0-.99-.99L7 6.01z" fill="%23F4F8FD"/></svg>');
  width: 14px;
  height: 14px;
  margin-top: 0;
}
@media (max-width: 1239.9px) {
  .header.menu-active .header__mob {
    display: flex;
  }
}
@media (max-width: 575.9px) {
  .header .header__wrap {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .header .header__mob + .header__btns {
    margin-left: 0;
  }
  .header .header__btns {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
  }
  .header .header__btns .btn {
    flex: 1 0 auto;
    min-width: calc((100% - 14px) / 2);
  }
}

.section-faq {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 24px;
}
.section-faq:first-child {
  margin-top: 0;
}
.section-faq__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
}
.section-faq__item p {
  width: fit-content;
  position: relative;
  padding: 16px;
  border-radius: 16px;
  background: var(--surf-container, #1f1f1f);
  margin-top: 0;
  margin-bottom: 30px;
}
.section-faq__item p::after {
  content: "";
  width: 20px;
  height: 10px;
  display: block;
  position: absolute;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10" fill="none"><path d="M0 10C5.973 5.918 7.022 2.109 6.933 0H20C16.8 6.204 5.333 9.252 0 10" fill="%231F1F1F"/></svg>');
  top: 100%;
  left: 15px;
}
.section-faq__item:first-child summary {
  padding-top: 0;
}
.section-faq__item[open] summary .default-arrow__arrow {
  transform: rotate(-180deg);
}
.section-faq summary {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .section-faq summary {
    font-size: 0.9375rem;
  }
}
.section-faq summary::marker {
  content: "";
}
.section-faq summary::-webkit-details-marker {
  display: none;
}
.section-faq summary svg {
  min-width: 32px;
}
@media (any-hover: hover) {
  .section-faq summary:hover .default-arrow__bg {
    fill-opacity: 0.04;
  }
  .section-faq summary:hover .default-arrow__grad {
    stroke-opacity: 0.27;
  }
}
.section-faq summary:active .default-arrow__bg {
  fill-opacity: 0.08;
}
@media (max-width: 575.9px) {
  .section-faq {
    margin-top: 20px;
  }
  .section-faq__item p {
    margin-bottom: 26px;
    margin-inline: 0;
  }
  .section-faq summary {
    padding: 16px 0;
  }
}

.footer {
  position: relative;
  margin-bottom: var(--wrapper-margin, 36px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__container {
  border-radius: 24px;
  padding: 32px 24px;
  background: var(--surf-container, #1f1f1f);
  display: grid;
  grid-template-columns: 461px 1fr;
  gap: 24px 67px;
}
.footer__wrap {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
}
.footer__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__row img,
.footer__row svg {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}
.footer__logo:is(a) {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .footer__logo:is(a):hover {
    opacity: 0.6;
  }
}
.footer__logo:is(a):active {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .footer__logo:is(a):focus {
    opacity: 0.6;
  }
}
.footer__copyright {
  color: var(--On-Surface-dark, #9aa1b1);
  font-size: 0.9375rem;
  line-height: 136%;
  font-weight: 400;
}
.footer__contacts {
  z-index: 1;
  position: relative;
  padding: 24px 16px;
  border-radius: 24px;
  border: 1px solid #e5eaf84a;
  background: var(--hover, rgba(255, 255, 255, 0.04));
  color: var(--On-Surface-dark, #9aa1b1);
  background-repeat: no-repeat;
  background-position: right -140px bottom -140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(var(--hover, rgba(255, 255, 255, 0.04)), var(--hover, rgba(255, 255, 255, 0.04))), linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
.footer__contacts-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__contacts-link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 16px;
}
.footer__contacts-link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.footer__contacts-link {
  background: var(--Primary, #0075ff);
  color: var(--On-Surface, #f4f8fd);
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .footer__contacts-link {
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .footer__contacts-link:hover {
    background: var(--Primary-link, #3290ff);
  }
}
.footer__contacts-link:active {
  background: var(--Primary-link, #3290ff);
}
@media (any-hover: hover) {
  .footer__contacts-link:focus {
    background: var(--Primary-link, #3290ff);
  }
}
.footer__nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__nav-list span {
  display: block;
  padding-left: 16px;
  color: var(--On-Surface-dark, #9aa1b1);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .footer__nav-list span {
    font-size: 0.9375rem;
  }
}
.footer__nav-list a {
  display: block;
  padding: 12px 16px;
  color: var(--On-Surface, #f4f8fd);
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.footer__nav-list a:active {
  color: var(--Primary-link, #3290ff);
}
@media (any-hover: hover) {
  .footer__nav-list a:hover {
    color: var(--Primary-link, #3290ff);
  }
  .footer__nav-list a:focus {
    color: var(--Primary-link, #3290ff);
  }
}
.footer__nav-title {
  color: var(--M3-white, #fff);
}
.footer__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
}
.footer__btns {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__btns .btn {
  flex: 1 0 auto;
}
@media (max-width: 1600px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1239.9px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  .footer__container > * {
    order: 10;
  }
  .footer__wrap {
    display: contents;
  }
  .footer__row {
    order: 1;
  }
  .footer__nav {
    order: 2;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
  }
  .footer__contacts {
    order: 3;
  }
  .footer__info {
    order: 5;
  }
  .footer__copyright {
    order: 100;
  }
}
@media (max-width: 575.9px) {
  .footer__container {
    padding: 24px 16px;
    gap: 20px;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 20px;
  }
  .footer__nav-list span {
    padding-left: 0;
  }
  .footer__nav-list a {
    padding: 8px 0;
  }
  .footer__contacts {
    padding: 16px;
  }
  .footer__contacts-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .footer__info {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    border-top: 0;
  }
  .footer__btns {
    gap: 16px;
  }
  .footer__row img,
  .footer__row svg {
    max-width: 100px;
    max-height: 40px;
  }
  .footer__copyright {
    font-size: 0.75rem;
    line-height: 110%;
    font-weight: 400;
  }
}

.sidebar-menu {
  width: 320px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  max-height: 100vh;
  overflow-y: auto;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@supports not selector(::-webkit-scrollbar) {
  .sidebar-menu {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
  }
}
.sidebar-menu::-webkit-scrollbar {
  width: 4px;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--primary-opacity-012, rgba(208, 188, 255, 0.12));
  border-radius: 9px;
  border: 4px solid transparent;
}
.sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 9px;
}
.sidebar-menu__wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  padding: 16px 24px 32px;
  border-right: 1px solid #e5eaf84a;
  background: var(--surf-container, #1f1f1f);
  box-shadow: 6px 0 20px 0 rgba(4, 6, 21, 0.25);
}
.sidebar-menu__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sidebar-menu__profile-arrow {
  margin-left: -8px;
}
.sidebar-menu__close {
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sidebar-menu__menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
}
.sidebar-menu__menu-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
}
.sidebar-menu__menu-link {
  position: relative;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 16px;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.sidebar-menu__menu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .sidebar-menu__menu-link:hover {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.sidebar-menu__menu-link:active {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .sidebar-menu__menu-link:focus {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
.sidebar-menu__menu-link:active::before {
  opacity: 1;
}
.sidebar-menu__menu-link:active > a::before, .sidebar-menu__menu-link:active > span::before {
  opacity: 1;
}
@media (any-hover: hover) {
  .sidebar-menu__menu-link:hover::before {
    opacity: 1;
  }
  .sidebar-menu__menu-link:hover > a::before, .sidebar-menu__menu-link:hover > span::before {
    opacity: 1;
  }
  .sidebar-menu__menu-link:focus::before {
    opacity: 1;
  }
  .sidebar-menu__menu-link:focus > a::before, .sidebar-menu__menu-link:focus > span::before {
    opacity: 1;
  }
}
.sidebar-menu__btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.sidebar-menu__btns .btn {
  width: 100%;
  padding: 16px;
}
@media (max-width: 1479.9px) {
  .sidebar-menu .sidebar-menu__close {
    display: none;
  }
}
@media (max-width: 1479.9px) and (min-width: 1240px) {
  .sidebar-menu {
    width: 64px;
  }
  .sidebar-menu .sidebar-menu__menu {
    gap: 12px;
    margin-inline: -4px;
  }
  .sidebar-menu .sidebar-menu__menu-block {
    gap: 12px;
    padding-bottom: 12px;
  }
  .sidebar-menu .sidebar-menu__menu-link {
    padding: 6px 8px;
    border-radius: 8px;
  }
  .sidebar-menu .sidebar-menu__menu-link::before {
    border-radius: 8px;
  }
  .sidebar-menu .sidebar-menu__top {
    gap: 24px;
    margin-inline: -4px;
    flex-direction: column-reverse;
  }
  .sidebar-menu .sidebar-menu__profile {
    padding: 8px;
    border-radius: 8px;
  }
  .sidebar-menu .sidebar-menu__wrap {
    gap: 24px;
    padding: 25px 16px;
  }
  .sidebar-menu .sidebar-menu__hide {
    display: none;
  }
  .sidebar-menu .sidebar-menu__btns {
    gap: 8px;
  }
  .sidebar-menu .sidebar-menu__btns .btn {
    padding: 7px;
    border-radius: 12px;
  }
  .sidebar-menu .sidebar-menu__btns .btn svg {
    width: 18px;
    height: 18px;
  }
  .sidebar-menu .sidebar-menu__close {
    transform: rotate(180deg);
  }
  .sidebar-menu .soc-links {
    gap: 8px;
  }
  .sidebar-menu .soc-links__link {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
}
@media (min-width: 1240px) {
  .sidebar-menu.closed {
    width: 64px;
  }
  .sidebar-menu.closed .sidebar-menu__menu {
    gap: 12px;
    margin-inline: -4px;
  }
  .sidebar-menu.closed .sidebar-menu__menu-block {
    gap: 12px;
    padding-bottom: 12px;
  }
  .sidebar-menu.closed .sidebar-menu__menu-link {
    padding: 6px 8px;
    border-radius: 8px;
  }
  .sidebar-menu.closed .sidebar-menu__menu-link::before {
    border-radius: 8px;
  }
  .sidebar-menu.closed .sidebar-menu__top {
    gap: 24px;
    margin-inline: -4px;
    flex-direction: column-reverse;
  }
  .sidebar-menu.closed .sidebar-menu__profile {
    padding: 8px;
    border-radius: 8px;
  }
  .sidebar-menu.closed .sidebar-menu__wrap {
    gap: 24px;
    padding: 25px 16px;
  }
  .sidebar-menu.closed .sidebar-menu__hide {
    display: none;
  }
  .sidebar-menu.closed .sidebar-menu__btns {
    gap: 8px;
  }
  .sidebar-menu.closed .sidebar-menu__btns .btn {
    padding: 7px;
    border-radius: 12px;
  }
  .sidebar-menu.closed .sidebar-menu__btns .btn svg {
    width: 18px;
    height: 18px;
  }
  .sidebar-menu.closed .sidebar-menu__close {
    transform: rotate(180deg);
  }
  .sidebar-menu.closed .soc-links {
    gap: 8px;
  }
  .sidebar-menu.closed .soc-links__link {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
}
@media (max-width: 1239.9px) {
  .sidebar-menu {
    position: relative;
    width: 100%;
    flex: 1;
  }
  .sidebar-menu .sidebar-menu__wrap {
    padding: 0;
    border-right: 0;
    height: 100%;
  }
  .sidebar-menu .sidebar-menu__btns {
    flex-direction: row;
  }
  .sidebar-menu .sidebar-menu__menu {
    margin-bottom: auto;
  }
}
@media (max-width: 991.9px) {
  .sidebar-menu .sidebar-menu__btns {
    flex-direction: column;
  }
}
@media (max-width: 575.9px) {
  .sidebar-menu .sidebar-menu__wrap, .sidebar-menu .sidebar-menu__menu, .sidebar-menu .sidebar-menu__menu-block {
    gap: 16px;
  }
  .sidebar-menu .sidebar-menu__menu-block {
    padding-bottom: 16px;
  }
  .sidebar-menu .sidebar-menu__menu-block:first-child {
    padding-top: 16px;
    border-top: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
  }
  .sidebar-menu .sidebar-menu__menu-link {
    padding: 12px 8px;
  }
  .sidebar-menu .sidebar-menu__profile {
    width: 100%;
  }
  .sidebar-menu .sidebar-menu__profile-arrow {
    margin-left: auto;
  }
  .sidebar-menu .soc-links {
    padding-inline: 16px;
  }
}

.admin-bar .sidebar-menu {
  margin-top: 32px;
}

.section-hero {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 460px;
}
.section-hero__main {
  align-self: stretch;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #e5eaf84a;
  background: var(--main-gradient, linear-gradient(99deg, #000203 0%, #292b2d 100%));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.section-hero__main img {
  border-radius: 10px;
}

.section-hero__main > *:not([class]) {
  margin-top: 0;
}
.section-hero__main-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.section-hero__main-row > .btn {
  width: 170px;
}
.section-hero__main-row .promo-block {
  width: 320px;
}
.section-hero__bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 20px;
}
@media (max-width: 1239.9px) {
  .section-hero {
    grid-template-columns: 1fr;
  }

  .section-hero__bonuses .bonus-card {
    flex: 1;
  }
}
@media (max-width: 991.9px) {
  .section-hero__bonuses {
    grid-template-columns: 1fr;
  }
  .section-hero__bonuses .bonus-card {
    flex: 1;
  }
}
@media (max-width: 575.9px) {
  .section-hero .bonus-card .bonus-card__wrap {
    gap: 8px;
  }
  .section-hero .bonus-card .bonus-card__link {
    margin-bottom: 16px;
  }
  .section-hero__main {
    gap: 16px;
    padding: 16px;
  }
  .section-hero__main-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .section-hero__main-row > .btn {
    width: 100%;
  }
  .section-hero__main-row .promo-block {
    width: 100%;
  }
}

.section-app {
  display: grid;
  grid-template-columns: 254px 1fr auto;
  grid-auto-flow: dense;
  gap: 32px;
  align-items: center;
}
.section-app__table {
  padding: 24px;
  border-radius: 24px;
  background: var(--hover, rgba(255, 255, 255, 0.04));
}
.section-app__table-tbody {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}
.section-app__table-tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.section-app__table-tr:not(:first-child) {
  padding-top: 12px;
  border-top: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
}
.section-app__table-th {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--On-Surface, #fff);
  font-size: 1.125rem;
  line-height: 120%;
  font-weight: 600;
  line-height: 1;
}
.section-app__table-td {
  color: var(--on-surface-var, #d7dbe6);
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  .section-app__table-td {
    font-size: 0.9375rem;
  }
}
.section-app__table img,
.section-app__table svg {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}
.section-app__btns {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.section-app__btns:first-child {
  margin-top: 0;
}
.section-app__btns .btn {
  flex: 1 0 auto;
}
.section-app__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.section-app__content > *:not([class]) {
  margin-top: 0;
}
.section-app__img {
  max-width: 519px;
}
@media (max-width: 1800px) {
  .section-app {
    grid-template-columns: 220px 1fr auto;
    gap: 24px;
  }
  .section-app__img {
    max-width: 380px;
  }
}
@media (max-width: 1239.9px) {
  .section-app {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
  .section-app .section-app__table {
    order: 2;
  }
  .section-app .section-app__content {
    order: 1;
    grid-column: 1/-1;
  }
  .section-app__img {
    order: 3;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991.9px) {
  .section-app {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.9px) {
  .section-app {
    gap: 16px;
  }
  .section-app__table {
    padding: 16px;
  }
  .section-app__table-tbody {
    grid-template-columns: 1fr 1fr;
  }
  .section-app__table-tr:not(:first-child) {
    padding-top: unset;
    border-top: unset;
  }
  .section-app__table-tr:nth-of-type(2n) {
    padding-left: 6px;
  }
  .section-app__table-tr:nth-of-type(2n + 1) {
    padding-right: 6px;
  }
  .section-app__table-tr:nth-of-type(n + 3) {
    padding-top: 12px;
    border-top: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
  }
  .section-app__table-th {
    font-size: 1rem;
    line-height: 136%;
    letter-spacing: 0;
    font-weight: 600;
  }
  .section-app__table-td {
    font-size: 0.75rem;
    line-height: 110%;
    font-weight: 400;
  }
  .section-app__table img,
  .section-app__table svg {
    max-width: 20px;
    max-height: 20px;
  }
  .section-app__btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .section-app__btns .btn {
    width: 100%;
  }
  .section-app__content {
    gap: 16px;
  }
}

.section-bonus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.section-bonus__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.section-bonus__content > *:not([class]) {
  margin-top: 0;
}
.section-bonus .bonus-card {
  min-height: 286px;
}
@media (max-width: 991.9px) {
  .section-bonus {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 575.9px) {
  .section-bonus {
    gap: 16px;
  }
  .section-bonus__content {
    gap: 16px;
  }
}

.section-hero-default {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.section-hero-default .section-hero-default__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.section-hero-default .section-hero-default__content > *:not([class]), .section-hero-default .section-hero-default__content > * {
  margin-top: 0;
}
.section-hero-default .section-hero-default__content > .btn {
  min-width: 170px;
  max-width: 100%;
}
.section-hero-default > img:not([class]) {
  margin-top: 0;
}
.section-hero-default > img {
  max-width: 519px;
}
@media (max-width: 991.9px) {
  .section-hero-default {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-hero-default > img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.9px) {
  .section-hero-default {
    gap: 16px;
  }
  .section-hero-default .section-hero-default__content {
    gap: 16px;
  }
  .section-hero-default .section-hero-default__content > .btn {
    min-width: unset;
    width: 100%;
  }
}

.btn {
  cursor: pointer;
  overflow: hidden;
  padding: 16px 24px;
  border-radius: 16px;
  transition-property: background, box-shadow, color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  background: transparent;
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .btn {
    font-size: 0.9375rem;
  }
}
.btn svg {
  min-width: 18px;
  min-height: 18px;
  max-width: 48px;
  max-height: 48px;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 2;
  pointer-events: none;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.btn--primary[disabled], .btn--primary.disabled, .btn--secondary[disabled], .btn--secondary.disabled, .btn--tertiary[disabled], .btn--tertiary.disabled, .btn--tonal[disabled], .btn--tonal.disabled {
  background: var(--disable, rgba(121, 126, 141, 0.08));
  color: var(--on-disable, rgba(255, 255, 255, 0.3));
}
.btn--primary[disabled]::after, .btn--primary.disabled::after, .btn--secondary[disabled]::after, .btn--secondary.disabled::after, .btn--tertiary[disabled]::after, .btn--tertiary.disabled::after, .btn--tonal[disabled]::after, .btn--tonal.disabled::after {
  background-color: transparent;
}
@media (any-hover: hover) {
  .btn--primary:hover, .btn--secondary:hover {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14);
  }
  .btn--primary:hover::after, .btn--secondary:hover::after {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.btn--primary:active, .btn--secondary:active {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14);
}
.btn--primary:active::after, .btn--secondary:active::after {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .btn--primary:focus, .btn--secondary:focus {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14);
  }
  .btn--primary:focus::after, .btn--secondary:focus::after {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
.btn--primary {
  background: var(--Primary, #0075ff);
  color: var(--On-Surface, #f4f8fd);
}
.btn--secondary {
  background: var(--Secondary, #00b24b);
  color: var(--On-Surface, #f4f8fd);
}
.btn--tertiary {
  background: var(--On-Surface, #f4f8fd);
  color: var(--Surface, #141415);
}
@media (any-hover: hover) {
  .btn--tertiary:hover {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14);
  }
  .btn--tertiary:hover::after {
    background: var(--hover-dark, rgba(21, 40, 63, 0.08));
  }
}
.btn--tertiary:active {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14);
}
.btn--tertiary:active::after {
  background: var(--click-dark, rgba(21, 40, 63, 0.12));
}
@media (any-hover: hover) {
  .btn--tertiary:focus {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14);
  }
  .btn--tertiary:focus::after {
    background: var(--click-dark, rgba(21, 40, 63, 0.12));
  }
}
.btn--small {
  padding: 10px 24px;
}
.btn--outlined {
  color: var(--On-Surface, #f4f8fd);
  border: 1px solid var(--On-Surface, #f4f8fd);
}
@media (any-hover: hover) {
  .btn--outlined:hover {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.btn--outlined:active {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .btn--outlined:focus {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
.btn--outlined[disabled], .btn--outlined.disabled {
  border: 1px solid var(--on-disable, rgba(255, 255, 255, 0.3));
  color: var(--on-disable, rgba(255, 255, 255, 0.3));
}
.btn--text {
  padding: 6px 10px;
  color: var(--On-Surface, #f4f8fd);
}
.btn--text:active {
  color: var(--Primary-link, #3290ff);
}
@media (any-hover: hover) {
  .btn--text:hover {
    color: var(--Primary-link, #3290ff);
  }
  .btn--text:focus {
    color: var(--Primary-link, #3290ff);
  }
}
.btn--text[disabled], .btn--text.disabled {
  color: var(--on-disable, rgba(255, 255, 255, 0.3));
}
.btn--tonal {
  color: var(--On-Surface, #f4f8fd);
  background: var(--surf-container-high, #383839);
}
@media (any-hover: hover) {
  .btn--tonal:hover::after {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.btn--tonal:active::after {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .btn--tonal:focus::after {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}

.breadcrumbs {
  padding-block: 4px;
  margin-top: 0;
}
.breadcrumbs__list {
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 8px;
}
.breadcrumbs li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.breadcrumbs li:not(:last-child) {
  padding-right: 38px;
}
.breadcrumbs li:not(:last-child)::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M9.02 6.47a.75.75 0 0 1 1.061 0l4.53 4.53-4.53 4.53a.75.75 0 1 1-1.06-1.06L12.49 11 9.02 7.53a.75.75 0 0 1 0-1.06" fill="%239AA1B1"/></svg>');
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
  width: 22px;
  height: 22px;
}
.breadcrumbs li:last-child a,
.breadcrumbs li:last-child span {
  color: var(--Primary-link, #3290ff);
}
.breadcrumbs a,
.breadcrumbs span {
  padding: 6px 10px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  color: var(--On-Surface, #fbffff);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .breadcrumbs a,
  .breadcrumbs span {
    font-size: 0.9375rem;
  }
}
.breadcrumbs a:active {
  color: var(--Primary-link, #3290ff);
}
@media (any-hover: hover) {
  .breadcrumbs a:hover {
    color: var(--Primary-link, #3290ff);
  }
  .breadcrumbs a:focus {
    color: var(--Primary-link, #3290ff);
  }
}

.go-up {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 141px;
  right: 40px;
  z-index: 20;
  border-radius: 12px;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(var(--surf-container, #1f1f1f), var(--surf-container, #1f1f1f)), linear-gradient(180deg, #2c84fb 0%, #222223 100%);
  cursor: pointer;
  overflow: hidden;
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.go-up:not(.active) {
  display: none;
}
.go-up svg {
  max-width: 32px;
  max-height: 32px;
}
.go-up::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .go-up:hover:after {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.go-up:active::after {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .go-up:focus::after {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
@media (max-width: 575.9px) {
  .go-up {
    right: 16px;
    bottom: 86px;
  }
}

.mob-btn {
  position: sticky;
  left: 0;
  bottom: 0px;
  z-index: 30;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 12px 0 rgba(5, 8, 16, 0.26);
}
.mob-btn::before {
  content: "";
  width: 48px;
  height: 3px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}
.mob-btn.active {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.mob-btn.active > .btn {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
}
.mob-btn.active .mob-btn__content {
  display: flex;
}
.mob-btn.active .mob-btn__close {
  display: flex;
}
.mob-btn__main {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.mob-btn__close {
  margin-left: auto;
  align-items: center;
  justify-content: center;
  display: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  cursor: pointer;
}
.mob-btn__close svg rect {
  transition-property: fill;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .mob-btn__close:hover svg rect {
    fill: #fff;
  }
}
@media (any-hover: none) and (pointer: coarse) {
  .mob-btn__close:active svg rect {
    fill: #fff;
  }
}
.mob-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.mob-btn__title {
  color: var(--On-Surface, #e9e9e9);
}
.mob-btn__descr {
  font-family: var(--ff-segoe);
}
.mob-btn__pulse {
  vertical-align: middle;
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.mob-btn__pulse::before, .mob-btn__pulse::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mob-btn__pulse::after {
  background: var(--On-Surface, #f4f8fd);
  width: 8px;
  height: 8px;
}
.mob-btn__pulse::before {
  background: var(--label, rgba(255, 255, 255, 0.26));
  width: 12px;
  height: 12px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.mob-btn > .btn {
  padding: 10px 16px;
  margin-left: auto;
  min-width: min-content;
}
.mob-btn__content {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  display: none;
}
.mob-btn__content-text {
  color: var(--On-Surface, #e9e9e9);
}
.mob-btn .promo-block__btn {
  padding: 12px 24px;
}
.mob-btn.mob-btn--v1 {
  padding: 8px 12px;
  background: linear-gradient(308deg, #4a87f9 3.86%, #007fff 94.92%);
}
.mob-btn.mob-btn--v1 .mob-btn__title {
  padding-left: 7px;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
  font-size: 0.9375rem;
  line-height: 136%;
  font-weight: 600;
}
.mob-btn.mob-btn--v1 .mob-btn__descr, .mob-btn.mob-btn--v1 .mob-btn__content-text {
  color: var(--On-Surface, #e9e9e9);
  font-size: 0.9375rem;
  line-height: 136%;
  font-weight: 400;
}
.mob-btn.mob-btn--v1 .mob-btn__content {
  margin-top: 16px;
  gap: 8px;
}
.mob-btn.mob-btn--v1 .mob-btn__text {
  gap: 2px;
}
.mob-btn.mob-btn--v1 .mob-btn__main {
  padding-left: 40px;
}
.mob-btn.mob-btn--v1 .mob-btn__main img {
  position: absolute;
  width: 86px;
  height: 80px;
  top: -15px;
  left: -34px;
}
.mob-btn.mob-btn--v1.active > .btn {
  margin-top: 8px;
}
.mob-btn.mob-btn--v2 {
  padding: 6px 8px;
  background: var(--surf-container, #1f1f1f);
}
.mob-btn.mob-btn--v2 .mob-btn__main {
  gap: 4px;
}
.mob-btn.mob-btn--v2 .mob-btn__title {
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 700;
}
.mob-btn.mob-btn--v2 .mob-btn__descr {
  color: var(--on-surface-var, #c4d1e4);
  font-size: 0.875rem;
}
.mob-btn.mob-btn--v2 .mob-btn__content {
  margin-top: 8px;
  gap: 12px;
}
.mob-btn.mob-btn--v2 .mob-btn__content-text {
  font-family: var(--ff-segoe);
  font-size: 0.875rem;
  line-height: 136%;
  font-weight: 400;
}
.mob-btn.mob-btn--v2.active > .btn {
  margin-top: 12px;
}
@media (min-width: 576px) {
  .mob-btn {
    display: none;
  }
}

.pros-cons {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 24px;
}
.pros-cons:first-child {
  margin-top: 0;
}
.pros-cons__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
}
.pros-cons__list li {
  position: relative;
  min-height: 40px;
  padding: 20px 16px 20px 46px;
  border-radius: 16px;
  border-top: 16px solid var(--succes, #00b24b);
  background: var(--surf-container, #1f1f1f);
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .pros-cons__list li {
    font-size: 0.9375rem;
  }
}
.pros-cons__list li::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.pros-cons__list li::before {
  height: calc(100% + 16px);
  top: -16px;
}
.pros-cons__list li::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M10 1a9 9 0 1 1 0 18 9 9 0 0 1 0-18m5.155 4.334a1.127 1.127 0 0 0-1.57.26l-3.997 5.578-2.48-2.92a1.126 1.126 0 0 0-1.715 1.456l3.413 4.02a1.126 1.126 0 0 0 1.772-.074l4.837-6.75a1.127 1.127 0 0 0-.26-1.57" fill="%23fff"/></svg>');
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 16px;
  top: 20px;
}
.pros-cons__list.pros-cons__list--cons li {
  border-color: var(--error, #fd2b44);
}
.pros-cons__list.pros-cons__list--cons li::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M10 1a9 9 0 1 1 0 18 9 9 0 0 1 0-18m4.197 4.809a1.04 1.04 0 0 0-1.468 0l-2.73 2.727-2.724-2.723a1.04 1.04 0 0 0-1.468 1.47l2.722 2.722-2.722 2.722a1.039 1.039 0 0 0 1.47 1.468l2.722-2.722 2.728 2.727a1.04 1.04 0 0 0 1.47-1.469l-2.728-2.726 2.728-2.728a1.04 1.04 0 0 0 0-1.468" fill="%23fff"/></svg>');
}
@media (max-width: 991.9px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.9px) {
  .pros-cons {
    gap: 20px;
    margin-top: 20px;
  }
  .pros-cons__list {
    gap: 12px;
  }
  .pros-cons__list li {
    padding: 8px 16px 8px 44px;
  }
  .pros-cons__list li::after {
    top: 8px;
  }
}

.scrolling .table td,
.scrolling .table th {
  pointer-events: none;
  user-select: none;
}

.table.js-scroll-list {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.table.js-scroll-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.table.js-scroll-list {
  margin-top: 24px;
}
.table.js-scroll-list:first-child {
  margin-top: 0;
}
@media (max-width: 575.9px) {
  .table.js-scroll-list {
    margin-top: 20px;
  }
}
.table.js-scroll-list table {
  table-layout: auto;
  min-width: 500px;
}
.table.js-scroll-list table thead {
  white-space: nowrap;
}

table:not([class]),
table.wp-block-table {
  table-layout: fixed;
  margin-top: 24px;
}
table:not([class]):first-child,
table.wp-block-table:first-child {
  margin-top: 0;
}
table:not([class]) th,
table:not([class]) td,
table.wp-block-table th,
table.wp-block-table td {
  padding: 16px;
  vertical-align: middle;
}
table:not([class]) th,
table.wp-block-table th {
  text-align: left;
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  table:not([class]) th,
  table.wp-block-table th {
    font-size: 0.9375rem;
  }
}
table:not([class]) th span,
table.wp-block-table th span {
  color: var(--On-Surface-dark, #9aa1b1);
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  table:not([class]) th span,
  table.wp-block-table th span {
    font-size: 0.9375rem;
  }
}
table:not([class]) td,
table.wp-block-table td {
  color: var(--on-surface-var, #d7dbe6);
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  table:not([class]) td,
  table.wp-block-table td {
    font-size: 0.9375rem;
  }
}
table:not([class]) tbody th,
table.wp-block-table tbody th {
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  table:not([class]) tbody th,
  table.wp-block-table tbody th {
    font-size: 0.9375rem;
  }
}
table:not([class]) tr td,
table:not([class]) tr th,
table.wp-block-table tr td,
table.wp-block-table tr th {
  border-bottom: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
}
table:not([class]) .align-center,
table.wp-block-table .align-center {
  text-align: center;
}
table:not([class]) img,
table:not([class]) svg,
table.wp-block-table img,
table.wp-block-table svg {
  max-width: 100px;
  max-height: 100px;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 575.9px) {
  table:not([class]),
  table.wp-block-table {
    margin-top: 20px;
  }
  table:not([class]) th,
  table:not([class]) td,
  table.wp-block-table th,
  table.wp-block-table td {
    padding: 12px;
  }
  table:not([class]) th:first-child,
  table:not([class]) td:first-child,
  table.wp-block-table th:first-child,
  table.wp-block-table td:first-child {
    padding-left: 0;
  }
  table:not([class]) th:last-child,
  table:not([class]) td:last-child,
  table.wp-block-table th:last-child,
  table.wp-block-table td:last-child {
    padding-right: 0;
  }
}

table.table--v2 tbody th,
.table.table--v2 tbody th {
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  table.table--v2 tbody th,
  .table.table--v2 tbody th {
    font-size: 0.9375rem;
  }
}

.wp-block-table td, .wp-block-table th {
  border: 0;
}

.toc-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 24px;
}
.toc-section:first-child {
  margin-top: 0;
}
@media (max-width: 575.9px) {
  .toc-section {
    margin-top: 20px;
  }
}
.toc-section.active .toc-section__title .default-arrow__arrow {
  transform: rotate(-180deg);
}
.toc-section.active .toc-section__nav {
  display: block;
}
.toc-section__title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--outline-variant, rgba(229, 234, 248, 0.07));
  color: var(--On-Surface, #f4f8fd);
  font-size: 2rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .toc-section__title {
    font-size: 1.375rem;
  }
}
@media (any-hover: hover) {
  .toc-section__title:hover .default-arrow__bg {
    fill-opacity: 0.04;
  }
  .toc-section__title:hover .default-arrow__grad {
    stroke-opacity: 0.27;
  }
}
.toc-section__title:active .default-arrow__bg {
  fill-opacity: 0.08;
}
@media (max-width: 575.9px) {
  .toc-section__title {
    padding-bottom: 20px;
  }
}
.toc-section__nav {
  padding-top: 24px;
  display: none;
}
@media (max-width: 575.9px) {
  .toc-section__nav {
    padding-top: 20px;
  }
}
.toc-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991.9px) {
  .toc-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.9px) {
  .toc-section__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.9px) {
  .toc-section__list {
    gap: 12px;
  }
}
.toc-section__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.toc-section__item a {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  color: var(--On-Surface-dark, #9aa1b1);
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  .toc-section__item a {
    font-size: 0.9375rem;
  }
}
.toc-section__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.toc-section__item a::before {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.toc-section__item a::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M9.02 6.47a.75.75 0 0 1 1.061 0l4.53 4.53-4.53 4.53a.75.75 0 1 1-1.06-1.06L12.49 11 9.02 7.53a.75.75 0 0 1 0-1.06" fill="%239AA1B1"/></svg>');
  width: 22px;
  height: 22px;
  display: block;
}
@media (any-hover: hover) {
  .toc-section__item a:hover {
    color: var(--On-Surface, #f4f8fd);
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
  .toc-section__item a:hover::before {
    opacity: 1;
  }
}
.toc-section__item a:active {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .toc-section__item a:focus {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}

.timer-banner {
  border-radius: 16px;
  padding: 7px 16px 7px 105px;
  max-width: 100%;
  min-width: 216px;
  width: 216px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-position: bottom left;
  background-size: cover;
}
.timer-banner__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.timer-banner__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 0.75rem;
  line-height: 110%;
  font-weight: 400;
  color: var(--On-Surface, #f4f8fd);
}
.timer-banner__text span {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}
.timer-banner__block {
  padding: 2px 6px;
  border-radius: 57.662px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
@media (max-width: 575.9px) {
  .timer-banner {
    width: 100%;
    align-items: flex-end;
    gap: 8px;
    padding: 10px 16px 10px 105px;
  }
  .timer-banner__text {
    font-size: 1rem;
    line-height: 136%;
  }
  .timer-banner__text span {
    font-size: 1.375rem;
    line-height: 120%;
    font-weight: 600;
  }
  .timer-banner__block {
    padding: 10px 12px;
  }
}

.timer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
  gap: 1px;
  font-family: var(--ff-inter);
  font-size: 0.75rem;
  line-height: 0.9375rem;
  font-weight: 700;
}
.timer__symbol {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.timer__number {
  position: relative;
  overflow: hidden;
  width: 8px;
  height: 15px;
}
@media (max-width: 575.9px) {
  .timer__number {
    height: 15px;
  }
}
.timer__number--symbol {
  width: auto;
}
.timer__number-list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  transition-property: top;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  width: 100%;
}
.timer__number-item {
  width: 100%;
  height: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.timer__number-item:not(.active) {
  user-select: none;
}
@media (max-width: 575.9px) {
  .timer__number-item {
    height: 15px;
  }
}

.promo-block {
  position: relative;
  padding: 6px 8px 6px 16px;
  border-radius: 16px;
  background: var(--linear-gradient, linear-gradient(180deg, #004449 0%, #043639 100%));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  transition-property: background, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.promo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.promo-block::after {
  content: "";
  position: absolute;
  z-index: 10;
  width: 0;
  box-shadow: 0 0 21px 14px rgba(244, 248, 253, 0.1725490196);
  height: 100%;
  left: 50%;
  top: 0;
  transform: skewX(-18deg);
  animation: shine 2s linear infinite;
}
@keyframes shine {
  0% {
    left: -16px;
  }
  30% {
    left: calc(100% + 16px);
  }
  100% {
    left: calc(100% + 16px);
  }
}
.promo-block > * {
  position: relative;
  z-index: 2;
}
.promo-block__text {
  color: var(--On-Surface, #f4f8fd);
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 120%;
  font-weight: 600;
}
.promo-block--outlined {
  padding: 4px 6px 4px 14px;
  border: 2px dashed var(--On-Surface, #f4f8fd);
  background: var(--hover, rgba(255, 255, 255, 0.04));
}
.promo-block--outlined::before {
  display: none;
}
.promo-block--outlined.copied {
  border-color: var(--gold, #d99e34);
}
.promo-block--light {
  background: var(--On-Surface, #f4f8fd);
}
.promo-block--light .promo-block__text {
  color: var(--Surface, #141415);
}
.promo-block--light .promo-block__btn {
  padding-block: 12px;
}

.bonus-card {
  position: relative;
  background: linear-gradient(308deg, #126859 3.86%, #345cfa 94.92%);
  border-radius: 24px;
  transition-property: box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.bonus-card__wrap {
  height: 100%;
  position: relative;
  padding: 20px 114px 20px 20px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.bonus-card__wrap > * {
  position: relative;
  z-index: 2;
}
.bonus-card__wrap > img {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 100%;
  max-width: 254px;
  transform: translateX(-200px);
}
.bonus-card__link, .bonus-card__title, .bonus-card__descr {
  max-width: 282px;
}
.bonus-card__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
  background: var(--label, rgba(255, 255, 255, 0.26));
  color: var(--On-Surface, #f4f8fd);
  font-size: 0.9375rem;
  line-height: 136%;
  font-weight: 400;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.bonus-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.bonus-card__link::before {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.bonus-card__link::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23" fill="none"><path d="M9.079 6.77a.75.75 0 0 1 1.06 0l4.53 4.53-4.53 4.53a.75.75 0 0 1-1.06-1.06l3.47-3.47-3.47-3.47a.75.75 0 0 1 0-1.06" fill="%239AA1B1"/></svg>');
  width: 0px;
  min-width: 0;
  overflow: hidden;
  height: 23px;
  margin-left: -4px;
  display: block;
  transition-property: width, height, min-width, margin-left;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.bonus-card__title {
  color: var(--On-Surface, #f4f8fd);
  font-size: 1.375rem;
  line-height: 120%;
  font-weight: 600;
}
.bonus-card__descr {
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  font-weight: 400;
}
@media (max-width: 575.9px) {
  .bonus-card__descr {
    font-size: 0.9375rem;
  }
}
.bonus-card__descr:first-child {
  margin-top: 0;
}
.bonus-card .btn {
  margin-top: auto;
  padding-block: 12px;
}
.bonus-card .btn:first-child {
  margin-top: 0;
}
.bonus-card--gift {
  position: relative;
  margin: 12px;
  border-radius: 20px;
}
.bonus-card--gift .bonus-card__wrap {
  padding: 32px 114px 32px 24px;
}
.bonus-card--gift::before {
  content: "";
  position: absolute;
  inset: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  border-radius: 24x;
  border: 1px solid #e5eaf84a;
  background: var(--surf-container, #1f1f1f);
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(var(--surf-container, #1f1f1f), var(--surf-container, #1f1f1f)), linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
.bonus-card--gift .bonus-card__title {
  font-size: 2rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .bonus-card--gift .bonus-card__title {
    font-size: 1.375rem;
  }
}
.bonus-card--gift .bonus-card__descr,
.bonus-card--gift .bonus-card__title,
.bonus-card--gift .bonus-card__link {
  max-width: 300px;
}
.bonus-card--gift .bonus-card__wrap > img {
  top: unset;
  left: unset;
  bottom: 0;
  right: 0;
  max-width: 132px;
  transform: unset;
}
.bonus-card--v2, .bonus-card--v3 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
}
.bonus-card--v3 .bonus-card__link {
  margin-bottom: 0;
}
.bonus-card--v3 .btn {
  padding-block: 16px;
  width: 240px;
  max-width: 100%;
}
@media (any-hover: hover) {
  .bonus-card:has(.bonus-card__link):hover {
    box-shadow: 0 0 24px 0 rgba(255, 255, 255, 0.22);
    transform: scale(1.01);
  }
  .bonus-card:has(.bonus-card__link):hover .bonus-card__link::after {
    min-width: 23px;
    width: 23px;
    margin-left: 0px;
  }
  .bonus-card:has(.bonus-card__link):hover .bonus-card__link::before {
    opacity: 1;
  }
}
@media (max-width: 575.9px) {
  .bonus-card__link, .bonus-card__title, .bonus-card__descr {
    max-width: 200px;
  }
  .bonus-card__link {
    margin-bottom: 8px;
    font-size: 0.75rem;
    line-height: 110%;
    font-weight: 400;
  }
  .bonus-card__link::after {
    display: none;
  }
  .bonus-card__title {
    font-size: 1.125rem;
    line-height: 120%;
    font-weight: 600;
  }
  .bonus-card__wrap {
    padding: 16px;
  }
  .bonus-card__wrap > img {
    max-width: 180px;
    transform: translateX(-123px);
  }
  .bonus-card--gift .bonus-card__wrap {
    padding: 24px 16px;
  }
  .bonus-card--gift .bonus-card__wrap > img {
    right: 8px;
    max-width: 88px;
  }
  .bonus-card--gift .bonus-card__descr,
  .bonus-card--gift .bonus-card__title,
  .bonus-card--gift .bonus-card__link {
    max-width: 100%;
  }
  .bonus-card--v2 .bonus-card__link, .bonus-card--v3 .bonus-card__link {
    margin-bottom: 16px;
  }
  .bonus-card--v2 .btn, .bonus-card--v3 .btn {
    width: 100%;
  }
  .bonus-card--v3 .bonus-card__title {
    font-size: 1.375rem;
    line-height: 120%;
    font-weight: 600;
  }
  .bonus-card--v3 .bonus-card__link {
    margin-bottom: 0;
  }
  .bonus-card--v3 .bonus-card__link, .bonus-card--v3 .bonus-card__title, .bonus-card--v3 .bonus-card__descr {
    max-width: 282px;
  }
}

.last-winners {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  --item-width: calc((100% - 20px * 5) / 6);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.last-winners::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.last-winners {
  margin-top: 24px;
}
.last-winners:first-child {
  margin-top: 0;
}
.last-winners__item {
  position: relative;
  width: var(--item-width, 220px);
  min-width: var(--item-width, 220px);
  padding: 8px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(var(--surf-container, #1f1f1f), var(--surf-container, #1f1f1f)), linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
.last-winners__item:first-child .last-winners__item-amount {
  background: var(--gold, linear-gradient(109deg, #d99e34 2.6%, #e1a439 41.06%, #b16917 91.49%));
}
.last-winners__item > img {
  width: 60px;
  max-width: 60px;
}
.last-winners__item:has(.last-winners__item-top) .last-winners__item-game {
  padding-right: 45px;
}
.last-winners__item-top {
  position: absolute;
  right: 16px;
  top: 0;
  padding: 6px 8px;
  border-radius: 0 0 8px 8px;
  background: var(--gold, linear-gradient(109deg, #d99e34 2.6%, #e1a439 41.06%, #b16917 91.49%));
  font-size: 0.75rem;
  line-height: 110%;
  font-weight: 400;
}
.last-winners__item-wrap {
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.last-winners__item-game {
  color: var(--On-Surface, #f4f8fd);
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 700;
}
.last-winners__item-user {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.last-winners__item-user span {
  color: var(--On-Surface-dark, #9aa1b1);
  font-size: 0.9375rem;
  line-height: 136%;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.last-winners__item-user img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  object-fit: cover;
  border-radius: 50%;
}
.last-winners__item-amount {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 4px 6px;
  border-radius: 16px;
  color: var(--On-Surface, #f4f8fd);
  width: fit-content;
  background: var(--Tertiary, #ff006a);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 700;
}
.last-winners__item-amount > * {
  position: relative;
  z-index: 2;
}
.last-winners__item-amount::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.last-winners__item-amount::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"><path d="M9.667 1a8 8 0 1 1 0 16 8 8 0 0 1 0-16m-.42 3.413v1.173q-.541.046-1.008.218-.636.227-1.013.669-.371.436-.372 1.066 0 .488.208.839.215.345.58.578a3.6 3.6 0 0 0 .844.384q.365.11.761.187v2.157q-.543-.055-.897-.251-.488-.28-.488-.806v-.144H6.751v.202q0 .488.215.865.22.376.61.636.396.255.923.39.355.085.748.114V14h.774v-1.307a5 5 0 0 0 .76-.11q.533-.13.936-.384.41-.254.636-.63.235-.376.235-.884 0-.5-.215-.845a1.7 1.7 0 0 0-.578-.578 3.4 3.4 0 0 0-.845-.371 9 9 0 0 0-.93-.229V6.587q.243.029.468.1.384.118.624.365.24.24.24.617v.098h1.106v-.13q0-.67-.39-1.125a2.4 2.4 0 0 0-1.02-.701 3.8 3.8 0 0 0-1.027-.227v-1.17zm.774 5.264q.61.133.968.3.507.227.507.766 0 .325-.24.54-.233.215-.644.319-.27.067-.591.09zm-.774-1.179q-.196-.045-.37-.095-.443-.136-.69-.343a.72.72 0 0 1-.24-.567.66.66 0 0 1 .26-.552 1.6 1.6 0 0 1 .656-.286q.19-.043.384-.066z" fill="%23F4F8FD"/></svg>');
  width: 19px;
  height: 18px;
  display: block;
}
@media (max-width: 1479.9px) {
  .last-winners__item {
    width: 220px;
    min-width: 220px;
  }
  .last-winners__item:has(.last-winners__item-top) .last-winners__item-game {
    padding-right: 42px;
  }
  .last-winners__item-top {
    right: 0;
    border-radius: 0 0 8px 8px;
  }
}
@media (max-width: 575.9px) {
  .last-winners {
    margin-top: 20px;
    gap: 16px;
  }
}

.scrolling .last-winners__item {
  user-select: none;
  pointer-events: none;
}

.content-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  margin-top: 24px;
}
.content-img:first-child {
  margin-top: 0;
}
.content-img > *:only-child {
  grid-column: 1/-1;
}
.content-img .btn:not(:first-child) {
  margin-top: 24px;
}
.content-img .promo-block .btn {
  margin-top: 0;
}
.content-img__content {
  grid-column: span 1;
}
.content-img img {
  width: 100%;
  grid-column: span 1;
  margin: 0;
}
.content-img img:not(:first-child) {
  margin: 0;
}
.content-img--reversed .content-img__content {
  order: 1;
}
.content-img--reversed img {
  order: -1;
}
@media (max-width: 991.9px) {
  .content-img {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .content-img > img {
    width: 100%;
  }
  .content-img .btn {
    width: 100%;
  }
  .content-img .btn:not(:first-child) {
    margin-top: 24px;
  }
}
@media (max-width: 575.9px) {
  .content-img {
    margin-top: 20px;
    gap: 20px;
  }
  .content-img .btn:not(:first-child) {
    margin-top: 20px;
  }
}

.banner-block {
  position: relative;
  padding: 32px 550px 32px 24px;
  min-height: 264px;
  border-radius: 24px;
  background: linear-gradient(92deg, #126859 1.24%, #b982ff 99.73%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.banner-block:first-child {
  margin-top: 0;
}
.banner-block--promo {
  background: linear-gradient(92deg, #00a1ff 1.24%, #5bc3ff 99.73%);
  overflow: hidden;
}
.banner-block--promo > img {
  width: 500px;
  object-fit: cover;
  top: 60%;
  transform: translateY(-50%);
}
.banner-block--app:first-child {
  margin-top: calc(24px + var(--wrapper-margin, 36px));
}
.banner-block > * {
  position: relative;
  z-index: 1;
}
.banner-block__title {
  max-width: 632px;
  color: var(--On-Surface, #f4f8fd);
  font-size: 2.625rem;
  line-height: 116%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .banner-block__title {
    font-size: 1.875rem;
  }
}
.banner-block__descr {
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .banner-block__descr {
    font-size: 0.9375rem;
  }
}
.banner-block__btns {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-block__btns .btn {
  flex: 1 0 auto;
}
.banner-block .promo-block {
  width: 320px;
  max-width: 100%;
}
.banner-block > img {
  max-width: 579px;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  max-height: calc(100% + 100px);
}
@media (max-width: 1479.9px) {
  .banner-block {
    padding-right: 450px;
  }
  .banner-block > img {
    max-width: 450px;
  }
}
@media (max-width: 991.9px) {
  .banner-block {
    padding-right: 24px;
    padding-bottom: 0;
  }
  .banner-block > img {
    max-width: 100%;
    position: relative;
    align-self: center;
    margin-top: -24px;
  }
  .banner-block--app:first-child {
    margin-top: 0;
  }
  .banner-block--promo > img {
    top: unset;
    transform: translateY(0);
    margin-block: -80px;
  }
  .banner-block__title {
    max-width: 100%;
  }
}
@media (max-width: 575.9px) {
  .banner-block {
    margin-top: 20px;
    padding: 24px 16px 0 16px;
    gap: 16px;
  }
  .banner-block__btns {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .banner-block__btns .btn {
    width: 100%;
    padding-block: 12px;
  }
  .banner-block .promo-block {
    width: 100%;
  }
  .banner-block > img {
    margin-top: -8px;
    max-width: 268px;
  }
  .banner-block--promo > img {
    aspect-ratio: 328/187;
    width: calc(100% + 32px);
    max-width: unset;
    margin-block: 0;
    margin-top: -22px;
    margin-bottom: -20px;
  }
}

.game-card {
  position: relative;
  padding: 12px;
  border-radius: 24px;
  background: var(--surf-container, #1f1f1f);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--On-Surface, #f4f8fd);
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .game-card {
    font-size: 0.9375rem;
  }
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.game-card:hover .game-card__btns {
  transform: translateX(0);
}
.game-card__wrap {
  position: relative;
  flex: 1;
  min-height: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}
.game-card__wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card__btns {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: translateX(-100%);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.game-card__btns .btn {
  min-width: 170px;
  max-width: 100%;
}
@media (max-width: 575.9px) {
  .game-card__wrap {
    min-height: 176px;
  }
  .game-card__btns {
    padding: 12px;
  }
  .game-card__btns .btn {
    width: 100%;
    min-width: 100%;
    padding: 16px 8px;
  }
}

.provider-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  --item-width: calc((100% - 20px * 5) / 6);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.provider-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.provider-list {
  margin-top: 24px;
}
.provider-list:first-child {
  margin-top: 0;
}
.provider-list__item {
  padding: 16px;
  min-height: 150px;
  min-width: 128px;
  width: var(--item-width, 128px);
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(var(--surf-container, #1f1f1f), var(--surf-container, #1f1f1f)), linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
@media (max-width: 575.9px) {
  .provider-list {
    margin-top: 20px;
    gap: 16px;
  }
  .provider-list__item {
    min-height: 100px;
    min-width: 128px;
    width: 128px;
  }
}

.how-to {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 24px;
}
.how-to:first-child {
  margin-top: 0;
}
.how-to__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.how-to__item-step {
  align-self: stretch;
  padding: 24px;
  width: 130px;
  background: var(--hover, rgba(255, 255, 255, 0.04));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--On-Surface, #f4f8fd);
  text-align: center;
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .how-to__item-step {
    font-size: 1.125rem;
  }
}
.how-to__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.how-to__item-content > *:not([class]) {
  margin-top: 0;
}
.how-to__item img {
  flex: 1;
  max-width: 46.0526315789%;
}
@media (max-width: 991.9px) {
  .how-to__item {
    flex-direction: column;
    align-items: stretch;
  }
  .how-to__item-step, .how-to__item-content {
    width: 100%;
  }
  .how-to__item img {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.9px) {
  .how-to {
    margin-top: 20px;
  }
  .how-to__item-step {
    padding: 20px 16px;
  }
}

.soc-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.soc-links__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .soc-links__link:hover {
    opacity: 0.6;
  }
}
.soc-links__link:active {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .soc-links__link:focus {
    opacity: 0.6;
  }
}

.more-block {
  position: relative;
  align-self: stretch;
  display: none;
}
.more-block::after {
  content: "";
  width: calc(100% + 20px);
  height: 24px;
  position: absolute;
  top: 100%;
  left: -10px;
  transform: translate(0, -4px);
  display: none;
}
.more-block__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  padding: 9px;
  cursor: pointer;
}
.more-block__btn::before, .more-block__btn::after {
  content: "";
}
.more-block__circle, .more-block__btn::before, .more-block__btn::after {
  border-radius: 50%;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--On-Surface, #f4f8fd);
}
.more-block .more-block__dropdown {
  max-width: 250px;
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 16px);
}
.more-block .more-block__dropdown > .submenu {
  display: flex;
  width: max-content;
  top: 0;
}
@media (any-hover: hover) {
  .more-block:hover::after {
    display: block;
  }
  .more-block:hover .more-block__dropdown {
    display: flex;
  }
}

.grid-block {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.grid-block:first-child {
  margin-top: 0;
}
.grid-block--d2 {
  grid-template-columns: 1fr 1fr;
}
.grid-block--d3 {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
.grid-block--d4 {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.grid-block.grid-block--g20 {
  gap: 20px;
}
@media (max-width: 767.9px) {
  .grid-block.grid-block--m2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-block.grid-block--d2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.9px) {
  .grid-block {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 16px;
  }
}

.rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
  --percent: calc((var(--rating, 4.5) / 5) * 100%);
  --star-gap: 4px;
}
.rating::before {
  content: "";
  font-size: 24px;
  line-height: 22px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 100;
}
.rating::before {
  content: "★★★★★";
  display: block;
  background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 575.9px) {
  .rating {
    --star-gap: 2px;
  }
}
@media (max-width: 575.9px) {
  .rating::before, .rating::after {
    font-size: 18px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0px;
  }
}
@supports (mask: url(#)) {
  .rating::before {
    content: "";
    width: calc(120px + var(--star-gap) * 4);
    height: 24px;
    color: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-mask: url('data:image/svg+xml,<svg width="137" height="24" viewBox="0 0 137 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.781 3.487a1.99 1.99 0 0 1 3.438 0l1.96 3.238c.278.46.715.79 1.22.923l3.567.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942a2.17 2.17 0 0 0-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0L8.33 22.346c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492L2.972 11.99c-.957-1.195-.387-3.02 1.062-3.402l3.566-.94a2.04 2.04 0 0 0 1.22-.923zm28 0a1.99 1.99 0 0 1 3.438 0l1.96 3.238c.278.46.715.79 1.22.923l3.567.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942a2.17 2.17 0 0 0-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923zm28 0a1.99 1.99 0 0 1 3.438 0l1.96 3.238c.278.46.715.79 1.22.923l3.567.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942a2.17 2.17 0 0 0-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923zm28 0a1.99 1.99 0 0 1 3.438 0l1.961 3.238c.277.46.714.79 1.22.923l3.566.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942c-.334.417-.5.951-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923z" fill="%23F9B626"/><path d="M122.781 3.487a1.99 1.99 0 0 1 3.438 0l1.961 3.238c.277.46.714.79 1.22.923l3.566.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942c-.334.417-.5.951-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.18 2.18 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923z" fill="%23f9b626"/></svg>');
    mask: url('data:image/svg+xml,<svg width="137" height="24" viewBox="0 0 137 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.781 3.487a1.99 1.99 0 0 1 3.438 0l1.96 3.238c.278.46.715.79 1.22.923l3.567.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942a2.17 2.17 0 0 0-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0L8.33 22.346c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492L2.972 11.99c-.957-1.195-.387-3.02 1.062-3.402l3.566-.94a2.04 2.04 0 0 0 1.22-.923zm28 0a1.99 1.99 0 0 1 3.438 0l1.96 3.238c.278.46.715.79 1.22.923l3.567.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942a2.17 2.17 0 0 0-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923zm28 0a1.99 1.99 0 0 1 3.438 0l1.96 3.238c.278.46.715.79 1.22.923l3.567.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942a2.17 2.17 0 0 0-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923zm28 0a1.99 1.99 0 0 1 3.438 0l1.961 3.238c.277.46.714.79 1.22.923l3.566.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942c-.334.417-.5.951-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.17 2.17 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923z" fill="%23F9B626"/><path d="M122.781 3.487a1.99 1.99 0 0 1 3.438 0l1.961 3.238c.277.46.714.79 1.22.923l3.566.94c1.449.381 2.019 2.206 1.062 3.401l-2.354 2.942c-.334.417-.5.951-.466 1.493l.243 3.819c.099 1.552-1.393 2.681-2.781 2.104l-3.416-1.422a1.96 1.96 0 0 0-1.508 0l-3.416 1.421c-1.388.578-2.88-.55-2.781-2.103l.243-3.82a2.18 2.18 0 0 0-.466-1.492l-2.354-2.942c-.957-1.195-.387-3.02 1.062-3.402l3.566-.939a2.04 2.04 0 0 0 1.22-.923z" fill="%23f9b626"/></svg>');
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
@media (max-width: 575.9px) {
  .rating::before {
    content: "";
    font-size: 18px;
    line-height: 16px;
    height: 18px;
  }
  @supports (mask: url(#)) {
    .rating::before {
      width: calc(90px + var(--star-gap) * 4);
      height: 18px;
      -webkit-mask: url('data:image/svg+xml,<svg width="98" height="18" viewBox="0 0 98 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.711 2.74a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12L1.854 9.117c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692z" fill="%23F9B626"/></svg>');
      mask: url('data:image/svg+xml,<svg width="98" height="18" viewBox="0 0 98 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.711 2.74a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12L1.854 9.117c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692zm20 0a1.493 1.493 0 0 1 2.579 0l1.47 2.429c.208.344.536.592.915.692l2.674.705c1.087.286 1.515 1.655.797 2.551l-1.765 2.206a1.63 1.63 0 0 0-.35 1.12l.182 2.864c.074 1.164-1.045 2.011-2.086 1.578l-2.561-1.066a1.47 1.47 0 0 0-1.132 0l-2.561 1.066c-1.041.433-2.16-.414-2.086-1.578l.182-2.864a1.63 1.63 0 0 0-.35-1.12l-1.765-2.206c-.718-.896-.29-2.265.797-2.552l2.674-.704c.38-.1.707-.348.915-.692z" fill="%23F9B626"/></svg>');
      -webkit-mask-size: contain;
      mask-size: contain;
    }
  }
}

.gallery {
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}

.gallery__list {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-around;
  overflow-x: auto;
}
.gallery__item {
  width: auto;
  max-width: 100%;
  height: unset;
  min-width: 320px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.9px) {
  .gallery__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 20px;
  }

  .gallery__item {
    min-width: 200px;
  }
}

.promocode-block {
  position: relative;
  max-width: 461px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  box-shadow: 0 8.014px 48.082px -14.024px rgba(66, 101, 255, 0.26) inset;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 24px;
}
.promocode-block:first-child {
  margin-top: 0;
}
.promocode-block__text {
  color: #fff;
  font-size: 1rem;
  line-height: 136%;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .promocode-block__text {
    font-size: 0.9375rem;
  }
}
.promocode-block__text span {
  color: var(--Primary-link, #3290ff);
}
.promocode-block__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.promocode-block__row .promo-block {
  flex: 1;
}
.promocode-block::before, .promocode-block::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.promocode-block::before {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
}
.promocode-block::after {
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  padding: 2px;
  background: linear-gradient(180deg, #0075ff 0%, rgba(0, 117, 255, 0) 100%);
}
@media (max-width: 575.9px) {
  .promocode-block {
    margin-top: 16px;
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }
  .promocode-block::after {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }
  .promocode-block__row {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 8px;
  }
  .promocode-block__row > * {
    width: 100%;
  }
}

.tabs {
  position: relative;
  padding: 16px 150px 16px 24px;
  border-radius: 24px;
  background: var(--surf-container, #1f1f1f);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
}
.tabs:first-child {
  margin-top: 0;
}
.tabs__list {
  flex: 1;
}
.tabs__item {
  width: auto;
  max-width: 100%;
  height: unset;
}
.tabs__link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px;
  color: var(--On-Surface-dark, #9aa1b1);
  border-radius: 16px;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.tabs__link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.tabs__link::before {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.tabs__link::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23" fill="none"><path d="M9.079 6.77a.75.75 0 0 1 1.06 0l4.53 4.53-4.53 4.53a.75.75 0 0 1-1.06-1.06l3.47-3.47-3.47-3.47a.75.75 0 0 1 0-1.06" fill="%239AA1B1"/></svg>');
  width: 0px;
  min-width: 0;
  overflow: hidden;
  height: 23px;
  margin-left: -4px;
  display: block;
  transition-property: width, min-width, margin-left;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.tabs__link img,
.tabs__link svg {
  max-width: 100px;
  max-height: 100px;
}
@media (any-hover: hover) {
  .tabs__link:hover {
    color: var(--On-Surface, #f4f8fd);
  }
  .tabs__link:hover::before {
    opacity: 1;
  }
  .tabs__link:hover::after {
    min-width: 23px;
    width: 23px;
    margin-left: 0px;
  }
}
@media (any-hover: none) and (pointer: coarse) {
  .tabs__link:active {
    color: var(--On-Surface, #f4f8fd);
  }
  .tabs__link:active::before {
    opacity: 1;
  }
  .tabs__link:active::after {
    min-width: 23px;
    width: 23px;
    margin-left: 0px;
  }
}
@media (any-hover: hover) {
  .tabs__link:hover {
    background: var(--hover, rgba(255, 255, 255, 0.04));
  }
}
.tabs__link:active {
  background: var(--click, rgba(255, 255, 255, 0.08));
}
@media (any-hover: hover) {
  .tabs__link:focus {
    background: var(--click, rgba(255, 255, 255, 0.08));
  }
}
.tabs__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  width: 125px;
  background: linear-gradient(269deg, #222223 79.38%, rgba(34, 34, 35, 0.6) 90.3%, rgba(34, 34, 35, 0.4) 95.3%, rgba(34, 34, 35, 0) 100%);
}
.tabs__btn {
  display: flex;
  flex-direction: row;
  width: 40px;
  min-width: 40px;
  height: 40px;
  cursor: pointer;
}
.tabs__btn--prev {
  transform: rotate(90deg);
}
.tabs__btn--next {
  transform: rotate(-90deg);
}
.tabs__btn.swiper-button-disabled {
  pointer-events: none;
}
.tabs__btn.swiper-button-disabled rect:first-child {
  fill: transparent;
}
.tabs__btn.swiper-button-disabled .default-arrow__bg {
  fill: rgb(121, 126, 141);
  fill-opacity: 0.08;
}
.tabs__btn.swiper-button-disabled .default-arrow__grad {
  stroke-opacity: 0;
}
@media (any-hover: hover) {
  .tabs__btn:hover .default-arrow__bg {
    fill-opacity: 0.04;
  }
  .tabs__btn:hover .default-arrow__grad {
    stroke-opacity: 0.27;
  }
}
.tabs__btn:active .default-arrow__bg {
  fill-opacity: 0.08;
}
@media (max-width: 575.9px) {
  .tabs {
    margin-top: 20px;
    padding: 12px 16px;
    width: calc(100% + var(--offsets, 40px) * 2);
    margin-left: calc(var(--offsets, 40px) * -1);
    border-radius: 0;
  }
  .tabs__btns {
    display: none;
  }
  .tabs__link {
    padding: 12px 8px;
  }
}


:root {
  --ff-primary: -apple-system,
  blinkmacsystemfont,
  "Segoe UI",
  roboto,
  oxygen,
  ubuntu,
  cantarell,
  "Open Sans",
  "Helvetica Neue",
  sans-serif;

  --size: 10px;
  --bg-color: #fff;
  --bs: rgba(144, 143, 143, 0.5) 0 0 5px;
  --clr-text: #fff;
  --clr-text-second: #fff;
  --bg-grad: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
  --bg-item: #313ea212;
}

* {
  box-sizing: border-box;
}

.TOA__button {
  border-radius: var(--size);
  border: none;
  color: var(--clr-text-second);
  padding: 12px 20px;
  line-height: 16px;
  font-size: 14px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: var(--bg-grad);
}


.TOA__button:hover {
  opacity: 0.7;
}


.TOA-block {
  margin-top: 1rem;
  font: normal 400 16px/24px var(--ff-primary);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.TOA-block:not(:has( > *)) {
  display: none;
}

.TOA-block__item {
  display: flex;
  flex-direction: column;
  gap: var(--size);
  padding: var(--size);
  color: var(--clr-text);
  border-radius: 24px;
  border: 1px solid #e5eaf84a;
  background: var(--main-gradient, linear-gradient(99deg, #000203 0%, #292b2d 100%));
  overflow: hidden;
}

.TOA-block__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 12px;
}

.TOA-block__item-date {
  margin-left: calc(0px - var(--size));
  padding: 5px 10px 3px 14px;
  border-radius: 0 var(--size) var(--size) 0;
  background: var(--bg-grad);
  color: #fff;
}

.TOA-block__item-league {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
}

.TOA-block__item-teams {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 36px;
  font-size: 14px;
  line-height: 16px;
}

.TOA-block__item-team {
  flex: 1 0 42%;
  display: inline-block;
}

.TOA-block__item-team.vs {
  min-width: 24px;
  flex-shrink: 0;
  flex-basis: 16%;
  text-align: center;
}

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

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

.TOA-block__item-coefficients {
  margin-top: auto;
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.TOA-block__item-coefficients:has(+.odds-table__button) {
  margin-bottom: 10px;
}

.TOA-block__item-coefficient {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--size);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  flex: 1 1;
  background: var(--Primary, #0075ff);
  color: var(--On-Surface, #f4f8fd);
}

.TOA-block__item-coefficient:hover,
.TOA-block__item-coefficient.active {
  background: var(--bg-grad);
  color: var(--clr-text-second);
}

.TOA-block__item-link {
  margin-top: 10px;

}

.TOA-block__item-tip {
  font-size: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.TOA-block__item-tip span {
  font-size: 14px;
  color: #fff;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-image: var(--bg-grad);
}
/* next matches */
/* modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 18, 17, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.modal.active {
  z-index: 9999;
  overflow: hidden;
  touch-action: none;
}
.modal:not(.active) {
  display: none;
}
.modal__content {
  position: relative;
  margin: auto var(--offsets, 20px);
  padding: 20px;
  border-radius: 20px;
  background: var(--card-bg, #1d1e21);
  width: 100%;
  max-width: 1320px;
  max-height: calc(100vh - var(--offsets, 20px));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto 1fr;
  gap: 12px 24px;
}
.modal__content > * {
  grid-column: 1/-1;
}
.modal__content .modal__title {
  grid-column: 1/2;
}
.modal__content .modal__close {
  grid-column: 3/4;
}
.modal__content .btn {
  grid-column: 2/3;
  min-width: 200px;
}
@media (max-width: 991.9px) {
  .modal__content {
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    gap: 12px;
  }
  .modal__content .modal__close {
    grid-column: 2/3;
  }
  .modal__content .btn {
    min-width: unset;
    width: 100%;
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
@media (max-width: 575.9px) {
  .modal__content {
    padding: 16px;
  }
}
.modal__body {
  grid-column: 1/-1;
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
@supports not selector(::-webkit-scrollbar) {
  .modal__body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
  }
}
.modal__body::-webkit-scrollbar {
  width: 4px;
}
.modal__body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--primary-opacity-012, rgba(208, 188, 255, 0.12));
  border-radius: 9px;
  border: 4px solid transparent;
}
.modal__body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 9px;
}
@media (max-width: 991.9px) {
  .modal__body {
    aspect-ratio: unset;
  }
}
.modal__body:before {
  content: "Loading...";
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  color: var(--on-surface-on-surface-light, #fff);
  animation: loading 1s linear infinite alternate;
  z-index: 1;
}
@keyframes loading {
  to {
    opacity: 0;
  }
}
.modal iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 2;
  display: block;
}
.modal__title {
  align-self: center;
  color: var(--text-main, #fff);
  margin-right: auto;
  font-weight: 600;
  font-size: 2.625rem;
  line-height: 116%;
  font-weight: 600;
}
@media (max-width: 575.9px) {
  .modal__title {
    font-size: 1.875rem;
  }
}
@media (max-width: 575.9px) {
  .modal__title {
    font-size: 2rem;
    line-height: 120%;
    font-weight: 600;
  }
}
@media (max-width: 575.9px) and (max-width: 575.9px) {
  .modal__title {
    font-size: 1.375rem;
  }
}
.modal__close {
  align-self: center;
  position: relative;
  background: transparent;
  border: 0;
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (any-hover: hover) {
  .modal__close:hover {
    opacity: 0.6;
  }
}
.modal__close:active {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .modal__close:focus {
    opacity: 0.6;
  }
}
.modal__close svg,
.modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 575.9px) {
  .modal__close {
    width: 24px;
    min-width: 24px;
    height: 24px;
  }
}
/* modal */
* + .table {
  margin-top: 1rem;
}

* + h2,
* + h3,
* + h4 {
  margin-top: 2rem;
}

* + .wp-block-table {
  margin-top: 1rem;
}

.wp-block-table {
  overflow: auto;
}

.wp-block-table table {
  overflow: hidden;
  border: none;
  border-collapse: collapse;
  border-radius: var(--R);
  width: 100%;
}

.wp-block-table table:has(tr td:nth-child(3)) {
  min-width: 600px;
}

.wp-block-table table:has(tr td:nth-child(4)) {
  min-width: 800px;
}

.wp-block-table table:has(tr td:nth-child(5)) {
  min-width: 800px;
}

.wp-block-table table:has(tr td:nth-child(6)) {
  min-width: 1000px;
}

.wp-block-table table:has(tr td:nth-child(7)) {
  min-width: 1200px;
}

.wp-block-table thead {
  border: none;
}
@media (max-width: 1239.9px) {
  .header__nav {
    display: block;
  }

  .header .header-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header .header-menu > .item::after {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 234, 248, 0.27) 0%, rgba(94, 95, 98, 0.27) 100%);
  }

  .header .header-menu > .item:not(:first-child) {
    margin-left: 0;
  }

  .header .header-menu > .item {
    width: 100%;
  }
}
