@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%;
}

html {
    scroll-padding-top: 100px;
}

@media (max-width: 575.9px) {
    html {
        scroll-padding-top: 150px;
    }
}

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, 20px) * 2);
    margin: var(--wrapper-margin) auto 0;
    padding: 0 var(--offsets, 20px);
}

.wrapper>img {
    margin-block: 20px 16px;
}

.wrapper>img:first-child {
    margin-top: 0;
}

.wrapper>img:last-child {
    margin-bottom: 0;
    border-radius: 16px;
}

.wrapper>.btn {
    margin-top: 30px;
}

.wrapper>.btn:first-child {
    margin-top: 0;
}

@media (max-width: 767.9px) {
    .wrapper>.btn {
        width: 100%;
    }
}

@media (max-width: 575.9px) {
    .wrapper>.btn {
        margin-top: 16px;
    }
}

.wrapper:first-child+.wrapper {
    margin-top: 32px;
}

@media (max-width: 575.9px) {
    .wrapper:first-child+.wrapper {
        margin-top: 24px;
    }
}

.breadcrumbs+main>*:first-child {
    margin-top: 0;
}

h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main, #fff);
    margin-top: 20px;
    margin-bottom: 16px;
}

h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

@media (max-width: 575.9px) {

    h2,
    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]),
ul.wp-block-list a:not([class]),
ol.wp-block-list a:not([class]),
table a:not([class]) {
    text-decoration: underline;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    color: var(--accent-base, #59ccfe);
}

p:not([class]) a:not([class]):active,
ul:not([class]) a:not([class]):active,
ol:not([class]) a:not([class]):active,
ul.wp-block-list a:not([class]):active,
ol.wp-block-list a:not([class]):active,
table a:not([class]):active {
    color: var(--link-color-hover, #59ccfe);
    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,
    ul.wp-block-list a:not([class]):hover,
    ol.wp-block-list a:not([class]):hover,
    table a:not([class]):hover {
        color: var(--link-color-hover, #59ccfe);
        text-decoration: none;
    }

    p:not([class]) a:not([class]):focus,
    ul:not([class]) a:not([class]):focus,
    ol:not([class]) a:not([class]):focus,
    ul.wp-block-list a:not([class]):focus,
    ol.wp-block-list a:not([class]):focus,
    table a:not([class]):focus {
        color: var(--link-color-hover, #59ccfe);
        text-decoration: none;
    }
}

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

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

h1 {
    color: var(--text-main, #fff);
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 120%;
    margin-bottom: 20px;
}

@media (max-width: 575.9px) {
    h1 {
        font-size: 1.5rem;
        line-height: 130%;
    }
}

h2 {
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 130%;
}

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

h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 130%;
}

@media (max-width: 575.9px) {

    h3,
    h4,
    h5,
    h6 {
        font-size: 1.25rem;
        line-height: 140%;
    }
}

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;
}

p:not([class])+ul:not([class]),
p:not([class])+ul.wp-block-list,
p:not([class])+ol:not([class]),
p:not([class])+ol.wp-block-list {
    margin-top: 20px;
}

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: 20px;
}

ol:not([class])>li::before,
ol.wp-block-list>li::before {
    content: counter(ol-default) ". ";
    position: absolute;
    left: 0;
    top: 0;
    font-style: italic;
    font-weight: 700;
    font-size: 1rem;
    line-height: 150%;
    color: var(--accent-base, #59ccfe);
}

ul:not([class]) li,
ul.wp-block-list li {
    padding-left: 28px;
}

ul:not([class]) li::before,
ul.wp-block-list:not(.disk-list) li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent-base, #59CCFE);
    -webkit-mask-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.444 16.445a.9.9 0 0 1-.628-.26L2.26 12.628a.888.888 0 1 1 1.257-1.257l2.928 2.927L16.483 4.261a.888.888 0 1 1 1.256 1.257L7.073 16.184a.9.9 0 0 1-.629.26m5.073-.26 6.223-6.223a.888.888 0 1 0-1.257-1.257l-6.223 6.223a.888.888 0 1 0 1.257 1.256" fill="black"/></svg>');
    mask-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.444 16.445a.9.9 0 0 1-.628-.26L2.26 12.628a.888.888 0 1 1 1.257-1.257l2.928 2.927L16.483 4.261a.888.888 0 1 1 1.256 1.257L7.073 16.184a.9.9 0 0 1-.629.26m5.073-.26 6.223-6.223a.888.888 0 1 0-1.257-1.257l-6.223 6.223a.888.888 0 1 0 1.257 1.256" fill="black"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

ul.disk-list li::before,
ul.wp-block-list.disk-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-base, #59CCFE);
    border-radius: 50%;
}

h2+p:not([class]),
.author-row+p:not([class]) {
    margin-top: 16px;
}

h2+p {
    margin-top: 16px;
}

@font-face {
    font-family: "WorkSans";
    font-display: swap;
    src: url("../fonts/WorkSans-Italic-VariableFont_wght.woff2") format("woff2"), url("../fonts/WorkSans-Italic-VariableFont_wght.woff") format("woff");
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: "WorkSans";
    font-display: swap;
    src: url("../fonts/WorkSans-VariableFont_wght.woff2") format("woff2"), url("../fonts/WorkSans-VariableFont_wght.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
}

.no-scroll {
    overflow: hidden;
}

html {
    font: 400 var(--font-default)/1.5 var(--ff-worksans), sans-serif;
}

@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: 10px;
        scrollbar-color: var(--scrollbar, #00a5f8) transparent;
    }
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--scrollbar, #00a5f8);
}

html::-webkit-scrollbar-track {
    background: transparent;
}

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

main {
    flex-grow: 1;
    padding-top: 82px;
}

@media (max-width: 575.9px) {
    main {
        padding-top: 130px;
    }
}

table,
.wp-block-table,
.has-fixed-layout {
    margin-top: 20px;
    width: 100%;
    table-layout: auto;
    border-spacing: 0;
}

.show-more:not(:first-child):not(.wrapper) {
    margin-top: 20px;
}

.show-more__btn {
    margin-inline: auto;
}

.show-more.hidden .grid-block>*:nth-of-type(n + 9) {
    display: none;
}

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

:root {
    --offsets: 20px;
    --width-container: 1320px;
    --wrapper-margin: 48px;
    --font-default: 16px;
    --ff-worksans: "WorkSans", sans-serif;
    /* --star-color: #fc0;
    --star-bg: #fff;
    --site-bg: #101211;
    --card-bg: #1f211f;
    --button-color: #ffffff;
    --scrollbar: #00a5f8;
    --link-color-hover: #59ccfe;
    --text-main: #ffffff;
    --text-secondary: #d8d8d8;
    --line-color: #424242;
    --accent-base: #59ccfe;
    --pros: #00bc55;
    --cons: #ff1f1f;
    --line-secondary-color: #0b3b50;
    --button-border: #369eff;
    --secondary-button-border: #b564ea;
    
    --card-bg-gradient-stop-1-color: #1f2021;
    --card-bg-gradient-stop-1-position: 0%;
    --card-bg-gradient-stop-2-color: #1c2122;
    --card-bg-gradient-stop-2-position: 100%;
    --main-gradient-stop-1-color: #00a5f8;
    --main-gradient-stop-1-position: 0%;
    --main-gradient-stop-2-color: #005bd2;
    --main-gradient-stop-2-position: 100%;
    --secondary-gradient-stop-1-color: #b700ff;
    --secondary-gradient-stop-1-position: 0%;
    --secondary-gradient-stop-2-color: #6b00b3;
    --secondary-gradient-stop-2-position: 100%; */
}

@media (max-width: 575.9px) {
    :root {
        --offsets: 16px;
        --wrapper-margin: 32px;
    }
}

.header {
    --header-height: 60px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px calc((100vw - var(--width-container)) / 2);
    width: 100%;
    margin-inline: auto;
    background: var(--header-bg, #1f211f);
    position: fixed;
    z-index: 10;
}

.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;
    width: fit-content;
    height: 50px;
    object-fit: contain;
}

.header__nav {
    z-index: 50;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}

.header__nav__icon-wrap {
    width: 15px;
    height: 15px;
    margin-right: 8px;
    flex-shrink: 0;
}

.header__nav__icon-wrap svg {
    transform: rotate(0) !important;

}

.header__nav .app-buttons {
    display: none;
    margin-top: 20px;
}

@media (max-width: 1239.9px) {
    .header__nav .app-buttons {
        display: flex;
    }
}

.header__btns {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.header__burger {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 2px;
    cursor: pointer;
    background: transparent;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    border-radius: 16px;
}

@media (min-width: 1240px) {
    .header__burger {
        display: none;
    }
}

@media (any-hover: hover) {
    .header__burger:hover {
        opacity: 0.6;
    }
}

@media (any-hover: none) and (pointer: coarse) {
    .header__burger:active {
        opacity: 0.6;
    }
}

.header__burger::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--header-color, #ffffff);
    -webkit-mask-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.2 6.5c0-.663.604-1.2 1.35-1.2h8.1c.745 0 1.35.537 1.35 1.2s-.605 1.2-1.35 1.2h-8.1c-.746 0-1.35-.537-1.35-1.2m10.8 12c0-.663.604-1.2 1.35-1.2h8.1c.746 0 1.35.537 1.35 1.2s-.604 1.2-1.35 1.2h-8.1c-.746 0-1.35-.537-1.35-1.2m-10.8-6c0-.663.604-1.2 1.35-1.2h18.9c.745 0 1.35.537 1.35 1.2s-.605 1.2-1.35 1.2H2.55c-.746 0-1.35-.537-1.35-1.2" fill="black"/></svg>');
    mask-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.2 6.5c0-.663.604-1.2 1.35-1.2h8.1c.745 0 1.35.537 1.35 1.2s-.605 1.2-1.35 1.2h-8.1c-.746 0-1.35-.537-1.35-1.2m10.8 12c0-.663.604-1.2 1.35-1.2h8.1c.746 0 1.35.537 1.35 1.2s-.604 1.2-1.35 1.2h-8.1c-.746 0-1.35-.537-1.35-1.2m-10.8-6c0-.663.604-1.2 1.35-1.2h18.9c.745 0 1.35.537 1.35 1.2s-.605 1.2-1.35 1.2H2.55c-.746 0-1.35-.537-1.35-1.2" fill="black"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.header.menu-active .header__burger::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m18 6.5-12 12m0-12 12 12" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    mask-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m18 6.5-12 12m0-12 12 12" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

@media (max-width: 1360px) {
    .header {
        margin-inline: auto;
        padding-inline: var(--offsets, 20px);
    }
}

@media (max-width: 1239.9px) {
    .header:not(.menu-active) .header__nav {
        display: none;
    }

    .header.menu-active {
        z-index: 50;
    }

    .header.menu-active .header__nav .header-menu:has(> .parent.active)>.item:not(.active) {
        display: none;
    }

    .header.menu-active .header__nav .item.parent.active>.submenu:has(> .parent.active)>.item:not(.active) {
        display: none;
    }

    .header__nav {
        z-index: 50;
        position: absolute;
        top: 100%;
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(100svh - var(--header-height));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: var(--header-bg, #1f211f);
        border-top: 1px solid var(--line-color, #424242);
        padding: var(--offsets, 20px);
        overflow-y: auto;
    }

    @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;
    }
}

@media (max-width: 767.9px) {
    .header:not(.menu-active) .header__mob {
        display: none;
    }
}

@media (max-width: 575.9px) {
    .header {
        flex-wrap: wrap;
    }

    .header__logo img,
    .header__logo svg {
        max-height: 33px;
    }

    .header__btns {
        width: 100%;
        order: 20;
    }

    .header__btns .btn {
        flex: 1 0 auto;
        min-width: calc((100% - 8px) / 2);
        padding: 12px;
        white-space: unset;
    }
}

.section-faq {
    margin-top: 20px;
}

.section-faq:first-child {
    margin-top: 0;
}

.section-faq {
    display: grid;
    gap: 16px;
}

.section-faq__item {
    position: relative;
    padding: 16px 16px 16px 52px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
}

.section-faq__item::before {
    content: '';
    width: 28px;
    height: 28px;
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-base, #59CCFE);
    -webkit-mask-image: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 1.4A12.6 12.6 0 1 0 26.6 14 12.614 12.614 0 0 0 14 1.4m0 23.1A10.5 10.5 0 1 1 24.5 14 10.51 10.51 0 0 1 14 24.5" fill="black"/><path d="M14.754 6.716A4.2 4.2 0 0 0 9.8 10.85a1.05 1.05 0 0 0 2.1 0 2.1 2.1 0 0 1 3.585-1.484c.299.298.502.68.584 1.094a2.1 2.1 0 0 1-1.05 2.23 3.83 3.83 0 0 0-2.07 3.41A1.01 1.01 0 0 0 14 17.105a1.09 1.09 0 0 0 1.05-1.096 1.73 1.73 0 0 1 .977-1.479 4.2 4.2 0 0 0-1.273-7.814m-.732 12.534h-.01a1.055 1.055 0 1 0 .01 0" fill="black"/></svg>');
    mask-image: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 1.4A12.6 12.6 0 1 0 26.6 14 12.614 12.614 0 0 0 14 1.4m0 23.1A10.5 10.5 0 1 1 24.5 14 10.51 10.51 0 0 1 14 24.5" fill="black"/><path d="M14.754 6.716A4.2 4.2 0 0 0 9.8 10.85a1.05 1.05 0 0 0 2.1 0 2.1 2.1 0 0 1 3.585-1.484c.299.298.502.68.584 1.094a2.1 2.1 0 0 1-1.05 2.23 3.83 3.83 0 0 0-2.07 3.41A1.01 1.01 0 0 0 14 17.105a1.09 1.09 0 0 0 1.05-1.096 1.73 1.73 0 0 1 .977-1.479 4.2 4.2 0 0 0-1.273-7.814m-.732 12.534h-.01a1.055 1.055 0 1 0 .01 0" fill="black"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.section-faq__quest {
    margin: 0;
    color: var(--text-main, #fff);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 150%;
}

.section-faq__answer {
    color: var(--text-secondary, #d8d8d8);
    margin-top: 8px;
    font-size: 1rem;
    line-height: 150%;
}

.section-faq__answer:first-child {
    margin-top: 0;
}

@media (max-width: 575.9px) {
    .section-faq {
        margin-top: 16px;
    }
}

.footer {
    margin-top: 32px;
    padding: 48px calc((100vw - var(--width-container)) / 2);
    background: var(--footer-bg, #1f211f);
    color: var(--footer-color, #fff);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 48px;
}

.footer__logo {
    display: flex;
    margin-right: auto;
}

.footer__logo img,
.footer__logo 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__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.footer__top>img,
.footer__top>svg {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.footer__dmca-image {
    max-width: fit-content;
    height: 44px;
    border-radius: 12px;
}

.footer__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px 64px;
}

.footer__row>* {
    flex: 1;
}

.footer__top,
.footer__row {
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line-color, #424242);
}

.footer__nav {
    width: 100%;
    margin-inline: auto;
}

.footer__nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__nav-list a {
    color: var(--footer-color, #fff);
    text-align: center;
    font-size: 1.125rem;
    line-height: 150%;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.footer__nav-list a:active {
    color: var(--accent-base, #59ccfe);
}

@media (any-hover: hover) {
    .footer__nav-list a:hover {
        color: var(--accent-base, #59ccfe);
    }

    .footer__nav-list a:focus {
        color: var(--accent-base, #59ccfe);
    }
}

.footer__col-title {
    color: var(--footer-color, #fff);
    font-weight: 600;
    margin-block: 24px 16px;
    font-size: 1.25rem;
    line-height: 140%;
}

.footer__col-title:first-child {
    margin-top: 0;
}

@media (max-width: 575.9px) {
    .footer__col-title {
        font-size: 1.125rem;
        line-height: 150%;
    }
}

.footer__btns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.footer__info p:not([class]) {
    margin-top: 12px;
}

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

.footer__info-logos {
    margin-top: 16px;
}

.footer__info-logos:first-child {
    margin-top: 0;
}

.footer__info-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer__info-logos-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer__info-logos img,
.footer__info-logos svg {
    max-width: 100%;
    width: fit-content;
    max-height: 50px;
    object-fit: contain;
}

.footer__logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px 20px;
    flex-wrap: wrap;
}

.footer__logos li {
    max-width: 100%;
}

.footer__logos img,
.footer__logos svg {
    width: 100%;
    max-height: 30px;
}

@media (max-width: 991.9px) {
    .footer__logos {
        justify-content: center;
    }
}

@media (max-width: 575.9px) {

    .footer__logos img,
    .footer__logos svg {
        max-height: 30px;
    }
}

.footer__copyright {
    color: var(--footer-color, #fff);
    text-align: center;
    font-size: 0.875rem;
    line-height: 150%;
}

@media (max-width: 1360px) {
    .footer {
        padding-inline: var(--offsets, 20px);
    }
}

@media (max-width: 991.9px) {
    .footer__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__row {
        flex-direction: column;
        align-items: stretch;
    }

    .footer__nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.9px) {
    .footer {
        padding-block: 32px;
        gap: 24px;
    }

    .footer__top,
    .footer__row {
        padding-bottom: 24px;
    }

    .footer__nav-list {
        gap: 16px;
    }

    .footer__btns {
        flex-direction: column;
    }

    .footer__btns .btn {
        width: 100%;
    }
}

.header-menu {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px 24px;
}

@media (max-width: 1239.9px) {
    .header-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
    }
}

.header-menu .submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

@supports not selector(::-webkit-scrollbar) {
    .header-menu .submenu {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
    }
}

.header-menu .submenu::-webkit-scrollbar {
    width: 4px;
}

.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-menu .submenu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 9px;
}

.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-menu .item.parent {
    cursor: pointer;
    gap: 12px;
}

.header-menu .item a,
.header-menu .item span {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition-property: background, color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.header-menu .item svg {
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    min-width: 20px;
}

.header-menu .item svg path {
    transition-property: fill;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    fill: var(--header-color, #fff);
}

.header-menu a,
.header-menu span {
    color: var(--header-color, #fff);
    font-weight: 500;
}

@media (min-width: 1240px) {

    .header-menu>.item.parent,
    .header-menu>.item:not(.parent)>a,
    .header-menu>.item:not(.parent)>span {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .header-menu>.item.parent:active,
    .header-menu>.item:not(.parent)>a:active,
    .header-menu>.item:not(.parent)>span:active {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:active>a,
    .header-menu>.item.parent:active>span,
    .header-menu>.item:not(.parent)>a:active>a,
    .header-menu>.item:not(.parent)>a:active>span,
    .header-menu>.item:not(.parent)>span:active>a,
    .header-menu>.item:not(.parent)>span:active>span {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:active>svg path,
    .header-menu>.item:not(.parent)>a:active>svg path,
    .header-menu>.item:not(.parent)>span:active>svg path {
        fill: var(--header-color-hover, #ffffff);
    }
}

@media (min-width: 1240px) and (any-hover: hover) {

    .header-menu>.item.parent:hover,
    .header-menu>.item:not(.parent)>a:hover,
    .header-menu>.item:not(.parent)>span:hover {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:hover>a,
    .header-menu>.item.parent:hover>span,
    .header-menu>.item:not(.parent)>a:hover>a,
    .header-menu>.item:not(.parent)>a:hover>span,
    .header-menu>.item:not(.parent)>span:hover>a,
    .header-menu>.item:not(.parent)>span:hover>span {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:hover>svg path,
    .header-menu>.item:not(.parent)>a:hover>svg path,
    .header-menu>.item:not(.parent)>span:hover>svg path {
        fill: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:focus,
    .header-menu>.item:not(.parent)>a:focus,
    .header-menu>.item:not(.parent)>span:focus {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:focus>a,
    .header-menu>.item.parent:focus>span,
    .header-menu>.item:not(.parent)>a:focus>a,
    .header-menu>.item:not(.parent)>a:focus>span,
    .header-menu>.item:not(.parent)>span:focus>a,
    .header-menu>.item:not(.parent)>span:focus>span {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.parent:focus>svg path,
    .header-menu>.item:not(.parent)>a:focus>svg path,
    .header-menu>.item:not(.parent)>span:focus>svg path {
        fill: var(--header-color-hover, #ffffff);
    }
}

@media (min-width: 1240px) {

    .header-menu>.item.current.parent,
    .header-menu>.item.current:not(.parent)>a,
    .header-menu>.item.current:not(.parent)>span {
        color: var(--header-color-hover, #59ccfe);
    }

    .header-menu>.item.current {
        position: relative;
    }

    .header-menu>.item.current::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        height: 2px;
        background: var(--header-color-hover, #ffffff);
        z-index: -1;
        bottom: -29px;
    }

    .header-menu>.item.current.parent>a,
    .header-menu>.item.current.parent>span,
    .header-menu>.item.current:not(.parent)>a>a,
    .header-menu>.item.current:not(.parent)>a>span,
    .header-menu>.item.current:not(.parent)>span>a,
    .header-menu>.item.current:not(.parent)>span>span {
        color: var(--header-color-hover, #ffffff);
    }

    .header-menu>.item.current.parent>svg path,
    .header-menu>.item.current:not(.parent)>a>svg path,
    .header-menu>.item.current:not(.parent)>span>svg path {
        fill: var(--header-color-hover, #ffffff);
    }
}

@media (min-width: 1240px) and (any-hover: hover) {
    .header-menu>.item.parent:hover>svg {
        transform: rotate(-180deg);
    }
}

@media (min-width: 1240px) {
    .header-menu>.item:nth-child(1) {
        z-index: 49;
    }

    .header-menu>.item:nth-child(2) {
        z-index: 48;
    }

    .header-menu>.item:nth-child(3) {
        z-index: 47;
    }

    .header-menu>.item:nth-child(4) {
        z-index: 46;
    }

    .header-menu>.item:nth-child(5) {
        z-index: 45;
    }

    .header-menu>.item:nth-child(6) {
        z-index: 44;
    }

    .header-menu>.item:nth-child(7) {
        z-index: 43;
    }

    .header-menu>.item:nth-child(8) {
        z-index: 42;
    }

    .header-menu>.item:nth-child(9) {
        z-index: 41;
    }

    .header-menu>.item:nth-child(10) {
        z-index: 40;
    }

    .header-menu>.item:nth-child(11) {
        z-index: 39;
    }

    .header-menu>.item:nth-child(12) {
        z-index: 38;
    }

    .header-menu>.item:nth-child(13) {
        z-index: 37;
    }

    .header-menu>.item:nth-child(14) {
        z-index: 36;
    }

    .header-menu>.item:nth-child(15) {
        z-index: 35;
    }

    .header-menu>.item:nth-child(16) {
        z-index: 34;
    }

    .header-menu>.item:nth-child(17) {
        z-index: 33;
    }

    .header-menu>.item:nth-child(18) {
        z-index: 32;
    }

    .header-menu>.item:nth-child(19) {
        z-index: 31;
    }

    .header-menu>.item:nth-child(20) {
        z-index: 30;
    }

    .header-menu>.item:nth-child(21) {
        z-index: 29;
    }

    .header-menu>.item:nth-child(22) {
        z-index: 28;
    }

    .header-menu>.item:nth-child(23) {
        z-index: 27;
    }

    .header-menu>.item:nth-child(24) {
        z-index: 26;
    }

    .header-menu>.item:nth-child(25) {
        z-index: 25;
    }

    .header-menu>.item:nth-child(26) {
        z-index: 24;
    }

    .header-menu>.item:nth-child(27) {
        z-index: 23;
    }

    .header-menu>.item:nth-child(28) {
        z-index: 22;
    }

    .header-menu>.item:nth-child(29) {
        z-index: 21;
    }

    .header-menu>.item:nth-child(30) {
        z-index: 20;
    }

    .header-menu>.item:nth-child(31) {
        z-index: 19;
    }

    .header-menu>.item:nth-child(32) {
        z-index: 18;
    }

    .header-menu>.item:nth-child(33) {
        z-index: 17;
    }

    .header-menu>.item:nth-child(34) {
        z-index: 16;
    }

    .header-menu>.item:nth-child(35) {
        z-index: 15;
    }

    .header-menu>.item:nth-child(36) {
        z-index: 14;
    }

    .header-menu>.item:nth-child(37) {
        z-index: 13;
    }

    .header-menu>.item:nth-child(38) {
        z-index: 12;
    }

    .header-menu>.item:nth-child(39) {
        z-index: 11;
    }

    .header-menu>.item:nth-child(40) {
        z-index: 10;
    }

    .header-menu>.item:nth-child(41) {
        z-index: 9;
    }

    .header-menu>.item:nth-child(42) {
        z-index: 8;
    }

    .header-menu>.item:nth-child(43) {
        z-index: 7;
    }

    .header-menu>.item:nth-child(44) {
        z-index: 6;
    }

    .header-menu>.item:nth-child(45) {
        z-index: 5;
    }

    .header-menu>.item:nth-child(46) {
        z-index: 4;
    }

    .header-menu>.item:nth-child(47) {
        z-index: 3;
    }

    .header-menu>.item:nth-child(48) {
        z-index: 2;
    }

    .header-menu>.item:nth-child(49) {
        z-index: 1;
    }

    .header-menu>.item:nth-child(50) {
        z-index: 0;
    }

    .header-menu .item {
        justify-content: space-between;
    }

    .header-menu .item.parent::before {
        content: "";
        width: 100%;
        height: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        transform: translate(0, -4px);
        display: none;
    }
}

@media (min-width: 1240px) and (any-hover: hover) {
    .header-menu .item.parent:hover::before {
        display: block;
    }

    .header-menu .item.parent:hover>.submenu {
        display: flex;
    }
}

@media (min-width: 1240px) {
    .header-menu .item_left>.submenu {
        left: unset;
        right: 0;
    }

    .header-menu .item_left>.submenu>.item {
        flex-direction: row-reverse;
    }

    .header-menu .item_left>.submenu>.item>a,
    .header-menu .item_left>.submenu>.item>span {
        flex-direction: row-reverse;
    }

    .header-menu .item_left>.submenu>.item.parent>svg {
        transform: rotate(90deg);
    }

    .header-menu .item_left>.submenu .submenu {
        left: 0px;
        transform: translateX(-100%);
    }

    .header-menu .submenu {
        width: 224px;
        display: none;
        padding-block: 8px;
        border-radius: 12px;
        background: var(--header-bg, #1f211f);
        position: absolute;
        top: 100%;
        left: 0;
    }

    .header-menu .submenu .submenu {
        overflow-y: auto;
        overflow-x: clip;
        max-height: 300px;
        top: -8px;
        left: calc(100% - 1px);
        transform: translateX(0);
    }

    @supports not selector(::-webkit-scrollbar) {
        .header-menu .submenu .submenu {
            scrollbar-width: thin;
            scrollbar-color: var(--primary-opacity-012, rgba(208, 188, 255, 0.12)) transparent;
        }
    }

    .header-menu .submenu .submenu::-webkit-scrollbar {
        width: 4px;
    }

    .header-menu .submenu .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-menu .submenu .submenu::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 9px;
    }

    .header-menu .submenu .item {
        text-transform: none;
    }

    .header-menu .submenu .item.parent,
    .header-menu .submenu .item:not(.parent)>a,
    .header-menu .submenu .item:not(.parent)>span {
        padding: 12px;
        min-height: 40px;
        text-align: left;
    }
}

@media (min-width: 1240px) and (any-hover: hover) {

    .header-menu .submenu .item.parent:hover,
    .header-menu .submenu .item:not(.parent)>a:hover,
    .header-menu .submenu .item:not(.parent)>span:hover {
        background: var(--states-hovered, rgba(255, 255, 255, 0.08));
    }
}

@media (min-width: 1240px) {

    .header-menu .submenu .item.parent:active,
    .header-menu .submenu .item:not(.parent)>a:active,
    .header-menu .submenu .item:not(.parent)>span:active {
        background: var(--states-focused, rgba(255, 255, 255, 0.12));
    }
}

@media (min-width: 1240px) and (any-hover: hover) {

    .header-menu .submenu .item.parent:focus,
    .header-menu .submenu .item:not(.parent)>a:focus,
    .header-menu .submenu .item:not(.parent)>span:focus {
        background: var(--states-focused, rgba(255, 255, 255, 0.12));
    }
}

@media (min-width: 1240px) {
    .header-menu .submenu .item.parent>a:active {
        color: var(--accent-base, #59ccfe);
    }
}

@media (min-width: 1240px) and (any-hover: hover) {
    .header-menu .submenu .item.parent>a:hover {
        color: var(--accent-base, #59ccfe);
    }

    .header-menu .submenu .item.parent>a:focus {
        color: var(--accent-base, #59ccfe);
    }
}

@media (min-width: 1240px) {
    .header-menu .submenu .item.parent>svg {
        transform: rotate(-90deg);
    }

    .header-menu .submenu .item:not(.parent) a,
    .header-menu .submenu .item:not(.parent) span {
        width: 100%;
    }

    .header-menu .submenu .item.current.parent,
    .header-menu .submenu .item.current:not(.parent)>a,
    .header-menu .submenu .item.current:not(.parent)>span {
        background: var(--states-hovered, rgba(255, 255, 255, 0.08));
    }
}

@media (max-width: 1239.9px) {
    .header-menu {
        gap: 16px;
    }

    .header-menu>.item.parent.active {
        padding-bottom: 0;
    }

    .header-menu>.item.parent.active::after {
        display: none;
    }

    .header-menu .item {
        flex-wrap: wrap;
    }

    .header-menu .item.parent:not(.active):active,
    .header-menu .item:not(.parent)>a:active,
    .header-menu .item:not(.parent)>span:active {
        color: var(--accent-base, #59ccfe);
    }

    .header-menu .item.parent:not(.active):active>a,
    .header-menu .item.parent:not(.active):active>span,
    .header-menu .item:not(.parent)>a:active>a,
    .header-menu .item:not(.parent)>a:active>span,
    .header-menu .item:not(.parent)>span:active>a,
    .header-menu .item:not(.parent)>span:active>span {
        color: var(--accent-base, #59ccfe);
    }
}

@media (max-width: 1239.9px) and (any-hover: hover) {

    .header-menu .item.parent:not(.active):hover,
    .header-menu .item:not(.parent)>a:hover,
    .header-menu .item:not(.parent)>span:hover {
        color: var(--accent-base, #59ccfe);
    }

    .header-menu .item.parent:not(.active):hover>a,
    .header-menu .item.parent:not(.active):hover>span,
    .header-menu .item:not(.parent)>a:hover>a,
    .header-menu .item:not(.parent)>a:hover>span,
    .header-menu .item:not(.parent)>span:hover>a,
    .header-menu .item:not(.parent)>span:hover>span {
        color: var(--accent-base, #59ccfe);
    }

    .header-menu .item.parent:not(.active):focus,
    .header-menu .item:not(.parent)>a:focus,
    .header-menu .item:not(.parent)>span:focus {
        color: var(--accent-base, #59ccfe);
    }

    .header-menu .item.parent:not(.active):focus>a,
    .header-menu .item.parent:not(.active):focus>span,
    .header-menu .item:not(.parent)>a:focus>a,
    .header-menu .item:not(.parent)>a:focus>span,
    .header-menu .item:not(.parent)>span:focus>a,
    .header-menu .item:not(.parent)>span:focus>span {
        color: var(--accent-base, #59ccfe);
    }
}

@media (max-width: 1239.9px) {

    .header-menu .item.parent,
    .header-menu .item:not(.parent)>a,
    .header-menu .item:not(.parent)>span {
        width: 100%;
    }

    .header-menu .item svg {
        margin-left: auto;
        transform: rotate(-90deg);
    }

    .header-menu .item.parent.active {
        position: fixed;
        top: calc(var(--header-height) + 20px);
        left: var(--offsets, 20px);
        max-height: calc(100svh - var(--header-height) - 40px);
        max-width: calc(100% - var(--offsets, 20px) * 2);
        background: var(--card-bg, #1f211f);
        flex-direction: column;
        flex-wrap: nowrap;
        z-index: 10;
        margin-left: 0;
        transition-duration: 0s;
        gap: 0;
    }

    .header-menu .item.parent.active:active:has(.submenu:not(:hover))::before {
        background: var(--primary-opacity-012, rgba(208, 188, 255, 0.12));
    }

    .header-menu .item.parent.active> :is(a, span) {
        position: relative;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        font-size: 1.125rem;
        line-height: 1.5rem;
        text-align: center;
        padding-left: 56px;
    }

    .header-menu .item.parent.active> :is(a, span)::before {
        content: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m22.581 26.667 1.586-1.567-5.151-5.1 5.15-5.1-1.585-1.567L15.833 20z" fill="%23fff"/></svg>');
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }

    .header-menu .item.parent.active>svg {
        display: none;
    }

    .header-menu .item.parent.active>.submenu {
        display: flex;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 0;
        z-index: 0;
        flex: 1;
        margin-top: 16px;
    }

    .header-menu .item.parent {
        gap: 8px;
    }

    .header-menu .item.parent>a,
    .header-menu .item.parent>span {
        max-width: calc(100% - 36px);
    }

    .header-menu .item.current:not(.parent) a,
    .header-menu .item.current:not(.parent)>span {
        background: var(--states-hovered, rgba(255, 255, 255, 0.08));
        padding: 10px;
        border-radius: 10px;
    }

    .header-menu .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        display: none;
        gap: 16px;
    }
}

@media (max-width: 575.9px) {
    .header-menu .item.parent.active {
        top: calc(var(--header-height) + 16px);
        max-height: calc(100svh - var(--header-height) - 32px);
    }
}

.section-hero {
    margin-top: 32px;
    padding-block: 12px;
    display: grid;
    grid-template-columns: fit-content(50%) 1fr;
    align-items: flex-start;
    gap: 24px;
}

.section-hero--reversed {
    grid-template-columns: 1fr fit-content(50%);
}

.section-hero--centered .section-hero__content {
    align-self: center;
    padding-bottom: 33px;
}

.section-hero--centered .section-hero__content .last-update {
    margin-bottom: 32px;
}

.section-hero__content .last-update {
    margin-bottom: 20px;
}

.section-hero__content p:not([class])+p:not([class]) {
    margin-top: 12px;
}

.section-hero>img {
    margin-top: 0;
}

@media (max-width: 767.9px) {
    .section-hero {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-hero>img {
        width: 100%;
    }

    .section-hero__content {
        display: contents;
    }

    .section-hero__content h1 {
        order: -1;
    }

    .section-hero__content .last-update {
        order: 999;
        margin-block: 20px 0;
    }

    .section-hero__content *+p:not([class]) {
        margin-top: 20px;
    }

    .section-hero--bonus>img {
        order: -3;
    }

    .section-hero--bonus .section-hero__content h1 {
        order: -5;
    }

    .section-hero--bonus .section-hero__content .banner-bonus {
        order: 899;
    }

    .section-hero--promo>img {
        order: 899;
    }

    .section-hero--promo .section-hero__content h1 {
        order: -5;
        margin-bottom: 0;
    }

    .section-hero--promo .section-hero__content .banner-bonus {
        order: -3;
    }

    .section-hero--app {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-hero--app .app-card {
        order: -4;
    }

    .section-hero--app .section-hero__content h1 {
        order: -5;
    }

    .section-hero--app .section-hero__content .banner-bonus {
        order: -3;
    }

    .section-hero--centered .section-hero__content .last-update {
        margin-bottom: 0;
    }
}

@media (max-width: 575.9px) {
    .section-hero {
        margin-top: 24px;
    }
}

.breadcrumbs+main>.section-hero:first-child {
    padding-block: 12px 0;
}

.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-gradient, linear-gradient(180deg, #1f2021 45.97%, #1c2122 100%));
    width: 100%;
    max-width: calc(var(--width-container));
    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: 575.9px) {
    .modal__content {
        height: 100%;
        width: 100%;
        max-height: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 16px;
        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;
    }
}

.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: 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(--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;
    border-radius: 16px;
}

.modal__title {
    align-self: center;
    color: var(--text-main, #fff);
    margin-right: auto;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 130%;
}

@media (max-width: 575.9px) {
    .modal__title {
        font-size: 1.25rem;
        line-height: 140%;
    }
}

.modal__close {
    align-self: center;
    position: relative;
    background: transparent;
    border: 0;
    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::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="33" viewBox="0 0 32 33" fill="none"><path d="m24 8.5-16 16m0-16 16 16" stroke="%23fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 32px;
    height: 32px;
    display: block;
}

@media (max-width: 575.9px) {
    .modal__close::after {
        transform: scale(0.75);
    }
}

.btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    cursor: pointer;
    /* overflow: hidden; */
    padding: 12px 32px;
    border-radius: var(--button-radius, 16px);
    background: transparent;
    font-size: 1rem;
    line-height: 150%;
    transition-property: background, box-shadow, color, border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.btn svg {
    min-width: 18px;
    min-height: 16px;
    max-width: 100px;
    max-height: 48px;
}

.btn[disabled],
.btn.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.btn--default {
    background: var(--button-default-bg, #fff);
    color: var(--button-color-default, #101211);
}

/* .btn--default:active {
    background: var(--text-secondary, #d8d8d8);
} */

@media (any-hover: hover) {
    .btn--default:hover {
        background: var(--button-default-hover, #d8d8d8);
    }

    .btn--default:focus {
        background: var(--button-default-hover, #d8d8d8);
    }
}

.btn--primary {
    color: var(--button-color, #fff);
    border-right: 1px solid var(--button-border, #369eff);
    border-bottom: 1px solid var(--button-border, #369eff);
    background: linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
    background-size: 100% 200%;
    background-position: 0 100%;
}

.btn--primary:active {
    background-position: 0 0;
}

@media (any-hover: hover) {
    .btn--primary:hover {
        background-position: 0 0;
    }

    .btn--primary:focus {
        background-position: 0 0;
    }
}

.btn--outlined {
    color: var(--button-color-outlined, #fff);
    overflow: unset;
    background: var(--site-bg, #101211);
}

.btn--outlined::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
    background-size: 100% 200%;
    background-position: 0 100%;
    transition-property: background-position;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.btn--outlined:active {
    background: var(--main-gradient-stop-1-color);
}

.btn--outlined:active::before {
    background-position: 0 0;
}

@media (any-hover: hover) {
    .btn--outlined:hover {
        background: var(--main-gradient-stop-1-color);
    }

    .btn--outlined:hover::before {
        background-position: 0 0;
    }

    .btn--outlined:focus {
        background: var(--main-gradient-stop-1-color);
    }

    .btn--outlined:focus::before {
        background-position: 0 0;
    }
}

.btn--secondary {
    color: var(--button-color, #fff);
    border-right: 1px solid var(--secondary-button-border, #b564ea);
    border-bottom: 1px solid var(--secondary-button-border, #b564ea);
    background: linear-gradient(to bottom, var(--secondary-gradient-stop-1-color) 0%, var(--secondary-gradient-stop-1-color) 50%, var(--secondary-gradient-stop-2-color) 100%);
    background-size: 100% 200%;
    background-position: 0 100%;
}

.btn--secondary:active {
    background-position: 0 0;
    border-color: var(--secondary-gradient-stop-1-color);
}

@media (any-hover: hover) {
    .btn--secondary:hover {
        background-position: 0 0;
        border-color: var(--secondary-gradient-stop-1-color);
    }

    .btn--secondary:focus {
        background-position: 0 0;
        border-color: var(--secondary-gradient-stop-1-color);
    }
}

.btn--centered {
    margin-inline: auto;
}

.breadcrumbs {
    margin-block: 32px 0;
    padding-block: 12px;
}

.breadcrumbs__list {
    width: max-content;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    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;
}

.breadcrumbs li:not(:last-child) {
    padding-right: 38px;
}

.breadcrumbs li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--text-main, #fff);
    -webkit-mask-image: 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="m7.5 15 5-5-5-5" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
    mask-image: 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="m7.5 15 5-5-5-5" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.breadcrumbs li:last-child a,
.breadcrumbs li:last-child span {
    color: var(--accent-base, #59ccfe);
}

.breadcrumbs a,
.breadcrumbs span {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--text-main, #fff);
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.breadcrumbs a:active {
    color: var(--accent-base, #59ccfe);
}

@media (any-hover: hover) {
    .breadcrumbs a:hover {
        color: var(--accent-base, #59ccfe);
    }

    .breadcrumbs a:focus {
        color: var(--accent-base, #59ccfe);
    }
}

@media (max-width: 575.9px) {
    .breadcrumbs {
        margin-block: 24px 0;
    }
}

.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: var(--button-radius, 16px);
    background: linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
    background-size: 100% 200%;
    background-position: 0 100%;
    cursor: pointer;
    overflow: hidden;
    transition-property: background-position;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.go-up:not(.active) {
    display: none;
}

.go-up:active {
    background-position: 0 0;
}

@media (any-hover: hover) {
    .go-up:hover {
        background-position: 0 0;
    }

    .go-up:focus {
        background-position: 0 0;
    }
}

.go-up svg {
    max-width: 24px;
    max-height: 24px;
}

@media (max-width: 575.9px) {
    .go-up {
        bottom: 96px;
    }
}

.mob-btn {
    width: calc(100% - 32px);
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 30;
    padding: 8px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-2-color) 100%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mob-btn>img,
.mob-btn>svg {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.mob-btn .btn {
    min-width: min-content;
    margin-left: auto;
    padding: 8px 12px;
    font-size: 0.75rem;
}

.mob-btn .btn svg {
    color: var(var(--button-color-default, #101211));
}

.mob-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: var(--button-color, #fff);
    font-weight: 500;
    line-height: 150%;
    font-size: 0.75rem;
}

.mob-btn__rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
}

.mob-btn__rating::before,
.mob-btn__rating::after {
    content: "";
    font-size: 14px;
    line-height: 12px;
    height: 14px;
    letter-spacing: 0px;
    font-weight: 100;
}

.mob-btn__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;
}

.mob-btn__rating::after {
    content: "☆☆☆☆☆";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}

@supports (mask: url(#)) {

    .mob-btn__rating::before,
    .mob-btn__rating::after {
        content: "";
        width: 70px;
        height: 14px;
        color: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
    }

    .mob-btn__rating::before {
        background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
        -webkit-mask: url('data:image/svg+xml,<svg width="160" height="32" viewBox="0 0 160 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.768-.558l2.415-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036z" fill="%23FF8F4A" stroke="%23FF8F4A"/></svg>');
        mask: url('data:image/svg+xml,<svg width="160" height="32" viewBox="0 0 160 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.768-.558l2.415-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036z" fill="%23FF8F4A" stroke="%23FF8F4A"/></svg>');
        -webkit-mask-size: contain;
        mask-size: contain;
    }

    .mob-btn__rating::after {
        background: var(--star-color);
        -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="32" viewBox="0 0 160 32" fill="none"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036z" stroke="%23FF8F4A"/></svg>');
        mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="32" viewBox="0 0 160 32" fill="none"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036z" stroke="%23FF8F4A"/></svg>');
        -webkit-mask-size: contain;
        mask-size: contain;
    }
}

.mob-btn__rating {
    flex-direction: row-reverse;
}

.mob-btn--primary {
    background: linear-gradient(180deg, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-2-color) 100%);
}

.mob-btn--secondary {
    background: linear-gradient(180deg, var(--secondary-gradient-stop-1-color) 0%, var(--secondary-gradient-stop-2-color) 100%);
}

.mob-btn--app {
    padding-left: 150px;
}

.mob-btn--app>img,
.mob-btn--app>svg {
    position: absolute;
    bottom: 0;
    left: 14px;
    width: 120px;
    height: auto;
    max-width: 120px;
    max-height: unset;
}

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

.pros-cons {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 20px;
}

.pros-cons:first-child {
    margin-top: 0;
}

.pros-cons__item {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
}

.pros-cons__item--pros .pros-cons__title {
    border-color: var(--pros, #00bc55);
}

.pros-cons__item--pros .pros-cons__list li::before {
    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="M16.947 4.5c-.27.009-.523.125-.706.32l-8.807 9.142-3.67-3.81a1.02 1.02 0 0 0-.73-.325 1 1 0 0 0-.74.311 1.05 1.05 0 0 0-.294.746 1.07 1.07 0 0 0 .307.738l4.4 4.566a1.007 1.007 0 0 0 1.455 0l9.535-9.896a1.07 1.07 0 0 0 .224-1.148 1.04 1.04 0 0 0-.386-.475 1 1 0 0 0-.588-.169" fill="%2300BC55"/></svg>');
}

.pros-cons__item--cons .pros-cons__title {
    border-color: var(--cons, #ff1f1f);
}

.pros-cons__item--cons .pros-cons__list li::before {
    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="M15 5 5 15M5 5l10 10" stroke="%23FF1F1F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.pros-cons__title {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pros, #00bc55);
    text-transform: uppercase;
    color: var(--text-main, #fff);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 150%;
}

.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: 28px;
}

.pros-cons__list li::before {
    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="M16.947 4.5c-.27.009-.523.125-.706.32l-8.807 9.142-3.67-3.81a1.02 1.02 0 0 0-.73-.325 1 1 0 0 0-.74.311 1.05 1.05 0 0 0-.294.746 1.07 1.07 0 0 0 .307.738l4.4 4.566a1.007 1.007 0 0 0 1.455 0l9.535-9.896a1.07 1.07 0 0 0 .224-1.148 1.04 1.04 0 0 0-.386-.475 1 1 0 0 0-.588-.169" fill="%2300BC55"/></svg>');
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
}

@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 {
    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: 20px;
}

.table.js-scroll-list:first-child {
    margin-top: 0;
}

@media (max-width: 575.9px) {
    .table.js-scroll-list {
        margin-top: 16px;
    }
}

.table.js-scroll-list table {
    table-layout: auto;
    min-width: min-content;
}

.table.js-scroll-list table thead {
    white-space: nowrap;
}

.table.js-scroll-list table td:last-child {
    text-align: unset;
}

.table.js-scroll-list table td:only-child {
    text-align: left;
}

table:not([class]),
table.wp-block-table,
.has-fixed-layout {
    padding: 0 8px 8px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    border-spacing: 8px;
}


.table.js-scroll-list table.has-fixed-layout {
    table-layout: fixed;
}

table:not([class]) th,
table.wp-block-table th,
.has-fixed-layout th {
    color: var(--text-main, #fff);
    text-align: left;
}

table:not([class]) thead th,
table.wp-block-table thead th,
.has-fixed-layout thead th {
    padding-block: 8px 12px;
    padding-inline: 0;
}

table:not([class]) thead th:first-child,
table.wp-block-table thead th:first-child,
.has-fixed-layout thead th:first-child {
    padding-left: 0;
}

table:not([class]) thead th:last-child,
table.wp-block-table thead th:last-child,
.has-fixed-layout thead th:last-child {
    padding-right: 0;
}

table:not([class]) thead th:not(:first-child),
table.wp-block-table thead th:not(:first-child),
.has-fixed-layout thead th:not(:first-child) {
    padding-left: 8px;
}

table:not([class]) thead th:not(:last-child),
table.wp-block-table thead th:not(:last-child),
.has-fixed-layout thead th:not(:last-child) {
    padding-right: 8px;
}

table:not([class]) thead th,
table.wp-block-table thead th,
.has-fixed-layout thead th {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 150%;
}

table:not([class]) tbody td,
table:not([class]) tbody th,
table.wp-block-table tbody td,
table.wp-block-table tbody th,
.has-fixed-layout tbody td,
.has-fixed-layout tbody th {
    padding: 16px;
    border-radius: 16px;
    background: var(--card-secondary-bg, #282b2d);
    font-size: 1rem;
    line-height: 150%;
}

table:not([class]) tbody th,
table.wp-block-table tbody th,
.has-fixed-layout tbody th {
    font-weight: 500;
}

table:not([class]) tbody td,
table.wp-block-table tbody td,
.has-fixed-layout tbody td {
    color: var(--text-secondary, #d8d8d8);
}

table:not([class]) th,
table:not([class]) td,
table.wp-block-table th,
table.wp-block-table td,
.has-fixed-layout th,
.has-fixed-layout th,
.has-fixed-layout td {
    padding: 16px;
    vertical-align: top;
}

table:not([class]) td,
table.wp-block-table td,
.has-fixed-layout td {
    color: var(--text-secondary, #6b6b6b);
}

table:not([class]) td:first-child,
table.wp-block-table td:first-child,
.has-fixed-layout td:first-child {
    color: var(--text-main, #2b2b2b);
    font-weight: 500;
}

table:not([class]) tr:last-child td,
table.wp-block-table tr:last-child td,
.has-fixed-layout tr:last-child td {
    padding-bottom: 12px;
}

@media (max-width: 575.9px) {

    table:not([class]) td:only-child,
    table.wp-block-table td:only-child {
        text-align: left;
    }
}

.toc-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    border-radius: 16px;
    margin-top: 20px;
}

.toc-section:first-child {
    margin-top: 0;
}

.toc-section.active .toc-section__title svg {
    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;
    margin: 0;
    padding: 24px;
    border-radius: 16px;
    min-height: 80px;
    color: var(--text-main, #fff);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 130%;
}

.toc-section__title svg {
    min-width: 32px;
    width: 32px;
    height: 32px;
    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;
        font-size: 1.25rem;
        line-height: 140%;
    }
}

.toc-section__nav {
    padding-top: 24px;
    margin: 0 24px 24px;
    border-top: 1px solid var(--line-color, #424242);
    display: none;
}

@media (max-width: 575.9px) {
    .toc-section__nav {
        padding-top: 16px;
        margin: 0 16px 16px;
    }
}

.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: 575.9px) {
    .toc-section__list {
        grid-template-columns: 1fr;
    }
}

.toc-section__item {
    position: relative;
    display: flex;
    flex-direction: row;
}

.toc-section__link {
    width: 100%;
    padding: 12px;
    border-radius: 16px;
    background: var(--card-secondary-bg, #282b2d);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--text-main, #fff);
    font-size: 1rem;
    line-height: 150%;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.toc-section__link svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
}

.toc-section__link svg path {
    stroke: currentColor;
}

.toc-section__link:active {
    color: var(--link-color-hover, #59ccfe);
}

@media (any-hover: hover) {
    .toc-section__link:hover {
        color: var(--link-color-hover, #59ccfe);
    }

    .toc-section__link:focus {
        color: var(--link-color-hover, #59ccfe);
    }
}

@media (max-width: 575.9px) {
    .toc-section {
        margin-top: 16px;
    }

    .toc-section__title {
        min-height: 60px;
    }

    .toc-section__title svg {
        min-width: 24px;
        width: 24px;
        height: 24px;
    }
}

.promo-block {
    max-width: 100%;
    padding: 4px 4px 4px 16px;
    border-radius: var(--button-radius, 16px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="none" rx="16" ry="16" stroke="%23FFF" stroke-width="2" stroke-dasharray="8, 8" stroke-linecap="square"/></svg>');
}

.promo-block__text {
    color: var(--button-color, #fff);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 150%;
}

.promo-block__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    padding: 0;
    background: var(--button-color, #fff);
}

.promo-block__btn svg path {
    fill: initial;
}

.promo-block__btn::after {
    width: 20px;
    height: 20px;
}

.promo-block--secondary {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%23B700FF"/><stop offset="100%" stop-color="%236B00B3"/></linearGradient></defs><rect width="100%" height="100%" fill="none" rx="16" ry="16" stroke="url(%23a)" stroke-width="2" stroke-dasharray="8, 8" stroke-linecap="square"/></svg>');
}

.promo-block--secondary .promo-block__btn {
    background-image: linear-gradient(to bottom, var(--secondary-gradient-stop-1-color) 0%, var(--secondary-gradient-stop-1-color) 50%, var(--secondary-gradient-stop-2-color) 100%);
    background-size: 100% 200%;
    background-position: 0 100%;
}

.promo-block--secondary .promo-block__btn svg path {
    fill: #fff;
}

.promo-block--secondary .promo-block__btn svg rect {
    stroke: #fff;
}

@media (any-hover: hover) {
    .promo-block--secondary .promo-block__btn:hover {
        background-position: 0 0;
    }
}

@media (any-hover: none) and (pointer: coarse) {
    .promo-block--secondary .promo-block__btn:active {
        background-position: 0 0;
    }
}

.promo-block.copied .promo-block__btn svg {
    display: none;
}

.promo-block.copied .promo-block__btn::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="M16.947 4.5c-.27.009-.523.125-.706.32l-8.807 9.142-3.67-3.81a1.02 1.02 0 0 0-.73-.325 1 1 0 0 0-.74.311 1.05 1.05 0 0 0-.294.746 1.07 1.07 0 0 0 .307.738l4.4 4.566a1.007 1.007 0 0 0 1.455 0l9.535-9.896a1.07 1.07 0 0 0 .224-1.148 1.04 1.04 0 0 0-.386-.475 1 1 0 0 0-.588-.169" fill="%23101211"/></svg>');
}

.promo-block.copied.promo-block--secondary .promo-block__btn::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="M16.947 4.5c-.27.009-.523.125-.706.32l-8.807 9.142-3.67-3.81a1.02 1.02 0 0 0-.73-.325 1 1 0 0 0-.74.311 1.05 1.05 0 0 0-.294.746 1.07 1.07 0 0 0 .307.738l4.4 4.566a1.007 1.007 0 0 0 1.455 0l9.535-9.896a1.07 1.07 0 0 0 .224-1.148 1.04 1.04 0 0 0-.386-.475 1 1 0 0 0-.588-.169" fill="%23fff"/></svg>');
}

.last-update {
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-main, #fff);
    font-size: 1rem;
    line-height: 150%;
}

.last-update::before {
    content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.187 17.625a6.61 6.61 0 1 0 0-13.221 6.61 6.61 0 0 0 0 13.221m.001-6.61 2.974-2.975M8.385 2h3.606" stroke="%23fff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 20px;
    height: 20px;
}

@media (max-width: 575.9px) {
    .last-update {
        width: 100%;
    }
}

.links-block {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.3%;
    display: flex;
    margin-top: 24px;
}

.links-block:first-child {
    margin-top: 0;
}

.links-block__item {
    display: flex;
    margin-top: 47px;
    max-width: 24%;
    width: 100%;
}

@media (max-width: 991.9px) {
    .links-block {
        gap: 3.3vw;
    }

    .links-block__item {
        max-width: 48%;
    }
}

@media (max-width: 767.9px) {

    .links-block__item {
        max-width: 100%;
        margin-top: 0;
    }
}

.links-block__link {
    width: 100%;
    position: relative;
    padding: 56px 16px 16px;
    border-radius: 20px;
    border-bottom: 2px solid var(--card-bg-gradient-stop-2-color, #1c2122);
    background: var(--card-bg-gradient, linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%));
    text-align: center;
    color: var(--text-main, #fff);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 140%;
    transition-property: border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

@media (max-width: 767.9px) {
    .links-block__link {
        display: flex;
        align-items: center;
        justify-content: start;
        padding: 16px;
        gap: 16px;
    }
}

.links-block__link img,
.links-block__link svg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -35px);
    max-width: 100%;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    max-width: 120px;
    height: 80px;
    object-fit: contain;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

@media (max-width: 767.9px) {

    .links-block__link img,
    .links-block__link svg {
        transform: none;
        position: static;
        height: 60px;
        max-width: 80px;
    }
}

.links-block__link:active {
    border-color: var(--line-secondary-color, #0b3b50);
}

.links-block__link:active img,
.links-block__link:active svg {
    transform: translate(-50%, -58px);
}

@media (any-hover: hover) {
    .links-block__link:hover {
        border-color: var(--line-secondary-color, #0b3b50);
    }

    .links-block__link:hover img,
    .links-block__link:hover svg {
        transform: translate(-50%, -45px);
    }

    .links-block__link:focus {
        border-color: var(--line-secondary-color, #0b3b50);
    }

    .links-block__link:focus img,
    .links-block__link:focus svg {
        transform: translate(-50%, -45px);
    }
}

@media (max-width: 575.9px) {


    .links-block__link {
        font-size: 1.125rem;
        line-height: 150%;
    }
}

.slot-card {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 2px solid var(--card-bg-gradient-stop-2-color, #1c2122);
    transition-property: border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

@media (max-width: 991.98px) {
    .slot-card {
        padding: 12px;
    }
}

.slot-card:hover {
    border-color: var(--line-secondary-color, #0b3b50);
}

.slot-card:hover .slot-card__btns {
    transform: translateY(0);
}

.slot-card__wrap {
    width: 100%;
    position: relative;
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 74%;
    height: 100%;
}

.slot-card__wrap:last-child {
    margin-bottom: 0;
}

.slot-card__wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.slot-card__btns {
    min-height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    background: rgba(16, 18, 17, 0.7);
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(-100%);
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.slot-card__btns .btn {
    width: 100%;
}

@media (max-width: 991.98px) {
    .slot-card__btns .btn {
        padding: 12px;
    }
}

@media (max-width: 575.9px) {
    .slot-card__btns .btn {
        font-size: 14px;
    }
}

.slot-card__provider {
    color: var(--text-secondary, #d8d8d8);
    text-align: center;
    font-size: 0.75rem;
}

.slot-card__name {
    color: var(--text-main, #fff);
    text-align: center;
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 600;
}

.grid-block {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.grid-block:first-child {
    margin-top: 0;
}

@media (max-width: 991.98px) {
    .grid-block {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 16px;
        gap: 12px;
    }
}

.banner-bonus {
    position: relative;
    margin-top: 24px;
}

.banner-bonus:first-child {
    margin-top: 0;
}

.banner-bonus {
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 24px 24px 24px 155px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.banner-bonus__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    color: var(--button-color, #fff);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 140%;
}

.banner-bonus__btns {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.banner-bonus__btns .promo-block {
    min-width: 202px;
}

.banner-bonus__btns>* {
    flex: 1 0 auto;
}

.banner-bonus>.btn {
    margin-left: auto;
}

.banner-bonus>img,
.banner-bonus>svg {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 111px;
    height: 136px;
    object-fit: contain;
    animation: pulseDesktop 1.65s linear infinite;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.banner-bonus.banner-bonus--primary {
    background-image: var(--promo-bg-desk-primary, url("../images/promo-bg-desk-primary.webp")), linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
}

.banner-bonus.banner-bonus--secondary {
    background-image: var(--promo-bg-desk-secondary, url("../images/promo-bg-desk-secondary.webp")), linear-gradient(to bottom, var(--secondary-gradient-stop-1-color) 0%, var(--secondary-gradient-stop-1-color) 50%, var(--secondary-gradient-stop-2-color) 100%);
}

.banner-bonus.banner-bonus--v2 span {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 150%;
}

.banner-bonus.banner-bonus--v3 {
    padding: 20px 20px 20px 155px;
}

.banner-bonus.banner-bonus--v3 .banner-bonus__btns {
    flex-direction: column;
}

.banner-bonus.banner-bonus--v3 .banner-bonus__btns>* {
    width: 100%;
}

@media (min-width: 992px) {
    .banner-bonus.banner-bonus--v3 {
        padding-left: 191px;
    }

    .banner-bonus.banner-bonus--v3 .banner-bonus__text {
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 130%;
    }

    .banner-bonus.banner-bonus--v3>img,
    .banner-bonus.banner-bonus--v3>svg {
        width: 147px;
        height: 180px;
    }
}

@media (max-width: 991.9px) {
    .banner-bonus {
        flex-direction: column;
        background-position: top center;
        background-size: cover;
        padding-left: 24px;
        padding-top: 0;
        margin-top: 74px;
    }

    .banner-bonus>img,
    .banner-bonus>svg {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        margin-top: -71px;
        animation-name: pulseMob;
    }

    .banner-bonus__text {
        flex: unset;
        align-items: center;
        text-align: center;
        min-width: unset;
    }

    .banner-bonus__btns {
        flex: unset;
        width: 100%;
    }

    .banner-bonus>.btn {
        margin-inline: auto;
    }

    .banner-bonus.banner-bonus--secondary {
        background-image: var(--promo-bg-mob-secondary, url("../images/promo-bg-mob-secondary.webp")), linear-gradient(to bottom, var(--secondary-gradient-stop-1-color) 0%, var(--secondary-gradient-stop-1-color) 50%, var(--secondary-gradient-stop-2-color) 100%);
    }

    .banner-bonus.banner-bonus--primary {
        background-image: var(--promo-bg-mob-primary, url("../images/promo-bg-mob-primary.webp")), linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
    }

    .banner-bonus.banner-bonus--v1 {
        display: grid;
        grid-template-columns: auto 1fr;
        padding-top: 16px;
        gap: 24px 16px;
    }

    .banner-bonus.banner-bonus--v1>* {
        grid-column: 1/-1;
    }

    .banner-bonus.banner-bonus--v1>img,
    .banner-bonus.banner-bonus--v1>svg {
        grid-column: 1/2;
        margin-top: 0;
        align-self: center;
        width: 58px;
        height: 71px;
    }

    .banner-bonus.banner-bonus--v1 .banner-bonus__text {
        align-self: center;
        grid-column: 2/3;
        align-items: flex-start;
        text-align: left;
        align-self: center;
    }

    .banner-bonus.banner-bonus--v3 {
        padding-left: 20px;
    }
}

@media (max-width: 575.9px) {
    .banner-bonus {
        margin-top: 0;
        padding: 0 16px 16px;
        margin-top: 70px;
        gap: 16px;
    }

    .banner-bonus>img,
    .banner-bonus>svg {
        margin-bottom: 2px;
    }

    .banner-bonus>.btn {
        width: 100%;
    }

    .banner-bonus__btns {
        flex-direction: column;
    }

    .banner-bonus__btns>* {
        width: 100%;
    }

    .banner-bonus__text {
        gap: 4px;
        font-size: 1.125rem;
        line-height: 150%;
    }

    .banner-bonus.banner-bonus--v1 {
        gap: 16px 12px;
        margin-top: 20px;
    }

    .banner-bonus.banner-bonus--v2 .banner-bonus__text {
        font-size: 1.25rem;
        line-height: 140%;
    }

    .banner-bonus.banner-bonus--v2 .banner-bonus__text span {
        font-size: 1rem;
        line-height: 150%;
    }
}

@keyframes pulseDesktop {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    20%,
    80% {
        transform: translateY(-50%) scale(1);
    }

    42%,
    58% {
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes pulseMob {

    0%,
    100% {
        transform: scale(1);
    }

    20%,
    80% {
        transform: scale(1);
    }

    42%,
    58% {
        transform: scale(1.1);
    }
}

.info-table {
    margin-top: 24px;
}

.info-table:first-child {
    margin-top: 0;
}

.info-table__tbody {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.info-table__row {
    width: 100%;
    max-width: calc((100% - 24px) / 4);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
}

.info-table__th {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: var(--text-main, #fff);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 150%;
}

.info-table__th img,
.info-table__th svg {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

@media (min-width: 992px) {

    .info-table__row:nth-of-type(4n + 5):last-child,
    .info-table__row:only-child {
        max-width: 100%;
    }

    .info-table__row:nth-of-type(4n + 6):last-child,
    .info-table__row:nth-of-type(4n + 5):nth-last-child(2),
    .info-table__row:nth-of-type(2):last-child,
    .info-table__row:nth-of-type(1):nth-last-child(2) {
        max-width: calc((100% - 8px) / 2);
    }

    .info-table__row:nth-of-type(4n + 7):last-child,
    .info-table__row:nth-of-type(4n + 6):nth-last-child(2),
    .info-table__row:nth-of-type(4n + 5):nth-last-child(3),
    .info-table__row:nth-of-type(3):last-child,
    .info-table__row:nth-of-type(2):nth-last-child(2),
    .info-table__row:nth-of-type(1):nth-last-child(3) {
        max-width: calc((100% - 16px) / 3);
    }
}

@media (max-width: 991.9px) and (min-width: 576px) {
    .info-table__row {
        max-width: calc((100% - 8px) / 2);
    }

    .info-table__row:nth-of-type(2n + 3):last-child,
    .info-table__row:only-child {
        max-width: 100%;
    }
}

@media (max-width: 575.9px) {
    .info-table {
        margin-top: 16px;
    }

    .info-table__row {
        max-width: 100%;
    }
}

.gallery {
    margin-top: 24px;
}

.gallery:first-child {
    margin-top: 0;
}

.gallery {
    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::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.gallery img,
.gallery video {
    user-select: none;
    pointer-events: none;
    max-height: 600px;
    object-fit: contain;
    width: fit-content;
}

.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;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.gallery__item-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px;
    z-index: 1;
    text-align: center;
}

@media (max-width: 575.9px) {
    .gallery__item--video .gallery__item-link::after {
        transform-origin: center;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@media (max-width: 575.9px) {
    .gallery {
        margin-top: 16px;
    }

    .gallery img,
    .gallery video {
        max-height: 410px;
    }
}

.bonus-card {
    margin-top: 50px;
    padding: 0 16px 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    border-bottom: 2px solid var(--card-bg-gradient-stop-2-color, #1c2122);
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    transition-property: border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.bonus-card:active {
    border-color: var(--line-secondary-color, #0b3b50);
}

.bonus-card:active>img,
.bonus-card:active>svg {
    transform: translateY(-8px);
}

@media (any-hover: hover) {
    .bonus-card:hover {
        border-color: var(--line-secondary-color, #0b3b50);
    }

    .bonus-card:hover>img,
    .bonus-card:hover>svg {
        transform: translateY(-8px);
    }

    .bonus-card:focus {
        border-color: var(--line-secondary-color, #0b3b50);
    }

    .bonus-card:focus>img,
    .bonus-card:focus>svg {
        transform: translateY(-8px);
    }
}

.bonus-card>img,
.bonus-card>svg {
    width: 146px;
    height: 139px;
    object-fit: contain;
    margin-top: -50px;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.bonus-card__badge {
    padding: 6px 12px;
    border-radius: 36px;
    background: var(--main-gradient-stop-1-color);
    color: var(--button-color);
    text-align: center;
    font-size: 0.875rem;
    line-height: 150%;
}

.bonus-card__badge--secondary {
    color: var(--button-color);
    background: var(--secondary-gradient-stop-1-color);
}

.bonus-card__name {
    color: var(--text-main, #fff);
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 130%;
}

.bonus-card__descr {
    margin-top: -10px;
    color: var(--text-secondary, #d8d8d8);
    text-align: center;
    font-size: 1.125rem;
    line-height: 150%;
}

.bonus-card .btn {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 575.9px) {

    .bonus-card>img,
    .bonus-card>svg {
        margin-bottom: 0;
    }

    .bonus-card__name {
        font-size: 1.25rem;
        line-height: 140%;
    }

    .bonus-card__descr {
        font-size: 1rem;
        line-height: 150%;
    }
}

.content-img {
    display: grid;
    grid-template-columns: 1fr fit-content(50%);
    grid-gap: 24px;
    margin-top: 30px;
}

.content-img.center {
    align-items: center;
}

.content-img__title {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-bottom: 0;
}

@media (max-width: 767.9px) {
    .content-img__title {
        grid-column-end: 1;
    }
}

.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;
    border-radius: 20px;
}

.content-img img:not(:first-child) {
    margin: 0;
}

.content-img--reversed {
    grid-template-columns: fit-content(50%) 1fr;
}

.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: 20; */
        margin-top: 16px;
    }

    .content-img__content {
        display: contents;
    }

    .content-img h2,
    .content-img h3,
    .content-img h4,
    .content-img h5,
    .content-img h6 {
        order: -10;
    }

    .content-img>img {
        width: 100%;
        order: -1;
    }

    .content-img .btn {
        width: 100%;
    }

    .content-img .btn:not(:first-child) {
        margin-top: 16px;
    }
}

.how-to {
    margin-top: 20px;
}

.how-to:first-child {
    margin-top: 0;
}

.how-to {
    counter-reset: how-to;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
}

.how-to__item {
    position: relative;
    counter-increment: how-to;
    padding-left: 58px;
    min-height: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.how-to__item::before {
    content: counter(how-to);
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--site-bg, #101211);
    text-align: center;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 130%;
    background: var(--accent-base, #59ccfe);
}

.how-to__item::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 0;
    height: calc(100% + 16px);
    width: 2px;
    background: var(--accent-base, #59ccfe);
}

.how-to__item-title {
    margin: 0;
    color: var(--text-main, #fff);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 140%;
}

.how-to__item p {
    color: var(--text-secondary, #d8d8d8);
    margin-top: 4px !important;
}


.how-to__item .btn {
    margin-top: 16px;
}

.how-to__item img {
    max-width: 100%;
    border-radius: 16px;
    margin-top: 16px;
}

.how-to__item img:first-child {
    margin-top: 0;
}

.how-to__item:last-child::after {
    display: none;
}

@media (max-width: 575.9px) {
    .how-to {
        margin-top: 16px;
    }

    .how-to__item {
        padding-left: 52px;
        min-height: 36px;
    }

    .how-to__item::before {
        width: 36px;
        height: 36px;
        font-weight: 600;
        font-size: 1.25rem;
        line-height: 140%;
    }

    .how-to__item::after {
        left: 18px;
        height: calc(100% + 16px);
    }
}

.payment-card {
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.payment-card__img {
    height: 94px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.payment-card__img img,
.payment-card__img svg {
    width: fit-content;
    max-height: 100%;
}

.payment-card__table {
    table-layout: fixed;
}

.payment-card__table th,
.payment-card__table td {
    border-top: 1px solid var(--line-color, #424242);
    color: var(--text-secondary, #d8d8d8);
    text-align: left;
    font-weight: 400;
    padding-block: 16px;
    padding-inline: 16px;
}

.payment-card__table th:first-child,
.payment-card__table td:first-child {
    padding-left: 16px;
}

.payment-card__table th:last-child,
.payment-card__table td:last-child {
    padding-right: 16px;
}

.payment-card__table th:not(:first-child),
.payment-card__table td:not(:first-child) {
    padding-left: 8px;
}

.payment-card__table th:not(:last-child),
.payment-card__table td:not(:last-child) {
    padding-right: 8px;
}

.payment-card__table th,
.payment-card__table td {
    font-size: 1rem;
    line-height: 150%;
}

.payment-card__table th:last-child,
.payment-card__table td:last-child {
    text-align: right;
}

.payment-card__table td {
    font-weight: 500;
    color: var(--text-main, #fff);
}

.social-links {
    margin-top: 16px;
}

.social-links:first-child {
    margin-top: 0;
}

.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links__item {
    display: flex;
}

.social-links__link {
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 36px;
    background: var(--footer-socials-bg, #282b2d);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.social-links__link svg,
.social-links__link img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

.social-links__link svg path {
    transition-property: fill;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

@media (any-hover: hover) {
    .social-links__link:hover svg path {
        fill: var(--accent-base, #59ccfe);
    }
}

.app-card {
    width: 343px;
    max-width: 100%;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
}

.app-card__wrap {
    padding: 16px 16px 0;
    border-radius: 16px;
    background: var(--card-secondary-bg, #282b2d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.app-card__wrap img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.app-card__text {
    color: var(--text-main, #fff);
    text-align: center;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 140%;
}

.app-card__table td,
.app-card__table th {
    padding-block: 12px;
    padding-inline: 0;
}

.app-card__table td:first-child,
.app-card__table th:first-child {
    padding-left: 0;
}

.app-card__table td:last-child,
.app-card__table th:last-child {
    padding-right: 0;
}

.app-card__table td:not(:first-child),
.app-card__table th:not(:first-child) {
    padding-left: 8px;
}

.app-card__table td:not(:last-child),
.app-card__table th:not(:last-child) {
    padding-right: 8px;
}

.app-card__table td,
.app-card__table th {
    border-bottom: 1px solid var(--line-color, #424242);
    color: var(--text-secondary, #d8d8d8);
    text-align: left;
    font-size: 1rem;
    line-height: 150%;
}

.app-card__table td:last-child,
.app-card__table th:last-child {
    text-align: right;
}

.app-card__table th {
    font-weight: 400;
}

.app-card__table td {
    font-weight: 500;
    color: var(--text-main, #fff);
}

.app-card__table tr:first-child td,
.app-card__table tr:first-child th {
    padding-top: 0;
}

.app-card__table tr:last-child td,
.app-card__table tr:last-child th {
    padding-bottom: 0;
    border-bottom: 0;
}

.app-card__rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
}

.app-card__rating::before,
.app-card__rating::after {
    content: "";
    font-size: 20px;
    line-height: 18px;
    height: 20px;
    letter-spacing: 0px;
    font-weight: 100;
}

.app-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;
}

.app-card__rating::after {
    content: "☆☆☆☆☆";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    letter-spacing: 0px;
    color: var(--star-color);
}

@supports (mask: url(#)) {

    .app-card__rating::before,
    .app-card__rating::after {
        content: "";
        width: 100px;
        height: 20px;
        color: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
    }

    .app-card__rating::before {
        background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
        -webkit-mask: url('data:image/svg+xml,<svg width="160" height="32" viewBox="0 0 160 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.768-.558l2.415-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036z" fill="%23FF8F4A" stroke="%23FF8F4A"/></svg>');
        mask: url('data:image/svg+xml,<svg width="160" height="32" viewBox="0 0 160 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.768-.558l2.415-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.544 1.677l2.416 7.438a.5.5 0 0 1-.769.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822c.649 0 1.225-.419 1.425-1.036z" fill="%23FF8F4A" stroke="%23FF8F4A"/></svg>');
        -webkit-mask-size: contain;
        mask-size: contain;
    }

    .app-card__rating::after {
        background: var(--star-color);
        -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="32" viewBox="0 0 160 32" fill="none"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036z" stroke="%23FF8F4A"/></svg>');
        mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="32" viewBox="0 0 160 32" fill="none"><path d="M15.524 3.082a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0L8.791 26.73a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677L3.566 12.46a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036zm32 0a.5.5 0 0 1 .952 0l2.417 7.438a1.5 1.5 0 0 0 1.425 1.036h7.822a.5.5 0 0 1 .294.904l-6.328 4.597a1.5 1.5 0 0 0-.545 1.677l2.416 7.438a.5.5 0 0 1-.768.558l-6.327-4.596a1.5 1.5 0 0 0-1.764 0l-6.327 4.596a.5.5 0 0 1-.769-.558l2.416-7.438a1.5 1.5 0 0 0-.544-1.677l-6.328-4.597a.5.5 0 0 1 .294-.904h7.822a1.5 1.5 0 0 0 1.425-1.036z" stroke="%23FF8F4A"/></svg>');
        -webkit-mask-size: contain;
        mask-size: contain;
    }
}

.app-card__rating {
    flex-direction: row-reverse;
}

.app-card__btns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
}

.app-card__btns .btn {
    width: 100%;
}

@media (max-width: 991.9px) {
    .app-card {
        width: 320px;
    }
}

@media (max-width: 767.9px) {
    .app-card {
        width: 100%;
    }
}

@media (max-width: 575.9px) {
    .app-card__wrap {
        order: -2;
    }

    .app-card__btns {
        order: -1;
    }
}

.steps-block {
    margin-top: 20px;
}

.steps-block:first-child {
    margin-top: 0;
}

.steps-block {
    counter-reset: how-to;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 16px;
}

.steps-block__item {
    counter-increment: how-to;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
}

.steps-block__item-title {
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--text-main, #fff);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 140%;
}

.steps-block__item-descr {
    margin-top: 8px;
}

.steps-block__item>.btn {
    width: 100%;
    margin-top: auto;
}

.steps-block__item>img {
    align-self: center;
    max-width: 100%;
    max-height: 343px;
}

.steps-block__wrap {
    border-radius: 12px 0 0 0;
    border-left: 1px solid var(--line-color, #424242);
    padding-left: 16px;
}

.steps-block__wrap::before {
    content: "Step " counter(how-to);
    display: block;
    width: calc(100% + 16px);
    margin-left: -16px;
    padding: 4px 12px;
    border-radius: 12px 12px 12px 0;
    background: var(--line-color, #424242);
    color: var(--button-color, #fff);
    margin-bottom: 12px;
}

@media (max-width: 575.9px) {
    .steps-block {
        margin-top: 16px;
        grid-template-columns: 1fr;
    }
}

.app-banner {
    position: relative;
    border-radius: 20px;
    background-image: var(--app-banner-desk, url("../images/app-banner-desk.webp")), linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
    background-position: right center;
    background-size: cover;
    padding: 48px;
    min-height: 295px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 466px;
    gap: 48px;
    margin-top: 20px;
}

.app-banner:first-child {
    margin-top: 0;
}

.app-banner {
    overflow: hidden;
}

.app-banner__wrap {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.app-banner__title {
    color: var(--text-main, #fff);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 130%;
}

.app-banner__descr {
    margin-top: 8px;
    color: var(--text-main, #fff);
    font-size: 1rem;
    line-height: 150%;
}

.app-banner__descr a {
    text-decoration: underline;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    color: var(--button-color-default, #101211);
}

@media (any-hover: hover) {
    .app-banner__descr a:hover {
        text-decoration: none;
    }
}

.app-banner__btns {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .app-banner>img {
        position: absolute;
        right: -32px;
        top: 50%;
        transform: translateY(-46%);
        max-width: 498px;
    }
}

@media (max-width: 991.9px) {
    .app-banner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
        background-image: var(--app-banner-mob, url("../images/app-banner-mob.webp")), linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
        background-position: bottom center;
        padding-bottom: 0;
    }

    .app-banner>img {
        align-self: center;
        position: relative;
        margin-inline: -48px;
        margin-bottom: -40px;
    }
}

@media (max-width: 575.9px) {
    .app-banner {
        padding: 16px 16px 0;
        gap: 0;
        margin-top: 16px;
    }

    .app-banner__btns {
        flex-direction: column;
        align-items: stretch;
    }

    .app-banner__btns .btn {
        width: 100%;
    }

    .app-banner>img {
        margin-inline: 0 -16px;
        margin-bottom: -73px;
        max-width: 367px;
        margin-top: -13px;
    }
}

.hero-bonus {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.hero-bonus>img {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

.hero-bonus__wrap {
    margin-top: -50px;
    border-radius: 20px;
    padding: 66px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background-image: var(--bonus-bg-mob, url("../images/bonus-bg-mob.webp")), linear-gradient(to bottom, var(--main-gradient-stop-1-color) 0%, var(--main-gradient-stop-1-color) 50%, var(--main-gradient-stop-2-color) 100%);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bonus__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    color: var(--button-color, #fff);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 130%;
}

.hero-bonus__btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-bonus__btns>* {
    flex: 1;
}

.hero-bonus__btns>.btn {
    width: unset;
    padding: 12px;
}

@media (max-width: 991.9px) {
    .hero-bonus {
        max-width: 420px;
    }

    .hero-bonus__btns {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 767.9px) {
    .hero-bonus {
        max-width: 100%;
    }
}

@media (max-width: 575.9px) {
    .hero-bonus__text {
        font-weight: 600;
        font-size: 1.25rem;
        line-height: 140%;
    }
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.header__nav .app-buttons {
    flex-wrap: wrap;
}

.app-button {
    height: fit-content;
    min-width: 150px;
    padding: 6px 21px;

}

.app-button svg {
    width: 26px;
    height: 26px;
}

.app-button>span>span {
    display: block;
}

.app-button>span>span:first-child {
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 575.9px) {
    .footer .app-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer .app-buttons button {
        width: 100%;
        padding: 12px;
        font-size: 12px;
    }

    .footer .app-buttons button svg {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }
}

/* bonus anim */
.bonus {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    grid-template-columns: 1fr auto;
    border-radius: 16px;
    border: 2px solid var(--main-gradient-stop-1-color);
    background-color: var(--main-gradient-stop-2-color);
    padding: 20px;
    gap: 8px 12px;
    min-height: 240px;
    width: 100%;
}

.bonus._anim-border {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.bonus._anim-border:before,
.bonus._anim-border:after {
    content: '';
    position: absolute;
    margin: auto;
}

.bonus._anim-border:before {
    width: 1000px;
    top: 0;
    height: 1000px;
    right: 0;
    bottom: 0;
    left: -200px;
    animation: rotate 2s linear infinite;
    z-index: -1;
}

.bonus._anim-border:before {
    background: conic-gradient(var(--secondary-gradient-stop-1-color), transparent);
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.bonus._anim-border:after {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    /* background-color: #013E29; */
    border-radius: 14px;
    z-index: 0;
}

.bonus._anim-border>* {
    z-index: 1;
}

.bonus b,
.bonus strong {
    color: var(--main-gradient-stop-1-color);
    /* text-shadow: 0px 0px 8px rgba(249, 203, 22, 0.50); */
}

.bonus .bonus__title {
    grid-row: 1/2;
    grid-column: 1/2;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-main, #fff);
}

.bonus .bonus__description {
    grid-row: 2/3;
    grid-column: 1/2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(var(--text-secondary), #fff);
    margin-top: 0;
}

.bonus .get-image {
    grid-row: 1/-1;
    grid-column: 2/3;
    min-width: 146px;
}

.bonus .promocode {
    margin-top: 12px;
}

.bonus__button {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 320px;
    justify-content: space-between;
    grid-row: 4/5;
    grid-column: 1/2;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    border: none;
    width: fit-content;
    cursor: pointer;
}

.bonus.v2 {
    gap: 12px;
    padding: 16px;
}

.bonus.v2 .bonus__button {
    min-width: 240px;
}

.bonus.v2 .bonus__button._arrow-btn {
    padding: 10px 12px;
}

@media (max-width: 1200px) {
    .bonus .bonus__title {
        grid-row: 1/2;
        grid-column: 1/3;
    }

    .bonus .bonus__description {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .bonus .get-image {
        min-width: 78px;
        grid-row: 2/3;
        grid-column: 2/3;
        align-self: start;
        max-width: 110px;
    }

    .bonus.v2 .get-image {
        max-width: 126px;
    }

    .bonus .promocode {
        grid-row: 3/4;
        grid-column: 1/3;
    }

    .bonus .promocode-field {
        max-width: unset;
    }

    .bonus__button {
        min-width: unset;
        width: 100%;
    }

    .bonus .bonus__button {
        grid-row: 4/5;
        grid-column: 1/3;
    }

    .bonus.v2 {
        grid-template-rows: auto 1fr auto;
    }

    .bonus.v2 .bonus__button {
        grid-row: 3/4;
    }
}

@media (max-width: 768px) {
    .bonus {
        padding: 16px;
        gap: 16px 12px;
        min-height: unset;
    }

    .bonus .bonus__title {
        font-size: 20px;
        font-weight: 900;
        line-height: 24px;
    }

    .bonus .get-image {
        max-width: 78px;
    }

    .bonus .promocode {
        margin-top: -12px;
    }

    .bonus.v2 {
        gap: 8px;
    }

    .bonus.v2 .bonus__title {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .bonus.v2 .bonus__description {
        grid-column: 1/3;
    }

    .bonus.v2 .get-image {
        grid-row: 1/2;
        grid-column: 2/3;
    }

    .bonus.v2 .get-image img {
        max-width: 114px;
    }
}

.bonus__button._gift-btn {
    padding: 12px 12px 12px 64px;

}


.bonus__button._arrow-btn {

    padding: 12px;
}



.bonus__button._gift-btn:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 6px;
    width: 52px;
    min-width: 52px;
    height: 52px;
    background-image: url(../images/mini-gift.webp);
    background-position: center;
    background-repeat: no-repeat;
    animation: move 2s infinite;
}

@keyframes move {
    50% {
        transform: translateY(-5px) rotate(15deg);
    }

    70% {
        transform: translateY(-5px) rotate(5deg)
    }
}

.bonus__button._gift-btn:after {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-color: var(--text-main, #fff);
    mask-image: url(../images/user.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transition: background-color 0.3s ease;
}

/* .bonus__button._gift-btn:hover:after {
    background-color: var(--main-gradient-stop-1-color);
} */

.bonus__button._arrow-btn:after {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url(../images/btn-arrows.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.bonus._anim-border:after {
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
}

.wp-block-group {
    display: flex;
    gap: 1rem;
}

@media (max-width: 992px) {
    .wp-block-group {
        flex-wrap: wrap;
    }
}

.content-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.content-buttons.align-left {
    justify-content: flex-start;
}

.content-buttons.align-center {
    justify-content: center;
}

.content-buttons.align-right {
    justify-content: flex-end;
}


.header__lang {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
    width: 73px;
    height: 32px;
    min-width: max-content;
    padding: 6px 8px;
    border-radius: 10px;
    background: var(--card-bg, rgba(255, 255, 255, .08));
    cursor: pointer;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background;
    color: var(--text-main, #fff);
}

.header__lang-list-link {
    display: flex;
    align-items: center;
}

.header__lang.active::after {
    transform: rotate(-180deg)
}

.header__lang::after {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M16.667 7.419 15.1 5.833l-5.1 5.15-5.1-5.15L3.333 7.42 10 14.167z'%3E%3C/path%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M16.667 7.419 15.1 5.833l-5.1 5.15-5.1-5.15L3.333 7.42 10 14.167z'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: currentColor;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: transform
}

.header__lang.active .header__lang-list {
    display: block
}

.header__lang img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 4px
}

.header__lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-height: 300px;
    overflow: hidden auto;
    border-radius: 4px;
    padding: 8px;
    background: var(--card-bg, #3b373d);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25)
}

@supports not selector(::-webkit-scrollbar) {
    .header__lang-list {
        scrollbar-width: thin;
        scrollbar-color: rgba(208, 216, 232, .3098039216) transparent
    }
}

.header__lang-list::-webkit-scrollbar {
    width: 4px
}

.header__lang-list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(208, 216, 232, .3098039216);
    border-radius: 9px;
    border: 4px solid transparent
}

.header__lang-list::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 9px
}

.header__lang-item {
    display: flex;
    align-items: center;
    color: var(--text-color, #fff);
    padding: 8px;
    font-size: .875rem;
    border-radius: 4px;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background
}

.header__lang-item.current {
    background: var(--card-bg, rgba(255, 255, 255, .08));
    pointer-events: none
}

.header__lang-item:not(.current):active {
    background: var(--card-bg, rgba(255, 255, 255, .08))
}

.header__lang-item img {
    margin-right: 8px
}

/*
    Demo
 */
.demo-block {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 992.98px) {
    .demo-block.demo {
        --bs-aspect-ratio: 65%;
    }
}

@media (max-width: 660.98px) {
    .demo-block.demo {
        --bs-aspect-ratio: 178%;
    }
}

@media (max-width: 991px) {
    .demo-block {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

.demo-block iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.demo-block__bg {
    border-radius: 16px;
    overflow: hidden;
    position: absolute;
    inset: 0;
    transition: all 0.3s ease 0s;
}

.demo-block__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0000003c;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.demo-block__bg.hidden {
    visibility: hidden;
    opacity: 0;
}

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

.demo-block__btns {
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: grid;
    grid-gap: 10px;
    width: fit-content;
    height: 95px;
    transition: all 0.3s ease 0s;
}

.demo-block__btns button {
    height: 100%;
    width: 100%;
}

.demo-block__btns.hidden {
    visibility: hidden;
    opacity: 0;
}

.ratio-1x1 {
    padding-top: 100%;
}

.ratio-4x3 {
    padding-top: calc(3 / 4 * 100%);
}

.ratio-16x9 {
    padding-top: calc(9 / 16 * 100%);
}

.ratio-21x9 {
    padding-top: calc(9 / 21 * 100%);
}

/**
    Cards
 */
.sites-list {
    width: 100%;
    margin-top: 30px;
}



.sites-list__body {
    display: grid;
    grid-gap: 24px;
}

.sites-list__item {
    border-radius: 16px;
    padding: 16px;
    background: linear-gradient(180deg, var(--card-bg-gradient-stop-1-color) 45.97%, var(--card-bg-gradient-stop-2-color) 100%);
    position: relative;
    display: grid;
    grid-template-columns: 218px 294px 1fr 200px;
    grid-gap: 24px;
    align-items: center;
}

.sites-list__item--label {
    margin-top: 10px;
}

@media (max-width: 991.98px) {
    .sites-list__item {
        grid-template-columns: 1fr;
    }
}

.sites-list__item.top {
    margin: 56px 12px 12px 12px;
}

/* .sites-list__item.top::before {
    content: "";
    border-radius: 16px;
    background: var(--primary-red, #BE0C34);
    position: absolute;
    inset: 0;
    margin: -56px -12px -12px -12px;
    z-index: -1;
} */

.sites-list__block--title {
    gap: 12px;
    display: grid;
    grid-template-columns: 80px 1fr;
}

.sites-list__block--title img {
    background: var(--card-secondary-bg, #1B1C1D);
    border-radius: 16px;
    height: 103px;
    padding: 23px 35px 24px 34px;
    grid-column-start: 1;
    grid-column-end: 3;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 991.98px) {
    .sites-list__block--title img {
        grid-column-end: 1;
        grid-row-end: 3;
        grid-row-start: 1;
        width: 80px;
        height: 80px;
        padding: 20px 3px;
    }
}

.sites-list__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 0;
}

.sites-list__rate {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .sites-list__rate {
        margin-left: 0;
    }
}

.sites-list__rate svg {
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
    margin-left: 6px;
    vertical-align: baseline;
}

.sites-list__rate small {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(var(--text-secondary));
}

.sites-list__info {
    position: absolute;
    top: 0;
    border-radius: 12px 12px 0 0;
    background: var(--main-gradient-stop-1-color);
    padding: 10px 22px;
    color: var(--button-color);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 111%;
    font-weight: 500;
    font-size: 18px;
    height: 25px;
    top: -25px;
    left: 120px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.sites-list__info-secondary {
    background: var(--secondary-gradient-stop-1-color);
}

@media (max-width: 991.98px) {
    .sites-list__info {
        left: 50%;
    }
}

.sites-list__info svg {
    width: 24px;
    height: 24px;
}

.sites-list__block--bonus {
    border-radius: 16px;
    border-bottom: 2px solid var(--line-secondary-color);
    background: var(--card-secondary-bg);
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.sites-list__block--bonus .promo-block {
    margin-top: 10px;
}

.sites-list__block--bonus .promo-block svg {
    color: var(--primary-red, #BE0C34);
}

.sites-list__block--bonus>p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    gap: 6px;
    margin-bottom: 12px;
}

.sites-list__block--bonus p svg {
    width: 24px;
    height: 24px;
    position: relative;
    top: -2px;
}

.sites-list__block--bonus b {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.sites-list__block--list ul {
    display: grid;
    grid-gap: 8px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sites-list__block--btns {
    display: grid;
    grid-gap: 12px;
    text-align: center;
}

.sites-list__block--btns button {
    width: 100%;
}