@charset "UTF-8";

@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-ExtraLight.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    font-display: swap;
    src: url("../fonts/Poppins-Thin.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
}

*: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));
    margin: var(--wrapper-margin) auto 0;
    padding: 20px;
    border-radius: var(--card-radius, 20px);
    background: var(--card-bg, #fff);
}
.wrapper > img {
    margin-block: 20px 16px;
}
.wrapper > img:first-child {
    margin-top: 0;
}
.wrapper > img:last-child {
    margin-bottom: 0;
}
.wrapper > .btn {
    margin-top: 16px;
}
.wrapper > .btn:first-child {
    margin-top: 0;
}
@media (max-width: 1420px) {
    .wrapper {
        margin-inline: var(--offsets, 20px);
        max-width: calc(100% - var(--offsets, 20px) * 2);
    }
}
@media (max-width: 767.9px) {
    .wrapper > .btn {
        width: 100%;
    }
}
@media (max-width: 575.9px) {
    .wrapper {
        padding: 16px;
    }
}

@media (min-width: 992px) {
    main:has(.sidebar) {
        display: grid;
        grid-template-columns: 1fr 290px;
        width: 100%;
        max-width: calc(var(--width-container) + var(--offsets, 20px) * 2);
        margin: var(--wrapper-margin) auto 0;
        padding-inline: var(--offsets, 20px);
        column-gap: 16px;
        margin-top: 0;
    }
    main:has(.sidebar) > *:not(.sidebar) {
        grid-column: 1/2;
        max-width: 100%;
        min-width: 0;
        margin-inline: 0;
    }
    .sidebar {
        align-self: flex-start;
        grid-column: 2/3;
        grid-row: 1/100;
        position: sticky;
        top: 0;
        right: 0;
        width: 302px;
        padding-inline: 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main, #2b2b2b);
    margin-bottom: 16px;
}

h3,
h4,
h5,
h6 {
    margin-top: 20px;
}
@media (max-width: 575.9px) {
    h3,
    h4,
    h5,
    h6 {
        margin-top: 16px;
    }
}

p:not([class]) a:not([class]),
ul:not([class]) a:not([class]),
ol:not([class]) a:not([class]) {
    color: var(--text-secondary, #6b6b6b);
    text-decoration: underline;
    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(--link-color-hover, #3b8ffe);
    text-decoration: none;
}
@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(--link-color-hover, #3b8ffe);
        text-decoration: none;
    }
    p:not([class]) a:not([class]):focus,
    ul:not([class]) a:not([class]):focus,
    ol:not([class]) a:not([class]):focus {
        color: var(--link-color-hover, #3b8ffe);
        text-decoration: none;
    }
}

p:not([class]) {
    margin-top: 16px;
}
p:not([class]):first-child {
    margin-top: 0;
}

h1 {
    font-size: 2rem;
    line-height: 120%;
    font-weight: 600;
}
@media (max-width: 575.9px) {
    h1 {
        font-size: 1.625rem;
        line-height: 130%;
    }
}

h2 {
    font-size: 1.625rem;
    line-height: 130%;
    font-weight: 600;
}
@media (max-width: 575.9px) {
    h2 {
        font-size: 1.375rem;
    }
}

h3 {
    font-size: 1.375rem;
    line-height: 130%;
    font-weight: 500;
}
@media (max-width: 575.9px) {
    h3 {
        font-size: 1.25rem;
        line-height: 140%;
    }
}

h4,
h5,
h6 {
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 500;
}
@media (max-width: 575.9px) {
    h4,
    h5,
    h6 {
        font-size: 1.125rem;
        line-height: 150%;
    }
}

ul:not([class]),
ul.wp-block-list,
ol:not([class]),
ol.wp-block-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}
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;
}

ol:not([class]),
ol.wp-block-list {
    counter-reset: ol-default;
}
ol:not([class]) li,
ol.wp-block-list li {
    counter-increment: ol-default;
    padding-left: 26px;
}
ol:not([class]) li::before,
ol.wp-block-list li::before {
    position: absolute;
    content: counter(ol-default) ". ";
    width: 18px;
    left: 0;
    text-align: center;
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 600;
    color: var(--accent-base, #3b8ffe);
}

ul:not([class]) li,
ul.wp-block-list li {
    padding-left: 19px;
}
ul:not([class]) li::before,
ul.wp-block-list li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
    background: url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="5.323" width="8" height="8" rx="2" transform="rotate(-45 0 5.323)" fill="%233B8FFE"/></svg>');
}

.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;
    position: relative;
    display: flex;
}
.form__label + .form__label {
    margin-top: 6px;
}
.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-poppins), sans-serif;
}
@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: 10px;
        scrollbar-color: var(--button-bg, #ff638f) transparent;
    }
}
html::-webkit-scrollbar {
    width: 10px;
}
html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--button-bg, #ff638f);
}
html::-webkit-scrollbar-track {
    background: transparent;
}

body {
    background: var(--site-bg, #f7f7f7);
    color: var(--text-secondary, #6b6b6b);
    overflow-x: hidden;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

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

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

:root {
    --ff-poppins: "Poppins", sans-serif;
    --offsets: 20px;
    --width-container: 1380px;
    --wrapper-margin: 16px;
    --font-default: 16px;
    --star-color: #fc0;
    --star-bg: transparent;
    --site-bg: #f7f7f7;
    --card-bg: #ffffff;
    --card-secondary-bg: #f9f9f9;
    --button-color: #ffffff;
    --button-hover-color: #ffffff;
    --button-bg: #ff638f;
    --button-hover-bg: #fd337d;
    --secondary-button-color: #ffffff;
    --secondary-button-hover-color: #ffffff;
    --secondary-button-bg: #4ca8ff;
    --secondary-button-hover-bg: #3b8ffe;
    --link-color-hover: #3b8ffe;
    --text-main: #2b2b2b;
    --text-secondary: #6b6b6b;
    --line-color: #e4ebed;
    --accent-base: #3b8ffe;
    --pros: #08d4ab;
    --cons: #ff3676;
    --hover-card: #cee7ff;
    --line-secondary-color: #e9e9e9;
    --accent-secondary: #eff8ff;
    /* BORDER RADIUS */
    --button-radius: 36px;
    --button-radius-rem: 2.25rem;
    --card-radius: 20px;
    --card-radius-rem: 1.25rem;
}
@media (max-width: 575.9px) {
    :root {
        --offsets: 16px;
    }
}

.header {
    --header-height: 72px;
    background: var(--card-bg, #fff);
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding-block: 12px;
    padding-inline: calc((100vw - var(--width-container)) / 2);
}
@media (max-width: 1420px) {
    .header {
        padding-inline: var(--offsets, 20px);
    }
}
@media (max-width: 575.9px) {
    .header {
        padding-block: 16px;
    }
}
.header__logo {
    display: flex;
}
.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: 50px;
    object-fit: contain;
}
@media (max-width: 1239.9px) {
    .header__logo {
        margin-right: auto;
    }
}
@media (max-width: 575.9px) {
    .header__logo img,
    .header__logo svg {
        max-height: 40px;
    }
}
.header__nav {
    z-index: 50;
    margin-inline: auto;
}
@media (max-width: 1239.9px) {
    .header__nav {
        overflow-y: auto;
        background: var(--card-bg, #fff);
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100%;
        height: calc(100svh - var(--header-height));
    }
    @supports not selector(::-webkit-scrollbar) {
        .header__nav {
            scrollbar-width: thin;
            scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
        }
    }
    .header__nav::-webkit-scrollbar {
        width: 4px;
    }
    .header__nav::-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__nav::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 9px;
    }
}
.header__burger {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 5px 2px;
    cursor: pointer;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
@media (any-hover: hover) {
    .header__burger:hover {
        opacity: 0.6;
    }
}
.header__burger:active {
    opacity: 0.6;
}
@media (any-hover: hover) {
    .header__burger:focus {
        opacity: 0.6;
    }
}
@media (min-width: 1240px) {
    .header__burger {
        display: none;
    }
}
.header__burger::before, .header__burger::after {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header__burger::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3 12h18M3 6h18M3 18h18" stroke="%232B2B2B" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.header__burger::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M18 6 6 18M6 6l12 12" stroke="%232B2B2B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    opacity: 0;
}
.header .header-menu {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 24px;
}
.header .header-menu .item {
    position: relative;
    display: flex;
    flex-direction: row;
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.header .header-menu .item a,
.header .header-menu .item span {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--text-main, #2b2b2b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 500;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.header .header-menu .item a:active {
    color: var(--accent-base, #3b8ffe);
}
@media (any-hover: hover) {
    .header .header-menu .item a:hover {
        color: var(--accent-base, #3b8ffe);
    }
    .header .header-menu .item a:focus {
        color: var(--accent-base, #3b8ffe);
    }
}
.header .header-menu .item svg {
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
@media (max-width: 1239.9px) {
    .header .header-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin-top: 16px;
        padding: 0 24px;
    }
    .header .header-menu .item {
        border-bottom: 1px solid var(--line-color, #e4ebed);
    }
    .header .header-menu .item a,
    .header .header-menu .item span {
        padding-block: 12px;
        width: 100%;
    }
    .header .header-menu .item:last-child {
        border-bottom: none;
    }
}
@media (max-width: 1239.9px) {
    .header:not(.menu-active) .header__nav {
        display: none;
    }
}
.header.menu-active {
    border-bottom: 1px solid var(--line-color, #e4ebed);
}
.header.menu-active .header__burger:before {
    opacity: 0;
}
.header.menu-active .header__burger::after {
    opacity: 1;
}

.section-faq__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 1;
    margin-top: 24px;
}
.section-faq__item {
    position: relative;
}
.section-faq__item:not(:first-child) {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--line-color, #e4ebed);
}
.section-faq__item[open] summary::after {
    transform: rotate(-180deg);
}
.section-faq__index {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 16px;
    background: var(--accent-secondary, #eff8ff);
    color: var(--accent-base, #3b8ffe);
    text-align: center;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 500;
}
.section-faq summary {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    color: var(--text-main, #2b2b2b);
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}
.section-faq summary::marker {
    content: "";
}
.section-faq summary::-webkit-details-marker {
    display: none;
}
.section-faq summary::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25" viewBox="0 0 24 25" fill="none"><path d="m6 9.667 6 6 6-6" stroke="%233B8FFE" stroke-width="2.4" stroke-linecap="round"/></svg>');
    width: 24px;
    height: 24px;
    margin-left: auto;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.footer {
    position: relative;
    padding-block: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px 48px;
    border-radius: 0;
    max-width: 100%;
    padding-inline: calc((100vw - var(--width-container)) / 2);
}
@media (max-width: 1420px) {
    .footer {
        margin-inline: 0;
        padding-inline: var(--offsets, 20px);
    }
}
.footer > * {
    grid-column: 1/-1;
}
.footer__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer__row img,
.footer__row svg {
    max-width: 200px;
    max-height: 50px;
    object-fit: contain;
}
.footer__logo {
    display: flex;
}
.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__logo img,
.footer__logo svg {
    max-width: 200px;
    max-height: 50px;
    object-fit: contain;
}
@media (max-width: 575.9px) {
    .footer__logo img,
    .footer__logo svg {
        max-height: 40px;
    }
}
.footer__nav {
    width: 100%;
    padding-block: 24px;
    border-top: 1px solid var(--line-color, #e4ebed);
    border-bottom: 1px solid var(--line-color, #e4ebed);
}
.footer__nav-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 64px;
}
@media (max-width: 991.9px) {
    .footer__nav-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.9px) {
    .footer__nav-list {
        grid-template-columns: 1fr;
    }
}
.footer__nav-list a {
    color: var(--text-main, #2b2b2b);
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.footer__nav-list a:active {
    color: var(--link-color-hover, #3b8ffe);
}
@media (any-hover: hover) {
    .footer__nav-list a:hover {
        color: var(--link-color-hover, #3b8ffe);
    }
    .footer__nav-list a:focus {
        color: var(--link-color-hover, #3b8ffe);
    }
}
.footer a.footer__logo {
    justify-self: flex-start;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
@media (any-hover: hover) {
    .footer a.footer__logo:hover {
        opacity: 0.6;
    }
}
.footer a.footer__logo:active {
    opacity: 0.6;
}
@media (any-hover: hover) {
    .footer a.footer__logo:focus {
        opacity: 0.6;
    }
}
.footer__logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--line-color, #e4ebed);
}
.footer__logos li {
    max-width: 100%;
}
.footer__logos img,
.footer__logos svg {
    width: auto;
    max-width: 100%;
    max-height: 48px;
}
.footer__soc {
    color: var(--text-main, #2b2b2b);
}
.footer__soc-list {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.footer__soc-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.footer__soc-link:active svg path {
    fill: var(--accent-base, #3b8ffe);
}
@media (any-hover: hover) {
    .footer__soc-link:hover svg path {
        fill: var(--accent-base, #3b8ffe);
    }
    .footer__soc-link:focus svg path {
        fill: var(--accent-base, #3b8ffe);
    }
}
.footer__soc-link svg path {
    fill: var(--text-main, #2b2b2b);
    transition-property: fill;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.footer__soc-link img,
.footer__soc-link svg {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}
.footer__copyright {
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
}
@media (min-width: 992px) {
    .footer__soc {
        grid-column: 1/2;
    }
    .footer__info {
        grid-column: 2/3;
    }
}
@media (max-width: 575.9px) {
    .footer {
        padding-block: 32px;
    }
    .footer__logos img,
    .footer__logos svg {
        max-height: 25px;
    }
}

.section-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    column-gap: 20px;
    color: var(--text-main, #2b2b2b);
}
.section-hero h1 {
    margin: 0;
}
.section-hero__rating {
    color: var(--text-main, #2b2b2b);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-main, #2b2b2b);
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    flex-direction: row-reverse;
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 500;
}
.section-hero__rating::before, .section-hero__rating::after {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0px;
}
.section-hero__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;
}
.section-hero__rating::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}
.section-hero__demo {
    position: relative;
    min-height: 534px;
    margin-top: 20px;
    border-radius: 16px;
    margin-bottom: 4px;
    overflow: hidden;
    padding: 20px;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.section-hero__demo::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.section-hero__btns {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
}
.section-hero__btns .btn {
    width: 100%;
}
@media (min-width: 576px) {
    .section-hero > * {
        grid-column: 1/-1;
    }
    .section-hero h1 {
        grid-column: 1/2;
    }
    .section-hero__rating {
        grid-column: 2/3;
    }
}
@media (max-width: 575.9px) {
    .section-hero {
        grid-template-columns: 1fr;
    }
    .section-hero__demo {
        min-height: 199px;
        margin-top: 16px;
    }
    .section-hero__rating {
        margin-right: auto;
        margin-top: 8px;
    }
}

.wrapper:has(.banner) {
    padding: 0;
}

.banner {
    padding: 24px;
    border-radius: var(--card-radius, 20px);
    background: linear-gradient(90deg, #6b64ff 0%, #b36cff 100%);
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
}
.banner__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}
.banner__content h2,
.banner__content p {
    margin: 0;
}
.banner img {
    margin: 0;
}
.banner h2 {
    color: #fff;
    margin: 0;
}
@media (max-width: 991.9px) {
    .banner {
        background: linear-gradient(180deg, #6b64ff 0%, #b36cff 100%);
        flex-direction: column;
    }
    .banner img {
        width: 100%;
    }
}
@media (max-width: 767.9px) {
    .banner {
        gap: 24px;
    }
    .banner__content .btn {
        width: 100%;
    }
}
@media (max-width: 575.9px) {
    .banner {
        padding: 16px;
    }
}

.sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
}
@media (max-width: 991.9px) and (min-width: 768px) {
    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        align-items: flex-start;
    }
    .sidebar .sidebar-info,
    .sidebar .last-winners {
        grid-row: 1/2;
    }
    .sidebar .last-winners {
        margin-top: 0;
    }
    .sidebar .sidebar-bonus {
        grid-column: 1/-1;
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    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: 12px;
    width: 100%;
    max-width: calc(var(--width-container));
    max-height: calc(100vh - var(--offsets, 20px));
    border-radius: var(--card-radius, 20px);
    background: var(--card-secondary-bg, #f9f9f9);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px 10px;
}
.modal__content .btn {
    min-width: 200px;
}
@media (max-width: 575.9px) {
    .modal__content {
        height: 100%;
        width: 100%;
        max-height: 100%;
        max-width: 100%;
        padding: 16px;
        margin: 0;
        border-radius: 0;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto 1fr auto;
    }
    .modal__content .btn {
        min-width: unset;
        width: 100%;
        grid-column: 1/-1;
        grid-row: 3/4;
    }
}
.modal__body {
    grid-column: 1/-1;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    max-width: 100%;
    max-height: 100%;
    width: 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: 575.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(--text-main, #2b2b2b);
    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 {
    color: var(--text-main, #2b2b2b);
    font-size: 1.625rem;
    line-height: 130%;
    font-weight: 600;
    margin-right: auto;
}
@media (max-width: 575.9px) {
    .modal__title {
        font-size: 1.25rem;
    }
}
.modal__close {
    background: transparent;
    border: 0;
    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::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M18 6 6 18M6 6l12 12" stroke="%232B2B2B" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 24px;
    height: 24px;
    display: block;
}

.btn {
    cursor: pointer;
    overflow: hidden;
    padding: 12px 48px;
    border-radius: var(--button-radius, 36px);
    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: max-content;
    max-width: 100%;
    background: var(--button-bg, #ff638f);
    color: var(--button-color, #fff);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
}
.btn svg {
    min-width: 18px;
    min-height: 18px;
    max-width: 24px;
    max-height: 48px;
}
.btn svg path {
    fill: currentColor;
}
.btn[disabled], .btn.disabled {
    pointer-events: none;
    opacity: 0.6;
}
.btn--primary {
    background: var(--button-bg, #ff638f);
    color: var(--button-color, #fff);
}
.btn--primary:active {
    background: var(--button-hover-bg, #fd337d);
}
@media (any-hover: hover) {
    .btn--primary:hover {
        background: var(--button-hover-bg, #fd337d);
    }
    .btn--primary:focus {
        background: var(--button-hover-bg, #fd337d);
    }
}
.btn--secondary {
    color: var(--secondary-button-color, #fff);
    background: var(--secondary-button-bg, #4ca8ff);
}
.btn--secondary:active {
    background: var(--secondary-button-hover-bg, #3b8ffe);
}
@media (any-hover: hover) {
    .btn--secondary:hover {
        background: var(--secondary-button-hover-bg, #3b8ffe);
    }
    .btn--secondary:focus {
        background: var(--secondary-button-hover-bg, #3b8ffe);
    }
}
.btn--tertiary {
    background: #fff;
    color: var(--secondary-button-bg, #4ca8ff);
}
.btn--tertiary:active {
    background: #f0f0f0;
}
@media (any-hover: hover) {
    .btn--tertiary:hover {
        background: #f0f0f0;
    }
    .btn--tertiary:focus {
        background: #f0f0f0;
    }
}
.btn--s {
    padding: 8px 16px;
}

.go-up {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 400;
    border-radius: 50%;
    background: var(--button-bg, #ff638f);
    cursor: pointer;
    overflow: hidden;
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.go-up:not(.active) {
    display: none;
}
.go-up svg {
    max-width: 40px;
    max-height: 40px;
}
@media (max-width: 575.9px) {
    .go-up {
        position: fixed;
        bottom: 100px;
        right: 24px;
    }
}
@media (any-hover: hover) {
    .go-up:hover {
        background: var(--button-hover-bg, #fd337d);
    }
}

.mob-btn {
    position: sticky;
    left: 0;
    bottom: 0px;
    z-index: 30;
    padding: 12px;
    background: var(--secondary-button-bg, #4ca8ff);
    display: flex;
    align-items: center;
    gap: 12px;
}
.mob-btn > img, .mob-btn > svg {
    max-width: 64px;
}
.mob-btn .btn {
    margin-left: -4px;
    padding: 8px 16px;
}
.mob-btn__text {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: var(--button-color, #fff);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 600;
}
.mob-btn__text span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-main, #2b2b2b);
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    flex-direction: row-reverse;
    color: #fff;
    font-size: 0.75rem;
    line-height: 150%;
    font-weight: 400;
}
.mob-btn__text span::before, .mob-btn__text span::after {
    font-size: 20px;
    line-height: 18px;
    height: 20px;
    letter-spacing: 0px;
}
.mob-btn__text span::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;
}
.mob-btn__text span::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}
@media (min-width: 576px) {
    .mob-btn {
        display: none;
    }
}

.pros-cons {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 20px;
}
.pros-cons:first-child {
    margin-top: 0;
}
.pros-cons__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
}
.pros-cons__item--pros .pros-cons__title {
    border-color: var(--pros, #08d4ab);
}
.pros-cons__item--pros .pros-cons__list li::before {
    content: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y=".667" width="16" height="16" rx="8" fill="%2308D4AB"/><path d="M11.473 5.917a.5.5 0 0 0-.353.16l-4.403 4.57-1.835-1.905a.5.5 0 0 0-.365-.162.5.5 0 0 0-.37.156.53.53 0 0 0-.147.373.53.53 0 0 0 .154.368l2.2 2.284a.505.505 0 0 0 .727 0l4.767-4.949a.53.53 0 0 0 .112-.574.5.5 0 0 0-.193-.237.5.5 0 0 0-.294-.084" fill="%23fff"/></svg>');
}
.pros-cons__item--cons .pros-cons__title {
    border-color: var(--cons, #ff3676);
}
.pros-cons__item--cons .pros-cons__list li::before {
    content: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y=".667" width="16" height="16" rx="8" fill="%23FF3676"/><path d="m10.5 6.167-5 5m0-5 5 5" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.pros-cons__title {
    color: var(--text-main, #2b2b2b);
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pros, #08d4ab);
}
.pros-cons__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}
.pros-cons__list li {
    position: relative;
    padding-left: 24px;
}
.pros-cons__list li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
@media (max-width: 991.9px) {
    .pros-cons {
        flex-direction: column;
    }
}
@media (max-width: 575.9px) {
    .pros-cons {
        margin-top: 16px;
    }
}

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

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

table:not([class]) {
    table-layout: fixed;
}
table:not([class]) thead tr td:first-child,
table:not([class]) thead tr th:first-child,
.wp-block-table table thead tr td:first-child,
.wp-block-table table thead tr th:first-child {
    border-radius: 8px 0 0 8px;
}
table:not([class]) thead tr td:last-child,
table:not([class]) thead tr th:last-child,
.wp-block-table table thead tr td:last-child,
.wp-block-table table thead tr th:last-child {
    border-radius: 0 8px 8px 0;
}
table:not([class]) thead tr th,
.wp-block-table table thead tr th {
    text-align: left;
    background: var(--accent-secondary, #eff8ff);
    color: var(--text-main, #2b2b2b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 600;
}
table:not([class]) tbody tr:nth-of-type(even) td:first-child,
table:not([class]) tbody tr:nth-of-type(even) th:first-child,
.wp-block-table table tbody tr:nth-of-type(even) td:first-child,
.wp-block-table table tbody tr:nth-of-type(even) th:first-child {
    border-radius: 8px 0 0 8px;
}
table:not([class]) tbody tr:nth-of-type(even) td:last-child,
table:not([class]) tbody tr:nth-of-type(even) th:last-child,
.wp-block-table table tbody tr:nth-of-type(even) td:last-child,
.wp-block-table table tbody tr:nth-of-type(even) th:last-child {
    border-radius: 0 8px 8px 0;
}
table:not([class]) tbody tr:nth-of-type(even) td,
.wp-block-table table tbody tr:nth-of-type(even) td {
    background: var(--card-secondary-bg, #f9f9f9);
}
table:not([class]) th,
table:not([class]) td,
.wp-block-table table th,
.wp-block-table table td {
    padding: 16px;
}
table:not([class]) td,
.wp-block-table table td {
    color: var(--text-secondary, #6b6b6b);
}
table:not([class]) td:first-child,
.wp-block-table table td:first-child {
    color: var(--text-main, #2b2b2b);
    font-weight: 500;
}
@media (max-width: 575.9px) {
    table:not([class]) td:last-child {
        text-align: right;
    }
}

.wrapper:has(.toc-section) {
    padding: 0;
}

.toc-section {
    position: relative;
    padding: 0;
    border-radius: var(--card-radius, 20px);
    background: var(--card-bg, #fff);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.toc-section.active .toc-section__title::after {
    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: 16px;
    cursor: pointer;
    padding: 16px 24px;
    margin: 0;
    min-height: 60px;
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 600;
    color: var(--text-main, #2b2b2b);
}
.toc-section__title::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="m6 9 6 6 6-6" stroke="%232B2B2B" stroke-width="2.4" stroke-linecap="round"/></svg>');
    width: 24px;
    height: 24px;
    display: block;
    transform-origin: center center;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
@media (max-width: 575.9px) {
    .toc-section__title {
        padding: 16px;
    }
}
.toc-section__nav {
    padding: 8px 24px 16px;
    display: none;
}
@media (max-width: 575.9px) {
    .toc-section__nav {
        padding: 8px 16px 16px;
    }
}
.toc-section__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 32px;
}
@media (max-width: 1239.9px) {
    .toc-section__list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@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: repeat(2, 1fr);
    }
}
@media (max-width: 575.9px) {
    .toc-section__list {
        grid-template-columns: 1fr;
    }
}
.toc-section__item {
    position: relative;
    display: flex;
    flex-direction: row;
}
.toc-section__item a {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-main, #2b2b2b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.toc-section__item a::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 100%;
    transform: scaleX(0);
    transform-origin: center left;
    background: currentColor;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.toc-section__item a:active {
    color: var(--link-color-hover, #3b8ffe);
}
.toc-section__item a:active::after {
    transform: scaleX(1);
}
@media (any-hover: hover) {
    .toc-section__item a:hover {
        color: var(--link-color-hover, #3b8ffe);
    }
    .toc-section__item a:hover::after {
        transform: scaleX(1);
    }
    .toc-section__item a:focus {
        color: var(--link-color-hover, #3b8ffe);
    }
    .toc-section__item a:focus::after {
        transform: scaleX(1);
    }
}

.lang {
    position: relative;
    z-index: 60;
    padding: 8px;
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-main, #2b2b2b);
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}
.lang svg,
.lang img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    object-fit: cover;
}
.lang img {
    border-radius: 50%;
}
.lang svg {
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.lang.active .lang__list {
    display: flex;
}
.lang.active > svg {
    transform: rotate(-180deg);
}
.lang__list {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    display: none;
    min-width: 108px;
    max-width: 200px;
    max-height: 300px;
    border-radius: 0 0 16px 16px;
    background: var(--card-bg, #fff);
    overflow: hidden;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02), 0 8px 10px 0 rgba(0, 0, 0, 0.04);
    overflow-y: auto;
}
@supports not selector(::-webkit-scrollbar) {
    .lang__list {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
    }
}
.lang__list::-webkit-scrollbar {
    width: 4px;
}
.lang__list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--primary-opacity-012, rgba(208, 188, 255, 0.12));
    border-radius: 9px;
    border: 4px solid transparent;
}
.lang__list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 9px;
}
.lang__item {
    border-top: 1px solid var(--line-color, #e4ebed);
}
.lang__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
    color: var(--text-main, #2b2b2b);
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
@media (any-hover: hover) {
    .lang__link:hover {
        color: var(--accent-base, #3b8ffe);
    }
}

.author-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-color, #e4ebed);
}
.author-row:first-child {
    margin-top: 0;
}
.author-row img {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    object-fit: cover;
}
.author-row__name {
    color: var(--text-main, #2b2b2b);
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 500;
}
@media (max-width: 575.9px) {
    .author-row__name {
        font-size: 1.125rem;
        line-height: 150%;
    }
}
.author-row__name:is(a) {
    cursor: pointer;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.author-row__name:is(a):active {
    color: var(--accent-base, #3b8ffe);
}
@media (any-hover: hover) {
    .author-row__name:is(a):hover {
        color: var(--accent-base, #3b8ffe);
    }
    .author-row__name:is(a):focus {
        color: var(--accent-base, #3b8ffe);
    }
}
.author-row__position {
    color: var(--text-secondary, #6b6b6b);
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 400;
}
@media (max-width: 575.9px) {
    .author-row__position {
        font-size: 1rem;
    }
}
.author-row__time {
    position: relative;
    display: inline-block;
    margin-left: auto;
    color: var(--text-main, #2b2b2b);
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
}
.author-row__time span {
    color: var(--text-secondary, #6b6b6b);
    display: inline-block;
    margin-right: 4px;
}
@media (max-width: 575.9px) {
    .author-row {
        padding-top: 0;
        margin-top: 16px;
        border-top: 0;
    }
    .author-row img {
        width: 29px;
        height: 29px;
        min-width: 29px;
    }
    .author-row__time {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid var(--line-color, #e4ebed);
    }
}

.scroll-list {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 20px;
}
.scroll-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
.scroll-list:first-child {
    margin-top: 0;
}
@media (max-width: 575.9px) {
    .scroll-list {
        margin-top: 16px;
    }
}

.slot-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 157px;
    width: 157px;
}
.slot-card__wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.slot-card__wrap:hover .slot-card__btns {
    transform: translateX(0);
}
.slot-card__wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot-card__btns {
    position: relative;
    height: 100%;
    min-height: 148px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    transform: translateX(-100%);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}
.slot-card__btns::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.slot-card__btns .btn {
    z-index: 1;
    width: 100%;
}
.slot-card__name {
    margin-top: 8px;
    color: var(--text-main, #2b2b2b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 600;
}
.slot-card__provider {
    margin-top: 2px;
    color: var(--text-secondary, #6b6b6b);
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
}

.grid-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.grid-block:first-child {
    margin-top: 0;
}
.grid-block.grid-block--5 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (max-width: 575.9px) {
    .grid-block {
        margin-top: 16px;
        grid-template-columns: 1fr;
    }
}

.bonus-card {
    position: relative;
    border-radius: 16px;
    background: var(--card-secondary-bg, #f9f9f9);
    padding: 0 16px 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.bonus-card img {
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    border-radius: 16px;
    height: 100px;
    object-fit: cover;
    object-position: center center;
}
.bonus-card__rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    flex-direction: row-reverse;
    border-radius: 16px;
    background: var(--card-bg, #fff);
    padding: 4px 8px;
    gap: 4px;
    color: var(--text-main, #2b2b2b);
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
    position: absolute;
    top: 8px;
    left: 8px;
}
.bonus-card__rating::before, .bonus-card__rating::after {
    font-size: 20px;
    line-height: 18px;
    height: 20px;
    letter-spacing: 0px;
}
.bonus-card__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;
}
.bonus-card__rating::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "☆";
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}
.bonus-card__provider, .bonus-card__bonus {
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 400;
    text-align: center;
}
.bonus-card__provider {
    color: var(--text-secondary, #6b6b6b);
}
.bonus-card__bonus {
    margin-top: -10px;
    font-weight: 500;
    color: var(--text-main, #2b2b2b);
}
.bonus-card .btn {
    margin-top: auto;
    width: 100%;
}

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

.listing {
    margin-top: 20px;
}
.listing:first-child {
    margin-top: 0;
}
.listing__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
}
.listing__row {
    width: 100%;
}
.listing__row:first-child .listing__item {
    border: 1px solid var(--accent-base, #3b8ffe);
}
.listing__item {
    padding: 16px;
    border-radius: 16px;
    background: var(--card-secondary-bg, #f9f9f9);
    display: grid;
    grid-template-columns: auto minmax(min-content, 1.073fr) 1.5fr 1.5fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 16px 24px;
}
.listing__name {
    margin-top: -16px;
    margin-left: -16px;
    padding: 8px 16px;
    width: calc(100% + 32px);
    color: var(--text-main, #2b2b2b);
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 500;
    border-bottom: 1px solid var(--line-secondary-color, #e9e9e9);
    grid-column: 1/-1;
}
.listing__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.listing__info img,
.listing__info svg {
    border-radius: 16px;
    width: 185px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}
.listing__rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-main, #2b2b2b);
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    flex-direction: row-reverse;
    font-weight: 500;
}
.listing__rating::before, .listing__rating::after {
    font-size: 22px;
    line-height: 20px;
    height: 22px;
    letter-spacing: 0px;
}
.listing__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;
}
.listing__rating::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}
.listing__advantages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}
.listing__advantages-item {
    position: relative;
    padding-left: 22px;
    color: var(--text-main, #2b2b2b);
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
}
.listing__advantages-item::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M13.557 3.6a.8.8 0 0 0-.565.256L5.949 11.17 3.01 8.121a.82.82 0 0 0-.584-.26.8.8 0 0 0-.591.25.84.84 0 0 0-.236.596.86.86 0 0 0 .246.59l3.52 3.653a.81.81 0 0 0 1.164 0l7.628-7.917a.86.86 0 0 0 .18-.918.83.83 0 0 0-.31-.38.8.8 0 0 0-.47-.135" fill="%233B8FFE"/></svg>');
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
}
.listing__bonus {
    padding: 16px;
    border-radius: 16px;
    background: var(--card-bg, #fff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-base, #3b8ffe);
    text-align: center;
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 600;
}
.listing__bonus span {
    position: relative;
    color: var(--text-main, #2b2b2b);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
}
.listing__bonus span::before {
    content: url('data:image/svg+xml,<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)" fill="%232B2B2B"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 0a3.333 3.333 0 0 0-3.333 3.333v.382c0 .597.177 1.153.482 1.618H2.5a2 2 0 0 0-2 2v1.334a2 2 0 0 0 2 2h7.333V5.333h1.334v5.334H18.5a2 2 0 0 0 2-2V7.333a2 2 0 0 0-2-2h-1.15a2.94 2.94 0 0 0 .483-1.618v-.382A3.333 3.333 0 0 0 14.5 0a4.67 4.67 0 0 0-4 2.261A4.67 4.67 0 0 0 6.5 0m4.667 5.333h3.714A1.62 1.62 0 0 0 16.5 3.715v-.382a2 2 0 0 0-2-2 3.333 3.333 0 0 0-3.333 3.334zm-1.334 0H6.12A1.62 1.62 0 0 1 4.5 3.715v-.382a2 2 0 0 1 2-2 3.333 3.333 0 0 1 3.333 3.334z"/><path d="M9.834 12h-8v4.667A3.333 3.333 0 0 0 5.167 20h4.667zm1.333 8h4.667a3.333 3.333 0 0 0 3.333-3.333V12h-8z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M.5 0h20v20H.5z"/></clipPath></defs></svg>');
    width: 20px;
    height: 20px;
    display: block;
}
.listing__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.listing__btns .btn {
    width: 100%;
}
.listing__payments {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.listing__payments-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.listing__payments-item img,
.listing__payments-item svg {
    max-width: 49px;
    max-height: 29px;
}
@media (min-width: 992px) {
    .listing__btns {
        grid-column: 4/5;
    }
}
@media (max-width: 991.9px) {
    .listing__item {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767.9px) {
    .listing__item {
        grid-template-columns: 1fr;
    }
    .listing__info {
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line-secondary-color, #e9e9e9);
    }
}
@media (max-width: 575.9px) {
    .listing {
        margin-top: 16px;
    }
    .listing__info img,
    .listing__info svg {
        width: 100%;
    }
}

.gallery {
    margin-top: 20px;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gallery:first-child {
    margin-top: 0;
}
.gallery::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
@media (max-width: 575.9px) {
    .gallery {
        margin-top: 16px;
    }
}
.gallery img,
.gallery video {
    user-select: none;
    pointer-events: none;
    max-height: 500px;
    object-fit: contain;
}
.gallery__item {
    max-width: 100%;
}
.gallery__item--video .gallery__item-link::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50" fill="none"><path d="M25 0C11.188 0 0 11.188 0 25c0 13.813 11.188 25 25 25 13.813 0 25-11.187 25-25C50 11.188 38.813 0 25 0m-5 36.25v-22.5L35 25z" fill="%23fff"/></svg>');
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallery__item--video .gallery__item-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 18, 27, 0.8);
}
.gallery__item-link {
    position: relative;
    display: flex;
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
}
@media (max-width: 575.9px) {
    .gallery__item {
        max-width: 77%;
    }
    .gallery__item--video .gallery__item-link::after {
        transform-origin: center;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.how-to {
    margin-top: 20px;
    counter-reset: how-to;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
}
.how-to:first-child {
    margin-top: 0;
}
.how-to__item {
    position: relative;
    counter-increment: how-to;
    padding: 16px 16px 16px 24px;
    border-radius: 16px;
    background: var(--card-secondary-bg, #f9f9f9);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
}
.how-to__item::before {
    content: "Step " counter(how-to);
    position: absolute;
    top: -6px;
    left: -6px;
    padding: 2px 8px;
    border-radius: 36px;
    background: var(--accent-base, #3b8ffe);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
}
.how-to__item-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}
.how-to__item-title {
    margin: 0;
    color: var(--text-main, #2b2b2b);
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 500;
}
.how-to__item-descr {
    color: var(--text-secondary, #6b6b6b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
}
.how-to__item img {
    width: 100%;
    border-radius: 8px;
}
.how-to__item .btn {
    margin-top: 8px;
}
@media (max-width: 991.9px) {
    .how-to__item {
        padding: 16px;
        grid-template-columns: 1fr;
        padding-top: 32px;
    }
}
@media (max-width: 767.9px) {
    .how-to__item .btn {
        width: 100%;
    }
}
@media (max-width: 575.9px) {
    .how-to {
        margin-top: 16px;
    }
}

.symbol-cards {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 32px 48px;
    overflow: hidden;
}
.symbol-cards:first-child {
    margin-top: 0;
}
.symbol-cards__item {
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    align-items: flex-start;
    gap: 12px 16px;
}
.symbol-cards__item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--line-secondary-color, #e9e9e9);
}
.symbol-cards__item > * {
    grid-column: 1/-1;
}
.symbol-cards__item img,
.symbol-cards__item svg {
    grid-column: 1/2;
}
.symbol-cards__item img,
.symbol-cards__item .symbol-cards__item-title {
    align-self: center;
}
.symbol-cards__item-icon,
.symbol-cards__item img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}
.symbol-cards__item-title {
    grid-column: 2/3;
    color: var(--text-main, #2b2b2b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 500;
}
.symbol-cards__item-table {
    table-layout: auto;
    border-spacing: 0 4px;
    margin-block: -4px;
}
.symbol-cards__item-row td:first-child,
.symbol-cards__item-row th:first-child {
    border-radius: 8px 0 0 8px;
}
.symbol-cards__item-row td:last-child,
.symbol-cards__item-row th:last-child {
    border-radius: 0 8px 8px 0;
}
.symbol-cards__item td {
    color: var(--text-main, #2b2b2b);
    background: var(--card-secondary-bg, #f9f9f9);
    padding-block: 8px;
    padding-inline: 12px;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
}
.symbol-cards__item td:first-child {
    padding-left: 12px;
}
.symbol-cards__item td:last-child {
    padding-right: 12px;
}
.symbol-cards__item td:not(:first-child) {
    padding-left: 8px;
}
.symbol-cards__item td:not(:last-child) {
    padding-right: 8px;
}
.symbol-cards__item td:first-child {
    color: var(--text-secondary, #6b6b6b);
}
.symbol-cards__item td:last-child {
    text-align: right;
}
@media (max-width: 575.9px) {
    .symbol-cards {
        margin-top: 16px;
        grid-template-columns: 1fr;
        row-gap: 48px;
    }
    .symbol-cards__item::before {
        left: 0;
        top: -24px;
        height: 1px;
        width: 100%;
    }
}

.sidebar-info {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--card-radius, 20px);
    background: var(--card-bg, #fff);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
}
.sidebar-info:first-child {
    margin-top: 0;
}
.sidebar-info img {
    border-radius: 16px;
    width: 100%;
}
.sidebar-info__table td {
    padding-block: 12px;
    padding-inline: 0;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
    color: var(--text-main, #2b2b2b);
}
.sidebar-info__table td:first-child {
    padding-left: 0;
}
.sidebar-info__table td:last-child {
    padding-right: 0;
}
.sidebar-info__table td:not(:first-child) {
    padding-left: 6px;
}
.sidebar-info__table td:not(:last-child) {
    padding-right: 6px;
}
.sidebar-info__table td:last-child {
    color: var(--text-secondary, #6b6b6b);
    text-align: right;
}
.sidebar-info__table td:first-child {
    width: 50%;
}
.sidebar-info__tr:first-child td {
    padding-top: 0;
}
.sidebar-info__tr:not(:last-child) td {
    border-bottom: 1px solid var(--line-color, #e4ebed);
}
.sidebar-info__tr:last-child td {
    padding-bottom: 0;
}

.sidebar-bonus {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--card-radius, 20px);
    background: var(--card-bg, #fff);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 12px 16px;
}
.sidebar-bonus:first-child {
    margin-top: 0;
}
.sidebar-bonus > * {
    grid-column: 1/-1;
}
.sidebar-bonus > img, .sidebar-bonus > svg {
    align-self: center;
    grid-column: 1/2;
    max-width: 63px;
    min-width: 63px;
}
.sidebar-bonus__title {
    grid-column: 2/3;
    align-self: center;
    color: var(--text-main, #2b2b2b);
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}
.sidebar-bonus__rating {
    color: var(--text-main, #2b2b2b);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-main, #2b2b2b);
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    flex-direction: row-reverse;
}
.sidebar-bonus__rating::before, .sidebar-bonus__rating::after {
    font-size: 20px;
    line-height: 18px;
    height: 20px;
    letter-spacing: 0px;
}
.sidebar-bonus__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;
}
.sidebar-bonus__rating::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}
.sidebar-bonus__bonus {
    color: var(--text-main, #2b2b2b);
    font-size: 1.125rem;
    line-height: 150%;
    font-weight: 500;
    padding-top: 12px;
    border-top: 1px solid var(--line-color, #e4ebed);
}
.sidebar-bonus .btn {
    width: 100%;
}

.last-winners {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--card-radius, 20px);
    background: var(--card-bg, #fff);
}
.last-winners:first-child {
    margin-top: 0;
}
.last-winners__title {
    color: var(--text-main, #2b2b2b);
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 600;
}
.last-winners__list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.last-winners__list:first-child {
    margin-top: 0;
}
.last-winners__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
    color: var(--text-main, #2b2b2b);
}
.last-winners__item:not(:first-child) {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-color, #e4ebed);
}
.last-winners__item-index {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent-secondary, #eff8ff);
    width: 26px;
    height: 26px;
    color: var(--accent-base, #3b8ffe);
    font-size: 1rem;
    line-height: 150%;
    font-weight: 500;
}
.last-winners__item-sum {
    display: block;
    color: var(--accent-base, #3b8ffe);
    text-align: right;
    font-size: 1rem;
    line-height: 150%;
    font-weight: 600;
    margin-left: auto;
}


.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: var(--width-container);
    margin: var(--wrapper-margin) auto 0;
    width: 100%;
}

.breadcrumbs__list {
    display: flex;
    gap: 12px;
    align-items: center;
}

.breadcrumbs__item:not(:first-child) {
    padding-left: 28px;
    position: relative;
}

.breadcrumbs__item:not(:first-child):before {
    content: url('data:image/svg+xml,<svg width= "18" height= "18" viewBox= "0 0 18 18" fill= "none" xmlns= "http://www.w3.org/2000/svg" ><path d= "M6.677 3 5.25 4.41 9.886 9 5.25 13.59 6.677 15l6.073-6z" fill= "%236b6b6b" /></svg>');
    left: 0;
    position: absolute;
    top: 3px;
}


@media (max-width: 1320px) {
    .breadcrumbs {
        margin-inline: var(--offsets, 20px);
        max-width: calc(100% - var(--offsets, 20px) * 2)
    }
}