@charset "UTF-8";
:root {
    --color-header: #272627;
    --color-header-navigation-link: #f8e0a2;
    --color-header-navigation-link-hover: #ffffff;
    --color-first-button: #000000;
    --color-first-button-bg: #f8e0a2;
    --color-second-button: #000000;
    --color-second-button-bg: #f8e0a2;
    --color-body: #000000;
    --color-text: #e3e3e3;
    --color-title: #ffffff;
    --color-link: #f8e0a2;
    --color-accent: #272627;
    --color-body-thumb: #272627;
    --color-body-track: #000000;
    --color-footer: #272627;
    --color-footer-navigation-link: #f8e0a2;
    --color-footer-navigation-link-hover: #ffffff;
    --color-footer-text: #ffffff;
    --color-content-button-bg: #f8e0a2;
    --color-content-button: #000000;
    --content-button-gradient: #f8e0a2;
    --color-scroll-to-top: #272627;
    --color-arrow-scroll-to-top: #f8e0a2;
    --color-table-bg: #000000;
    --color-table-border: #272627;
    --color-table-th-bg: #272627;
    --color-table-th-color: #f8e0a2;
    --color-table-td-color: #e3e3e3;
    --color-blocks-text-image: #000000;
    --color-faq-item: #272627;
    --color-faq-item-open: #272627;
    --color-faq-item-title: #ffffff;
    --color-faq-item-title-open: #f8e0a2;
    --color-toc-bg: #272627;
    --color-toc-title: #f8e0a2;
    --color-toc-item: #272627;
    --color-toc-item-hover: #f8e0a2;
    --color-field: #000000;
    --color-field-bg: #ffffff;
    --color-purple: #272627;
    --green: #0B9F45;
    --color-yellow: #f8e0a2;
    --color-lilac: #f8e0a2;
    --color-white: #ffffff;
}

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

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

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

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

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

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

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

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

:root {
    --ff-primary: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

:active, :focus {
    outline: 0
}

a:active, a:focus {
    outline: 0
}

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

body, html {
    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%
}

body::-webkit-scrollbar {
    width: 10px
}

body::-webkit-scrollbar-track {
    background: var(--color-body-track)
}

body::-webkit-scrollbar-thumb {
    background: var(--color-body-thumb);
    border-radius: 10px
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 55;
    opacity: 10
}

.scroll-top__button {
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-scroll-to-top);
    color: var(--color-title);
    text-shadow: 1px 1px 2px #000;
    font-size: 20px
}

.scroll-top__button svg {
    fill: var(--color-arrow-scroll-to-top)
}

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

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

button {
    cursor: pointer
}

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

a, a:visited {
    text-decoration: none
}

a {
    color: var(--color-link)
}


@media (hover: hover) {
    .btn:hover {
        transform: scale(.96);
    }

    a:hover {
        text-decoration: none;
        opacity: .8;
    }

}

ul li {
    list-style: none
}

img {
    vertical-align: top;
    height: auto
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.875rem;
    font-style: normal;
    line-height: 2.25rem;
    text-transform: uppercase
}

h1 {
    font-size: 2.25rem;
    line-height: 2.75rem
}
.main-container h2:first-child {
    margin-top: 0
}

.align-left {
    text-align: left
}

.align-center {
    text-align: center
}

.align-right {
    text-align: right
}

.ad-section-v2 img {
    max-width: 4.25rem;
    max-height: 4.25rem;
    width: 100%;
    object-fit: contain
}

.item {
    padding: .75rem;
    border-radius: .75rem;
    background: var(--color-accent);
}

@media (max-width: 768px) {
    .ad-section-v2 {
        display: flex;
        gap: .3125rem;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto
    }
}

.ad-section-v2 {
    margin-top: .625rem;
    position: sticky;
    bottom: 0;
    padding: .25rem .75rem 0 .25rem;
    background: #fff;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: .125rem
}

.page-404__title {
    color: var(--color-text);
    font-size: 100px;
    text-align: center;
    margin: 50px 0 19px 0;
    line-height: 75px;
}

.page-404__subtitle {
    color: var(--color-text);
    font-size: 35px;
    text-align: center;
    margin: 0 0 20px 0
}

.page-404__link {
    margin: auto
}

.main-breadcrumbs {
    margin-top: 8px;
    width: 100%;
}

.main-breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 4px
}

.main-breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin: .5rem 0
}

.main-breadcrumbs-item {
    text-align: left;
    color: var(--color-text)
}

.main-breadcrumbs-item-second {
    text-align: left;
    color: var(--color-lilac, #ffdc41)
}

.main-breadcrumbs__link--first {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-text-image__text .wp-block-table {
    margin-top: 0;
}

.wp-block-table table thead tr:first-child td:first-child, .wp-block-table table tbody tr:first-child th:first-child {
    min-width: 10rem;
    border-radius: 12px 0 0 0
}

.wp-block-table table thead td, .wp-block-table table th {
    color: var(--color-title);
    text-align: center;
    font-weight: 700;
    background: var(--color-purple);
}

[class*=" icon-font__"]:before, [class^=icon-font__]:before {
    font-family: icons;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-font__deposit:before {
    content: "\e901";
    color: #fff
}

.icon-font__casino:before {
    content: "\e902";
    color: #fff
}

.icon-font__bonus:before {
    content: "\e903";
    color: #fff
}

.icon-font__reg:before {
    content: "\e904";
    color: #fff
}

.icon-font__app:before {
    content: "\e905";
    color: #fff
}

.align-items-center {
    align-items: center
}

.align-items-top {
    align-items: start
}

.align-items-bottom {
    align-items: end
}

.main-text-image-first-child {
    order: 2
}

.main-text-image-last-child {
    order: 1
}

.main-wrapper {
    margin-top: 2.75rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.main-auto-toc ul {
    display: none
}

.main-auto-toc.active ul {
    display: flex
}

.main-auto-toc > ul > li {
    position: relative;
    padding: .5rem .75rem;
    border-radius: .5rem;
    border: 1px solid var(--color-toc-item-hover, #beade4);
    overflow: hidden;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: var(--color-toc-item);
    width: fit-content;
    margin-bottom: 10px
}

.main-auto-toc > ul > li > a {
    color: var(--color-text, #e3e3e3);
}

.main-auto-toc > ul > li::after {
    position: absolute;
    content: "";
    top: 0;
    left: -300%;
    height: 100%;
    width: 5rem;
    background: rgba(190, 173, 228, .4);
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg)
}

.main-auto-toc > ul > li::before {
    content: none
}

.main-auto-toc > ul > li:hover {
    -webkit-box-shadow: 0 0 8px 1px var(--color-lilac, #ffdc41);
    box-shadow: 0 0 8px 1px var(--color-lilac, #ffdc41)
}

.main-auto-toc > ul > li:hover::after {
    -webkit-animation: identifier .35s linear;
    animation: identifier .35s linear
}

.main-info__item--betaalmethoden .main-info__item-borg:last-child::after {
    content: none
}

@media (max-width: 576px) {
    .main-wrapper {
        margin-top: 2rem;
        padding-bottom: 2rem
    }
}

.main-wrapper:first-child {
    margin-top: 24px;
}

.main-wrapper:last-child {
    border-bottom: none;
}

.main-wrapper--without-border {
    border-bottom: none;
    padding-bottom: 0
}

.main-wrapper ol:not([class]), ol.wp-block-list {
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--color-text, #e3e3e3);
    counter-reset: MyCounter;
    list-style: none
}

.main-wrapper ol:not([class]) li, ol.wp-block-list li {
    position: relative;
    counter-increment: MyCounter;
    padding-bottom: 1rem;
    padding-left: 2.125rem
}

.main-wrapper ol:not([class]) li:last-child, ol.wp-block-list li:last-child {
    padding-bottom: 0
}

.main-wrapper ol:not([class]) li:last-child::after, ol.wp-block-list li:last-child::after {
    display: none
}

.main-wrapper ol:not([class]) li::before, ol.wp-block-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(MyCounter);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid var(--color-purple);
    color: var(--color-yellow, #ffdc41);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .625rem
}

.main-wrapper ol:not([class]) li::after, ol.wp-block-list li::after {
    position: absolute;
    content: "";
    top: 1.5rem;
    left: .75rem;
    width: .0625rem;
    height: calc(100% - 1.5rem);
    background: var(--color-purple)
}

.main-wrapper * + ul:not([class]), * + ul.wp-block-list {
    margin-top: 1rem;
}

.main-wrapper ul:not([class]), ul.wp-block-list {
    color: var(--color-text, #e3e3e3);
    counter-reset: Counter;
    display: flex;
    flex-direction: column
}

.main-wrapper ul:not([class]) li, ul.wp-block-list li {
    position: relative;
    counter-increment: Counter;
    padding-bottom: 1rem;
    padding-left: 1rem
}

.main-wrapper ul:not([class]) li:last-child, ul.wp-block-list li:last-child {
    padding-bottom: 0
}

.main-wrapper ul:not([class]) li::before, ul.wp-block-list li::before {
    position: absolute;
    top: 5px;
    left: 0;
    content: '';
    background: var(--color-purple);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin-right: .625rem
}

.main-container {
    margin-left: auto;
    margin-right: auto;
}

.main-container > *, .main-header > * {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1380px) {
    .main-container, .main-header__content {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.btn {
    position: relative;
    display: block;
    max-width: 11.875rem;
    padding: .6875rem 1.25rem;
    gap: .625rem;
    border-radius: .5rem;
    color: #1e1e28;
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    cursor: pointer
}

.btn:hover {
    transform: scale(.96)
}

.btn svg {
    display: none
}

.btn--primary {
    background: var(--color-content-button-bg);
    color: var(--color-content-button)
}

.btn--secondary {
    border: 1px solid var(--color-lilac, #ffdc41);
    background: 0 0;
    color: var(--color-lilac, #ffdc41)
}

.btn--white {
    background: #fff
}

.btn--full-width {
    display: block;
    width: 100%;
    max-width: unset;
    padding: 1.1rem 2rem;
}

.main-hero__welcome-bonus-btn {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
}

.btn--with-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem
}

.btn--with-svg svg {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem
}

.main-mp-hero__info {
    margin: 1.5rem 0
}

.main-text-image {
    display: -ms-grid;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main-text-image > p {
    font-family: var(--ff-primary);
    font-weight: 400
}

.main-text-image h1.main-text-image__title {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.75rem;
    text-transform: uppercase
}

.main-text-image.main-container {
    margin-top: 2.75rem;
    background-color: var(--color-blocks-text-image)
}

.main-text-image {
    margin-top: 1.5rem
}

.main-text-image--wrapp {
    border-radius: 12px
}

.main-text-image--wrapp .main-text-image__text {
    padding: 16px
}

@media (max-width: 576px) {
    .main-text-image h1.main-text-image__title {
        font-size: 1.75rem;
        line-height: 2.25rem
    }

    .main-mp-hero__info {
        margin: 1.5rem 0
    }
}

.main-text-image__title {
    grid-column: 1/-1;
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
    text-transform: uppercase
}

@media (max-width: 576px) {
    .main-text-image__title {
        font-size: 1.5rem;
        line-height: 1.75rem
    }
}

.main-text-image__text {
    max-width: 36.75rem
}

@media (max-width: 1000px) {
    .main-text-image__text {
        max-width: 100%;
        grid-column: 1/-1;
    }

    .main-mp-hero__info {
        order: 1
    }
}

.main-text-image__text {
    display: flex;
    flex-direction: column
}

.main-text-image__text p {
    margin-bottom: 1.0625rem;
}

.main-text-image__text p:last-child {
    margin-bottom: 0
}

.main-text-image img {
    object-fit: contain;
    width: 100%;
    border-radius: 12px
}

@media (max-width: 1000px) {
    .main-text-image img {
        max-width: 100%;
        width: 100%;
        grid-column: 1/-1;
    }
}


@media (max-width: 576px) {
    .main-promocode {
        padding: 1.25rem
    }
}

.main-promocode__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

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

.main-promocode__main-content {
    position: relative;
    gap: .9375rem;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media (max-width: 768px) {
    .main-promocode__main-content {
        max-width: 100%;
        padding-right: 0
    }
}

.main-promocode__title {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main-promocode__description {
    position: relative;
    color: var(--color-title);
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    padding-bottom: 1.25rem
}

.main-promocode__description::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, color-stop(-7.11%, rgba(126, 172, 47, 0)), color-stop(50.12%, #7eac2f), color-stop(107.93%, rgba(126, 172, 47, 0)));
    background: linear-gradient(270deg, rgba(126, 172, 47, 0) -7.11%, #7eac2f 50.12%, rgba(126, 172, 47, 0) 107.93%)
}

.main-promocode__description span {
    color: #a7dc4c;
    font-weight: 700
}

.main-promocode__registration {
    display: flex;
    align-items: flex-start;
    gap: 1.875rem
}

@media (max-width: 768px) {
    .main-promocode__registration {
        flex-direction: column
    }
}

.main-promocode__bonuses-list {
    min-width: 17.3125rem
}

/*.main-promocode__bonuses-list li {*/
/*    list-style: none;*/
/*    padding-bottom: 1.0625rem;*/
/*    color: var(--color-title);*/
/*    font-family: Montserrat;*/
/*    font-size: 1.125rem;*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    line-height: 1.5rem*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .main-promocode__bonuses-list li {*/
/*        font-size: .9375rem;*/
/*        line-height: 1.25rem*/
/*    }*/
/*}*/

/*.main-promocode__bonuses-list li::before {*/
/*    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7' viewBox='0 0 7 7' fill='none'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23A7DC4C'/%3E%3C/svg%3E");*/
/*    display: inline-block;*/
/*    margin-right: .625rem;*/
/*    text-align: center;*/
/*    height: .4375rem;*/
/*    width: .4375rem;*/
/*    transform: translateY(-50%)*/
/*}*/

/*.main-promocode__bonuses-list li:last-child {*/
/*    padding-bottom: 0*/
/*}*/

/*.main-promocode__bonuses-list li span {*/
/*    color: #a7dc4c;*/
/*    font-weight: 700*/
/*}*/

.main-promocode__input {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

@media (max-width: 768px) {
    .main-promocode__input {
        width: 100%;
        align-self: center
    }
}

.main-promocode__input-copy-block {
    width: 100%;
    height: 3.25rem;
    gap: .25rem;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .125rem
}

.main-promocode__input input {
    max-width: 11.875rem;
    color: #a7dc4c;
    background-color: transparent;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    padding: 1rem 1.25rem
}

.main-promocode__input .btn {
    padding: 1rem 2rem
}

.main-promocode__copy-btn {
    padding: .75rem 1.25rem;
    min-width: 5.25rem;
    min-height: 2.375rem;
    height: 100%;
    border-radius: 3px;
    background: #185a8a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    color: var(--color-title);
    font-family: "TT Firs Neue";
    font-size: .875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.main-promocode__copy-btn:hover {
    -webkit-transform: scale(.97);
    -ms-transform: scale(.97);
    transform: scale(.97)
}

.main-promocode__copy-btn.copied {
    background-color: #10ec10
}

.main-promocode__copy-btn svg {
    width: 1.25rem;
    height: 1.25rem
}

.main-promocode__copy-btn svg use {
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.main-promocode__copy-btn:hover use {
    scale: 1.02
}

@media (max-width: 576px) {
    .main-promocode {
        width: 100%
    }
}

@media (max-width: 1380px) {
    .main-promocode__main-content {
        flex-direction: column
    }
}

.pp-promocode {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-radius: .625rem;
    gap: 1.375rem;
    overflow: hidden
}

@media (max-width: 768px) {
    .pp-promocode {
        width: 100%;
        flex-direction: column;
        gap: .3125rem
    }
}

.pp-promocode__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

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

.pp-promocode__main-content {
    position: relative;
    gap: .5rem;
    -ms-flex: 1;
    flex: 1;
    max-width: 15.375rem;
    display: flex;
    flex-direction: column
}

@media (max-width: 768px) {
    .pp-promocode__main-content {
        max-width: 100%;
        padding-right: 0
    }
}

@media (max-width: 390px) {
    .pp-promocode__main-content {
        max-width: 95%;
        margin: 0 auto
    }
}

.pp-promocode__title {
    color: var(--color-title);
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left
}

@media (max-width: 390px) {
    .pp-promocode__title {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        text-align: center
    }
}

.pp-promocode__description {
    color: var(--color-title);
    font-family: Montserrat;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

@media (max-width: 576px) {
    .pp-promocode__description {
        font-size: .875rem
    }
}

@media (max-width: 390px) {
    .pp-promocode__description {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        text-align: center
    }
}

.pp-promocode__description span {
    color: #a7dc4c;
    font-weight: 700
}

.pp-promocode__time {
    color: var(--color-title);
    font-family: Montserrat;
    font-size: .875rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem
}

@media (max-width: 390px) {
    .pp-promocode__time {
        order: 2;
        text-align: center
    }
}

.pp-promocode > svg {
    position: relative;
    width: 3.125rem;
    height: 2.5rem;
    align-self: center
}

@media (max-width: 390px) {
    .pp-promocode > svg {
        -webkit-transform: translate(-90%, -20%) scaleX(-1) rotate(90deg);
        -ms-transform: translate(-90%, -20%) scaleX(-1) rotate(90deg);
        transform: translate(-90%, -20%) scaleX(-1) rotate(90deg)
    }
}

.pp-promocode__input {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    max-width: 16.625rem
}

@media (max-width: 768px) {
    .pp-promocode__input {
        max-width: 100%;
        width: 100%
    }
}

.pp-promocode__input-copy-block {
    width: 100%;
    height: 3.25rem;
    gap: .25rem;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .125rem
}

.pp-promocode__input input {
    max-width: 10.625rem;
    color: #a7dc4c;
    background-color: transparent;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    padding: 1rem .3125rem 1rem 1.25rem
}

.pp-promocode__input .btn {
    padding: 1rem 2rem
}

.pp-promocode__copy-btn {
    padding: .75rem .625rem;
    min-width: 5.375rem;
    min-height: 2.375rem;
    height: 100%;
    border-radius: 3px;
    background: #093056;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    color: var(--color-title);
    font-family: "TT Firs Neue";
    font-size: .875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.pp-promocode__copy-btn:hover {
    -webkit-transform: scale(.97);
    -ms-transform: scale(.97);
    transform: scale(.97)
}

.pp-promocode__copy-btn.copied {
    background-color: #10ec10
}

.pp-promocode__copy-btn svg {
    width: 1.25rem;
    height: 1.25rem
}

.pp-promocode__copy-btn svg use {
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.pp-promocode__copy-btn:hover use {
    scale: 1.02
}

@media (max-width: 576px) {
    .pp-promocode {
        width: 100%
    }
}

@media (max-width: 1380px) {
    .pp-promocode__main-content {
        flex-direction: column
    }
}

.mp-promocode {
    position: relative;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.625rem 1.875rem 1.875rem 1.875rem;
    border-radius: .625rem;
    background: var(--bg-sports, linear-gradient(102deg, rgba(4, 14, 40, .6) 0, rgba(4, 14, 40, .18) 100%), #185a8a);
    gap: .625rem;
    overflow: hidden
}

@media (max-width: 768px) {
    .mp-promocode {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 576px) {
    .mp-promocode {
        padding: 1.375rem 1.25rem 1.25rem 1.25rem
    }
}

.mp-promocode__main-content {
    gap: 1.5rem;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media (max-width: 768px) {
    .mp-promocode__main-content {
        max-width: 100%;
        padding-right: 0
    }
}

.mp-promocode__title {
    color: var(--color-title);
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center
}

.mp-promocode__specs {
    display: flex;
    justify-content: center
}

.mp-promocode__specs-item {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding-right: 1.375rem;
    padding-left: 1.375rem;
    border-right: 1px solid rgba(227, 227, 227, .3)
}

.mp-promocode__specs-item:last-child {
    border-right: none;
    padding-right: 0
}

.mp-promocode__specs-item:first-child {
    padding-left: 0
}

@media (max-width: 576px) {
    .mp-promocode__specs-item {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.mp-promocode__specs-value {
    text-align: center;
    color: var(--color-title);
    font-family: Montserrat;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 600;
    line-height: 25.554px;
    letter-spacing: -.17px
}

@media (max-width: 576px) {
    .mp-promocode__specs-value {
        font-size: .875rem
    }
}

.mp-promocode__specs-value--stars::after {
    content: " ★ ★ ★ ★ ★"
}

@media (max-width: 576px) {
    .mp-promocode__specs-value--stars::after {
        content: " ★ ";
        font-size: 1.0625rem
    }
}

.mp-promocode__specs-name {
    color: #dfdfdf;
    text-align: center;
    font-family: Montserrat;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 25.554px;
    letter-spacing: -.14px
}

@media (max-width: 576px) {
    .mp-promocode__specs-name {
        font-size: .75rem
    }
}

.mp-promocode__buttons {
    position: relative;
    display: flex;
    gap: 1.125rem;
    padding-bottom: 1.25rem
}

@media (max-width: 768px) {
    .mp-promocode__buttons {
        flex-direction: column
    }
}

.mp-promocode__buttons::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, color-stop(-7.11%, rgba(126, 172, 47, 0)), color-stop(50.12%, #7eac2f), color-stop(107.93%, rgba(126, 172, 47, 0)));
    background: linear-gradient(270deg, rgba(126, 172, 47, 0) -7.11%, #7eac2f 50.12%, rgba(126, 172, 47, 0) 107.93%)
}

.mp-promocode__buttons .btn {
    padding-top: .875rem;
    padding-bottom: .875rem
}

.mp-promocode__description {
    color: var(--color-title);
    text-align: center;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

@media (max-width: 576px) {
    .mp-promocode__description {
        font-size: .875rem
    }
}

.mp-promocode__description span {
    color: #a7dc4c;
    font-weight: 700
}

.mp-promocode__input {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.mp-promocode__input-copy-block {
    width: 100%;
    height: 3.25rem;
    gap: .25rem;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .125rem
}

.mp-promocode__input input {
    max-width: 11.875rem;
    color: #a7dc4c;
    background-color: transparent;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1rem;
    padding: 1rem 1.25rem
}

.mp-promocode__input .btn {
    padding: 1rem 2rem
}

.mp-promocode__copy-btn {
    padding: .75rem 1.25rem;
    min-width: 5.25rem;
    min-height: 2.375rem;
    height: 100%;
    border-radius: 3px;
    background: #093056;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    color: var(--color-title);
    font-family: "TT Firs Neue";
    font-size: .875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.mp-promocode__copy-btn:hover {
    -webkit-transform: scale(.97);
    -ms-transform: scale(.97);
    transform: scale(.97)
}

.mp-promocode__copy-btn.copied {
    background-color: #10ec10
}

.mp-promocode__copy-btn svg {
    width: 1.25rem;
    height: 1.25rem
}

.mp-promocode__copy-btn svg use {
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.mp-promocode__copy-btn:hover use {
    scale: 1.02
}

@media (max-width: 576px) {
    .mp-promocode {
        width: 100%
    }
}

@media (max-width: 1380px) {
    .mp-promocode__main-content {
        flex-direction: column
    }
}

.main-popup {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0
}

.main-popup__bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3)
}

.main-popup__content {
    width: 100%;
    max-width: 72.25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 2;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: .75rem;
    background: #fff;
    overflow: auto;
    max-height: 100vh
}

.main-popup__content .btn {
    margin-top: 20px;
}

.main-popup__welcome-bonus-title {
    width: 85%;
    position: relative;
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
    align-items: center;
    color: var(--text-white-bg, #58586c);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    margin-top: 0
}

.main-popup__welcome-bonus-title svg {
    display: inline-block;
    max-width: 2.5rem;
    max-height: 2.5rem;
    cursor: pointer
}

.main-popup__welcome-bonus-title svg:first-child {
    border-radius: 8px;
    background: rgba(255, 255, 255, .05)
}

.main-popup__welcome-bonus-title svg:last-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0
}

.main-popup__welcome-bonus-description {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem
}

.main-popup__welcome-bonus-description span {
    color: var(--green, #0afe87)
}

.main-popup__welcome-bonus .btn {
    margin-top: 1rem
}

.main-popup__welcome-bonus-text {
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.main-popup__welcome-bonus-text p {
    margin-bottom: .625rem;
    color: var(--text-white-bg, #58586c);
}

.main-popup__welcome-bonus-text p:last-child {
    margin-bottom: 0
}

.main-popup__welcome-bonus-list {
    counter-reset: MyCounter
}

.main-popup__welcome-bonus-list .main-popup__welcome-bonus-list-item {
    position: relative;
    counter-increment: MyCounter;
    color: var(--text-white-bg, #58586c);
    padding-bottom: 1rem;
    padding-left: 2.125rem
}

.main-popup__welcome-bonus-list .main-popup__welcome-bonus-list-item:last-child {
    padding-bottom: 0
}

.main-popup__welcome-bonus-list .main-popup__welcome-bonus-list-item:last-child::after {
    display: none
}

.main-popup__welcome-bonus-list .main-popup__welcome-bonus-list-item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(MyCounter);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid var(--color-purple);
    color: var(--color-purple);
    font-weight: 700;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .625rem
}

.main-popup__welcome-bonus-list .main-popup__welcome-bonus-list-item::after {
    position: absolute;
    content: "";
    top: 1.5rem;
    left: .75rem;
    width: .0625rem;
    height: calc(100% - 1.5rem);
    background: var(--color-purple)
}

.main-popup__welcome-bonus-list .main-popup__welcome-bonus-list-item span {
    color: var(--text-white-bg, #58586c);
    font-weight: 700
}

.main-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.main-popup .js-cross {
    position: absolute;
    top: .625rem;
    right: .625rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer
}

.main-popup.open {
    display: block
}

.main-mp-hero__bonus-app {
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem
}

.main-mp-hero__bonus-app img {
    position: relative;
    width: 32px;
    height: 32px
}

.wp-block-table {
    overflow-x: auto;
    margin-bottom: 1.0625rem;
    margin-top: 1rem;
    border: 1px solid var(--color-accent);
    border-radius: 12px
}

.wp-block-table table {
    width: 100%;
    border-spacing: 0;
    height: auto;
    border-radius: 10px;
    overflow: auto;
    border-radius: 12px
}

.wp-block-table table a {
    text-decoration-line: underline
}

@media (max-width: 768px) {
    .wp-block-table table {
        width: 48rem
    }

    .main-pros-cons {
        grid-template-columns: 1fr;
    }
}

.wp-block-table table {
    background-color: var(--color-table-bg);
    /*border-collapse: collapse*/
}

.wp-block-table table thead tr:first-child td:first-child, .wp-block-table table thead tr:first-child th:first-child {
    min-width: 10rem;
    border-radius: 12px 0 0 0
}

.wp-block-table table thead tr:first-child td:nth-child(2), .wp-block-table table thead tr:first-child th:nth-child(2) {
    width: 32.5rem
}

.wp-block-table table thead tr:first-child td:last-child, .wp-block-table table thead tr:first-child th:last-child {
    width: 32.5rem;
    border-radius: 0 12px 0 0
}

.wp-block-table table thead td, .wp-block-table table thead th {
    color: var(--color-table-th-color);
    text-align: center;
    font-weight: 700;
    background: var(--color-table-th-bg)
}

.wp-block-table table td, .wp-block-table table th {
    border: 1px solid var(--color-table-border);
    padding: .75rem;
    text-align: center;
    color: var(--color-table-td-color);
}

.wp-block-table table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px
}

.wp-block-table table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0
}

.wp-block-table.two-layers-head table thead > tr > th:nth-child(1) {
    border-bottom: none;
    padding-top: 1.5625rem;
    padding-bottom: 0;
    line-height: normal
}

.wp-block-table.two-layers-head table tbody tr:nth-child(1) td {
    background: var(--color-purple)
}

.wp-block-table.two-layers-head table tbody tr:nth-child(1) td:nth-child(1) {
    border-top: none;
    color: transparent
}

.wp-block-table.two-layers-head {
    max-width: 75rem;
    margin: 1.75rem auto
}

@media (max-width: 576px) {
    .wp-block-table.two-layers-head {
    }
}

@media (max-width: 1380px) {
    .wp-block-table.two-layers-head {
    }
}

.wp-block-table.two-layers-head table tbody tr:nth-child(1) td {
    color: var(--color-title);
    text-align: center;
    background: var(--color-purple)
}

.main-info {
    margin-top: 1.25rem;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.25rem;

}

.main-info__item {
    display: inline-block;
    flex: 1 1 auto
}

.main-info__item--casino {
    max-width: 18.125rem;
    flex: 1 1 auto
}

@media (max-width: 576px) {
    .main-info__item--casino {
        max-width: 100%
    }
}

.main-info__item--casino p {
    margin-bottom: .5rem;
    color: var(--color-white);
}

.main-info__item--casino p:last-child {
    margin-bottom: 0
}

.main-info__item--casino p span {
    color: var(--color-text, #e3e3e3);
    font-weight: 700;
}

.main-info__item-list--soorten {
    max-width: 18.125rem;
    /*flex: 1 1 auto*/
}

.main-info__item-v2 .main-info__item-list--soorten li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-info__item-v2 .main-info__item-list--soorten {
    gap: 16px
}

* + .main-info__item-link {
    margin-top: 10px;
}

.main-info-img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 576px) {
    .main-info__item-list--soorten {
        max-width: 100%
    }
}

.main-info__item-list--soorten {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.main-info__item-list--soorten .main-info__item-list-item {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .75rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

.main-info__item-list--soorten .main-info__item-list-item img {
    width: 24px;
    height: 24px
}

.main-info__item--betaalmethoden {
    max-width: 36.25rem;
    flex: 1 1 auto
}

@media (max-width: 576px) {
    .main-info__item--betaalmethoden {
        max-width: 100%
    }
}

.main-info__item--betaalmethoden .main-info__item-deposit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid rgba(255, 255, 255, .1)
}

@media (max-width: 576px) {
    .main-info__item--betaalmethoden .main-info__item-deposit {
        flex-direction: column
    }
}

.main-info__item--betaalmethoden .main-info__item-borg {
    color: var(--color-text, #e3e3e3);
}

.main-info__item--betaalmethoden .main-info__item-borg .main-info__item-list {
    margin-top: .75rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .5rem
}

.main-info__item--betaalmethoden .main-info__item-borg .main-info__item-list .main-info__item-list-item {
    width: 2.25rem;
    height: 1.5rem
}

.main-info__item--betaalmethoden .main-info__item-borg .main-info__item-list .main-info__item-list-item img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.main-info__item--betaalmethoden .main-info__item-borg {
    position: relative
}

.main-info__item--betaalmethoden .main-info__item-borg::after {
    position: absolute;
    content: "";
    top: 0;
    right: -.625rem;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .1)
}

.main-info__item--betaalmethoden p {
    padding-bottom: .75rem;
    padding-top: .75rem;
    color: var(--color-white);
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, .1)
}

.main-info__item--betaalmethoden p span {
    color: var(--color-text, #e3e3e3);
}

.main-info__item--betaalmethoden .main-info__item-minmax {
    position: relative;
    display: flex;
    justify-content: space-between
}

.main-info__item--betaalmethoden .main-info__item-minmax::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .1)
}

.main-info__item--betaalmethoden .main-info__item-minmax p {
    padding-bottom: 0;
    border-bottom: none
}

.main-info__item--bonussen {
    max-width: 22.6875rem;
    flex: 1 1 auto
}

@media (max-width: 576px) {
    .main-info__item--bonussen {
        max-width: 100%
    }
}

.main-info__item--bonussen .main-info__item-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.main-info__item--bonussen .main-info__item-list .main-info__item-list-item {
    padding: .25rem .75rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

.main-info__item-list-add {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0
}

.main-info__item-list-add .main-info__item-list-add-item {
    display: flex;
    gap: 4px;
    align-items: center
}

.main-info__item-list {
    color: var(--color-text, #e3e3e3);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 5px
}

.main-info__item-list span {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px
}

.main-info__item-list img {
    max-height: 45px;
    width: auto
}

.main-info__item-table-content.with-hr .main-info__item-cards {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.main-info__item-table-content.with-hr + .main-info__item-table-content.with-hr {
    margin-top: 8px
}

* + .main-info__item-table-content {
    margin-top: 8px
}

.add-border {
    padding: .25rem .75rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    width: fit-content;
    display: flex;
    gap: 4px
}

.main-info__item span {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px
}

.main-info__item-cards-item:not(:last-child) {
    margin-bottom: 8px
}

.main-info__item-list.main-info__item-list--soorten {
    margin-top: 5px
}

.main-info__item-v2 {
    min-width: 16.1875rem;
    max-width: 36.25rem;
}

.main-info__item-table-content.with-hr {
    padding-top: 12px;
    border-top: 2px solid rgba(255, 255, 255, .1)
}

.main-info__item--apparaten {
    max-width: 16.1875rem;
    flex: 1 1 auto
}

@media (max-width: 576px) {
    .main-info__item--apparaten {
        max-width: 100%
    }
}

.main-info__item--apparaten .main-info__item-list {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem
}

.main-info__item--apparaten .main-info__item-list .main-info__item-list-item {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .75rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

.main-info__item--apparaten .main-info__item-list .main-info__item-list-item img {
    width: 24px;
    height: 24px
}

.main-info__item--softwareleverancier {
    max-width: 16.1875rem;
    flex: 1 1 auto
}

@media (max-width: 576px) {
    .main-info__item--softwareleverancier {
        max-width: 100%
    }
}

.main-info__item--softwareleverancier .main-info__item-img {
    width: 11.25rem;
    margin-bottom: .5rem
}

.main-info__item--softwareleverancier .main-info__item-img img {
    width: 100%;
    object-fit: contain;
    height: auto
}

.main-info__item--softwareleverancier span {
    color: var(--color-text, #e3e3e3);
}

.main-info__item--steun {
    max-width: 16.1875rem;
    flex: 1 1 auto
}

.main-info__item-img img {
    max-height: 60px;
    width: auto
}

@media (max-width: 576px) {
    .main-info__item--steun {
        max-width: 100%
    }
}

.main-info__item--steun .main-info__item-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem
}

@media (max-width: 576px) {
    .main-info__item--steun .main-info__item-links {
        -webkit-box-orient: horizontal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: .5rem;
        flex-wrap: wrap
    }
}

.main-info__item-link--live {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 0 .4rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    width: fit-content
}

.main-info__item-link--live a {
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    display: inline-block;
    padding: .25rem .75rem;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.main-info__item-link--live::after {
    position: absolute;
    content: "";
    top: 0;
    left: -300%;
    height: 100%;
    width: 5rem;
    background: rgba(190, 173, 228, .4);
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg)
}

.main-info__item-link--live:hover {
    -webkit-box-shadow: 0 0 8px 1px var(--color-lilac, #ffdc41);
    box-shadow: 0 0 8px 1px var(--color-lilac, #ffdc41);
    cursor: pointer
}

.main-info__item-link--live:hover::after {
    -webkit-animation: identifier .35s linear;
    animation: identifier .35s linear
}

* + .main-info__item-btn {
    margin-top: 16px
}

.main-info__item:has(.main-info__item-payments) {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0 24px
}

.main-info__item:has(.main-info__item-payments) .main-info__item-title {
    grid-column: 1 / -1
}

.main-info__item:has(.main-info__item-payments) .main-info__item-table-content {
    grid-column: 1 / -1
}

.main-info__item .main-info__item-payments:first-of-type {
    grid-column: 1
}

.main-info__item .main-info__item-payments:la {
    grid-column: 2;
    border-left: 2px solid rgba(255, 255, 255, .1);
    padding-left: 10px
}

.main-info__item-payments img {
    max-height: 24px;
    width: auto
}

@-webkit-keyframes identifier {
    0% {
        left: -100%
    }
    100% {
        left: 100%
    }
}

@keyframes identifier {
    0% {
        left: -100%
    }
    100% {
        left: 100%
    }
}

p.main-info__item-title {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    padding: 0;
    border: none;
    margin: 0 0 1rem 0
}

.main-how-to {
    margin-top: .9375rem;
    margin-bottom: .9375rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    counter-reset: myCounter
}

.main-how-to__container{
    width: 100%;
}

.main-how-to::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--color-purple)
}

.main-how-to .main-how-to__item {
    position: relative;
    width: 100%;
    padding: .75rem;
    border-radius: 0 12px 12px 0;
    border: 1px solid var(--color-purple);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem
}

.main-how-to .main-how-to__item .btn {
    min-width: 190px;
    margin-top: 20px;
}

@media (max-width: 1000px) {
    .main-how-to .main-how-to__item {
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.main-how-to .main-how-to__item::before {
    counter-increment: myCounter;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    content: counter(myCounter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: #1e1450;
    border: 1px solid var(--color-purple);
    border-radius: 50%;
    color: var(--color-yellow, #ffdc41);
    font-weight: 700;
}

.main-how-to .main-how-to__item__container-text {
    max-width: 35.625rem
}

@media (max-width: 1380px) {
    .main-how-to .main-how-to__item__container-text {
        max-width: 100%
    }
}

.main-how-to .main-how-to__item__container-text p {
    margin-bottom: .625rem;
    color: var(--color-text, #e3e3e3);
}

.main-how-to .main-how-to__item__container-text .btn {
    margin-top: .75rem;
    margin-bottom: .3125rem;
    padding: .75rem 1.25rem;
    max-width: 17.5rem
}

@media (max-width: 576px) {
    .main-how-to .main-how-to__item__container-text .btn {
        max-width: unset
    }
}

.main-how-to .main-how-to__item img {
    max-width: 575px;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: .5rem;
    object-fit: cover;
}

@media (max-width: 768px) {
    .main-how-to .main-how-to__item img {
        max-width: 100%;
        margin-bottom: 1rem
    }
}

@media (max-width: 576px) {
    .main-how-to .main-how-to__item img {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.hidden, .hidden_svg {
    display: none
}

.no-scroll {
    overflow: hidden
}

.title {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem
}

@media (max-width: 576px) {
    .title {
        font-size: 1.5rem;
        line-height: 1.75rem;
        margin-bottom: 1rem
    }
}

body {
    background-color: var(--color-body);
    font-family: var(--ff-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #e3e3e3;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.375rem;
}

main {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.main-header {
    position: sticky;
    top: 0;
    padding-top: .625rem;
    padding-bottom: .625rem;
    width: 100%;
    z-index: 99;
    background: var(--color-header);
}

.main-header__content {
    display: flex
}

@media (max-width: 1380px) {
    .main-header__content {
        position: relative;
        justify-content: space-between
    }
}

@media (max-width: 768px) {
    .main-header__content {
        flex-direction: column;
        gap: .9375rem
    }
}

.main-header__logo {
    display: flex;
    align-items: flex-start;
    margin-right: 2.75rem;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media (max-width: 576px) {
    .main-header__logo {
        margin-right: 0;
        margin-left: 2.75rem;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

.main-header__nav {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: flex;
    align-items: flex-start;
    max-width: 50%
}

.main-header__nav-mobile {
    position: relative;
    display: none;
    max-width: 95%;
    width: 100%;
    margin: 10rem auto 0 auto;
    align-items: flex-start;
    gap: 1rem;
    padding: .75rem;
    border-radius: .75rem;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(48, 30, 110, .95)), to(rgba(48, 30, 110, .95)));
    background: linear-gradient(0deg, rgba(48, 30, 110, .95) 0, rgba(48, 30, 110, .95) 100%);
    overflow: hidden;
    align-items: center;
}

.main-header__nav-mobile-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover
}

.main-header__nav-mobile-img {
    position: relative;
    width: 6rem
}

.main-header__nav-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.main-header__nav-mobile-content {
    position: relative
}

.main-header__nav-mobile-content-title {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    margin-bottom: .25rem
}

.main-header__nav-mobile-content-description {
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    margin-bottom: 1rem
}

.main-header__nav-list {
    width: 100%;
    margin-top: .625rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.75rem
}

@media (max-width: 1380px) {
    .main-header__nav-list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.main-header__nav .main-header__nav-item {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem
}

.main-header__nav .main-header__nav-item a {
    color: var(--color-title);
    -webkit-transition: color .2s ease 0s;
    transition: color .2s ease 0s;
    width: 100%;
}

.main-header__nav-item.main-header__nav-item--has-children a {
    width: fit-content;
}

.main-header__nav .main-header__nav-item a:hover {
    color: var(--color-header-navigation-link-hover)
}

.main-header__button-first {
    color: var(--color-first-button);
    background-color: var(--color-first-button-bg)
}

.main-header__button-second {
    color: var(--color-second-button);
    background-color: var(--color-second-button-bg)
}

.main-header__nav-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--color-header-navigation-link)
}

div.main-header__nav-link {
    color: var(--color-header-navigation-link-hover)
}

.main-header__nav-link img {
    max-width: 24px;
    height: 24px;
    object-fit: contain
}

.main-header__nav .main-header__nav-item span {
    color: #c3bfbf;
    cursor: default;
    line-height: 12px;
}

.main-header__nav .main-header__nav-item-arrow {
    cursor: pointer;
}

/*.main-header__nav .main-header__nav-item .submenu {*/
/*    display: none;*/
/*    position: absolute;*/
/*    min-width: 9.375rem;*/
/*    padding: 1.25rem .625rem 1.25rem 1.25rem;*/
/*    flex-direction: column;*/
/*    gap: .625rem;*/
/*    justify-content: center;*/
/*    align-items: flex-start;*/
/*    border-radius: 1rem;*/
/*    background: #fff;*/
/*    right: 50%;*/
/*    top: .625rem;*/
/*    -webkit-transform: translateX(50%);*/
/*    -ms-transform: translateX(50%);*/
/*    transform: translateX(50%)*/
/*}*/

/*.main-header__nav .main-header__nav-item .submenu a {*/
/*    color: #040507*/
/*}*/

/*@media (max-width: 1380px) {*/
/*    .main-header__nav .main-header__nav-item .submenu {*/
/*        width: 100%;*/
/*        position: static;*/
/*        background-color: transparent;*/
/*        transform: none;*/
/*        padding: .75rem .3125rem 1.25rem .3125rem*/
/*    }*/

/*    .main-header__nav .main-header__nav-item .submenu li {*/
/*        border: none*/
/*    }*/
/*}*/

.main-header__nav .main-header__nav-item .submenu__item {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: .625rem
}

.main-header__nav .main-header__nav-item .submenu__item:last-child {
    margin-bottom: 0
}

.main-header__nav .main-header__nav-item .submenu__item img {
    width: 2rem;
    height: 2rem
}

@media (max-width: 768px) {
    .main-header__nav .main-header__nav-item .submenu__item img {
        width: 1.375rem;
        height: 1.375rem
    }
}

.main-header__nav .main-header__nav-item.has-submenu {
    position: relative;
    padding-right: 1.375rem
}

.main-header__nav .main-header__nav-item.has-submenu > a, .main-header__nav .main-header__nav-item.has-submenu > span {
    display: inline-block
}

.main-header__nav .main-header__nav-item.has-submenu > a::after, .main-header__nav .main-header__nav-item.has-submenu > span::after {
    position: absolute;
    top: .375rem;
    right: .5rem;
    content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    margin-bottom: 1px;
    background-image: url(../img/arrow.svg);
    cursor: pointer;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

@media (max-width: 1380px) {
    .main-header__nav .main-header__nav-item.active > a, .main-header__nav .main-header__nav-item.active > span {
        color: #fff
    }
}

.main-header__nav .main-header__nav-item.active > a::after, .main-header__nav .main-header__nav-item.active > span::after {
    top: .75rem;
    transform: rotate(180deg)
}

@media (max-width: 1380px) {
    .main-header__nav .main-header__nav-item.active {
        border-radius: .75rem
    }

    .main-header__nav .main-header__nav-item.active a {
        padding-left: 0
    }
}

@media (max-width: 1380px) {
    .main-header__nav .main-header__nav-item {
        width: 90%;
        margin-right: .625rem;
    }

    .main-header__nav .main-header__nav-item .main-header__nav-link {
        padding-bottom: 1.0625rem
    }

    .main-header__nav .main-header__nav-item:last-child .main-header__nav-item .main-header__nav-link {
        padding-bottom: 0
    }

    .main-header__nav .main-header__nav-item .main-header__nav-item-arrow {
        margin-left: auto
    }
}

@media (min-width: 1380px) {
    .main-header__nav .main-header__nav-item:hover a::after, .main-header__nav .main-header__nav-item:hover span::after {
        transform: rotate(180deg)
    }

    /*.main-header__nav .main-header__nav-item:hover .submenu {*/
    /*    display: flex*/
    /*}*/
}

@media (max-width: 1380px) {
    .main-header__nav {
        background: var(--color-body);
        position: absolute;
        bottom: 0;
        right: 50%;
        -webkit-transform: translate(50%, calc(100% + .625rem));
        -ms-transform: translate(50%, calc(100% + .625rem));
        transform: translate(50%, calc(100% + .625rem));
        height: calc(100vh - var(--height));
        height: calc(100svh - var(--height));
        max-width: 100vw;
        width: 100vw;
        display: none;
        z-index: 5;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        overflow-y: auto
    }

    .main-header__nav .main-header__nav-list, .main-header__nav .main-sub-menu {
        flex-direction: column;
        gap: .625rem
    }

    .main-header__nav .main-header__nav-mobile {
        display: flex
    }
}

.main-header__lang {
    position: relative;
    margin-left: 1.875rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    cursor: pointer;
    z-index: 8;
}

.main-header__lang.active .main-header__active-lang {
    background: #FFFFFFE5;
    color: #58586C;
}

.main-header__lang.active .main-header__active-lang svg {
    transform: rotate(-180deg)
}

.main-header__lang.active .main-header__langs-menu {
    display: flex;
    flex-direction: column
}

@media (max-width: 1380px) {
    .main-header__lang {
        order: 4;
        margin-left: 12px;
    }
}

@media (max-width: 768px) {
    .main-header__lang {
        position: absolute;
        right: 3.125rem;
        transform: none;
        top: 4px
    }
}

@media (max-width: 576px) {
    .main-header__lang {
        right: 16px;
        top: 4px;
    }
}

.main-header__active-lang {
    display: flex;
    align-items: center;
    gap: .375rem;
    border-radius: .375rem;
    background: rgba(255, 255, 255, .1);
    padding: .3125rem
}

.main-header__active-lang img {
    width: 1.5rem;
    height: 1.5rem
}

.main-header__active-lang p {
    text-transform: uppercase
}

.main-header__active-lang span {
    color: var(--color-white);
}

.main-header__active-lang svg {
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    width: 12px;
    height: 12px;
}

.main-header__langs-menu {
    padding: 2px;
    border-radius: .625rem;
    display: none;
    flex-direction: column;
    gap: .125rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    right: 0;
    top: 2.6875rem;
    z-index: 99
}

.main-header__langs-menu::after {
    position: absolute;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4' fill='none'%3E%3Cpath d='M4 0L0 4H8L4 0Z' fill='white'/%3E%3C/svg%3E");
    top: -15px;
    right: 1.25rem
}

.main-header__langs-menu .main-header__langs-menu-item {
    width: 100%;
    text-wrap: nowrap;
    white-space: nowrap;
    border-radius: 10px;
    padding: 8px 16px;
    position: relative;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.main-header__lang-img::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    content: ""
}

.main-header__langs-menu .main-header__langs-menu-item:hover {
    background: rgba(190, 173, 228, .3)
}

.main-header__langs-menu .main-header__langs-menu-item.hide {
    display: none
}

.main-header__langs-menu .main-header__langs-menu-item img {
    width: 1.5625rem;
    height: 1.5625rem;
    margin-right: .625rem
}

.main-header__langs-menu .main-header__langs-menu-item-code {
    color: var(--text-white-bg, #58586c);
}

.main-header__button {
    max-width: 26.25rem;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-item-align: start;
    align-self: flex-start;
    gap: .5rem;
    flex-wrap: wrap
}

.main-header__button .btn--primary {
    min-width: 11.25rem
}

.main-header__button .btn--secondary {
    min-width: 10.25rem
}

@media (max-width: 1671px) {
    .main-header__button {
        -ms-flex: 1 0 auto;
        flex: 1 0 auto
    }
}

@media (max-width: 1380px) {
    .main-header__button {
        -webkit-box-orient: horizontal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-right: 0;
        margin-left: auto;
        gap: .5rem;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .main-header__logo {
        margin-left: 3.75rem;
    }
}

@media (max-width: 768px) {
    .main-header__button {
        align-self: center;
        justify-content: center;
        margin: 0;
        width: 100%;
        max-width: unset
    }

    .main-header__button .btn {
        min-width: unset;
        max-width: unset;
        width: 48%
    }
}

.main-header__burger {
    display: none;
    position: relative;
    width: 1.25rem;
    height: 1rem;
    margin-top: .625rem;
    cursor: pointer;
    transition: filter .3s ease 0s, -webkit-filter .3s ease 0s;
    background: transparent;
    box-shadow: none
}

@media (max-width: 1380px) {
    .main-header__burger {
        display: flex;
        position: absolute;
        left: 16px;
    }
}

@media (max-width: 576px) {
    .main-header__burger {
        right: unset
    }
}

.main-header__burger {
    margin: 0;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px
}

.burger-active .main-header__burger span:nth-child(1) {
    transform: translate(0, 6px) rotate(45deg);
    width: 30px
}

.burger-active .main-header__burger span:nth-child(2) {
    opacity: 0
}

.burger-active .main-header__burger span:nth-child(3) {
    transform: translate(0, -6px) rotate(-45deg);
    width: 30px
}

.main-header__burger span {
    width: 100%;
    height: 2px;
    background-color: #fff
}

@media (max-width: 1380px) {
    .main-header.burger-active .main-header__nav {
        display: block
    }
}

.main-header.burger-active .main-header__burger::before {
    transform: rotate(45deg);
    top: 6px;
    right: 5px
}

.main-header.burger-active .main-header__burger::after {
    transform: rotate(-45deg);
    bottom: 8px;
    right: 5px
}

.main-hero {
    margin-top: 1rem
}

.main-hero__title {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.75rem;
    text-transform: uppercase
}

@media (max-width: 576px) {
    .main-hero__title {
        font-size: 1.75rem
    }
}

.main-custom-img img {
    max-width: 100%;
    border-radius: .625rem;
    width: 100%;
    overflow: hidden;
    object-fit: cover
}

@media (max-width: 1380px) {
    .main-custom-img img {
    }
}

.main-hero {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 371px) minmax(0, 371px) minmax(0, 410px);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1380px) {
    .main-hero__welcome-bonus {
        max-width: 100%
    }
}

.main-hero__welcome-bonus.open {
    background: #fff
}

.main-hero__welcome-bonus.open .main-hero__welcome-bonus-hidden {
    display: block
}

.main-hero__welcome-bonus.open .main-hero__welcome-bonus-visible {
    display: none
}

.main-hero__welcome-bonus-visible {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main-hero__welcome-bonus-hidden {
    display: none
}

.main-hero__welcome-bonus-hidden .main-hero__welcome-bonus-title {
    color: var(--text-white-bg, #58586c);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;

}

.main-hero__welcome-bonus-hidden .main-hero__welcome-bonus-title img {
    max-width: 2.5rem;
    max-height: 2.5rem;
    cursor: pointer
}

.main-hero__welcome-bonus-hidden .main-hero__welcome-bonus-text p {
    color: var(--text-white-bg, #58586c);
}

.main-hero__welcome-bonus-hidden .btn {
    margin-top: 1rem
}

.main-hero__welcome-bonus-title {
    position: relative;
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
    align-items: center;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    padding-right: 24px;
}

.main-hero__welcome-bonus-title img {
    display: inline-block;
    max-width: 1.5625rem;
    max-height: 1.5625rem
}

.main-hero__welcome-bonus-title svg:last-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    cursor: pointer
}

.main-hero__welcome-bonus-description {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    padding-bottom: 12px;
}

.main-hero__welcome-bonus-description span {
    color: var(--green, #0afe87)
}

.main-hero__welcome-bonus-text {
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.main-hero__welcome-bonus-text p {
    margin-bottom: .625rem;
    color: var(--color-text, #e3e3e3);
}

.main-hero__welcome-bonus-text p:last-child {
    margin-bottom: 0
}

/*.main-hero__welcome-bonus-list {*/
/*    counter-reset: MyCounter*/
/*}*/

/*.main-hero__welcome-bonus-list li {*/
/*    position: relative;*/
/*    counter-increment: MyCounter;*/
/*    color: var(--text-white-bg, #58586c);*/
/*    padding-bottom: 1rem;*/
/*    padding-left: 2.125rem*/
/*}*/

/*.main-hero__welcome-bonus-list li:last-child {*/
/*    padding-bottom: 0*/
/*}*/

/*.main-hero__welcome-bonus-list li:last-child::after {*/
/*    display: none*/
/*}*/

/*.main-hero__welcome-bonus-list li::before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    content: counter(MyCounter);*/
/*    width: 1.5rem;*/
/*    height: 1.5rem;*/
/*    border-radius: 50%;*/
/*    border: 1px solid var(--color-purple);*/
/*    color: var(--color-purple);*/
/*    font-weight: 700;*/
/*    display: -webkit-inline-box;*/
/*    display: -ms-inline-flexbox;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin-right: .625rem*/
/*}*/

/*.main-hero__welcome-bonus-list li::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    top: 1.5rem;*/
/*    left: .75rem;*/
/*    width: .0625rem;*/
/*    height: calc(100% - 1.5rem);*/
/*    background: var(--color-purple)*/
/*}*/

/*.main-hero__welcome-bonus-list li span {*/
/*    color: var(--text-white-bg, #58586c);*/
/*    font-weight: 700*/
/*}*/

.main-hero__promotions {
    display: flex;
    flex-direction: column;
    min-height: 225px;
}

@media (max-width: 1380px) {
    .main-hero__promotions {
        max-width: 100%
    }
}

.main-hero__promotions-title {
    position: relative;
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
    align-items: center;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase
}

.main-hero__promotions-title-svg {
    display: inline-block;
    max-width: 32px;
    min-width: 32px;
    max-height: 32px;
    min-height: 32px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero__promotions-text {
    flex: 1 1 auto
}

.main-hero__promotions-text p {
    margin-bottom: .625rem;
    color: var(--color-text, #e3e3e3);
}

.main-hero__promotions-text p:last-child {
    margin-bottom: 0
}

.main-hero__promotions .btn {
    margin-top: 2.9375rem;
    padding: 12px 16px;
}

@media (max-width: 1380px) {
    .main-hero__text {
        max-width: 100%
    }
}

@media (max-width: 980px) {
    .main-hero {
        grid-template-columns: 1fr 1fr;
    }

    .main-hero__text {
        grid-column: 1/-1;
    }
}

@media (max-width: 575px) {
    .main-hero {
        grid-template-columns: 1fr;
    }
}

.main-hero__text p {
    margin-bottom: .625rem;
}

.main-hero__text p:last-child {
    margin-bottom: 0
}

.main-hero .btn {
    padding-top: .8125rem;
    padding-bottom: .8125rem
}

* .main-stats {
    margin-top: 16px
}

.main-hero + .main-stats {
    margin-top: 40px
}

.main-stats {
    /*overflow-x: auto;*/
    /*scrollbar-width: thin;*/
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: .75rem;
}

@media (max-width: 768px) {
    .main-stats {
        display: inline-block;
        text-wrap: nowrap;
        white-space: nowrap;
        width: 100%
    }
}

.main-stats__stat {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 215px;
}

@media (max-width: 1024px) {
    .main-stats {
        overflow-x: auto;
        scrollbar-width: thin;
        grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    }

    .main-stats__stat {
        min-width: 290px;
    }

}

@media (max-width: 768px) {
    .main-stats__stat {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-right: .75rem
    }

    .main-stats__stat:last-child {
        margin-right: 0
    }
}

.main-stats__stat-text {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    max-width: 60%
}

.main-stats__stat-value {
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem
}

.main-stats__stat-description {
    color: var(--color-text, #e3e3e3);
}

.main-stats__stat-tag {
    padding: .25rem .5rem;
    border-radius: .25rem;
    background: var(--color-content-button-bg);
    color: var(--color-content-button);
    font-family: var(--ff-primary);
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem
}

* + .main-payment {
    margin-top: 16px
}

.main-stats + .main-payment {
    margin-top: 40px
}

.main-payment {
    overflow: hidden;
    text-wrap: nowrap;
    white-space: nowrap
}

.main-payment__marquee {
    display: inline-block;
    min-width: 100%;
    animation: marquee 16s linear infinite
}

.main-payment__marquee img {
    display: inline-block;
    margin-right: 5rem;
    max-width: 180px
}

@media (max-width: 576px) {
    .main-payment__marquee img {
        margin-right: 2.5rem
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(calc(-100% - .1875rem));
        transform: translateX(calc(-100% - .1875rem))
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(calc(-100% - .1875rem));
        transform: translateX(calc(-100% - .1875rem))
    }
}

* + .main-toc {
    margin-top: 16px
}

.main-toc {
    max-width: 75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem
}

.main-toc__title {
    position: relative;
    color: var(--color-toc-title);
    font-family: var(--ff-primary);
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0
}

.main-toc__title::after {
    position: absolute;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 5L8 11L14 5' stroke='%23BEADE4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

@media (max-width: 576px) {
    .main-toc__title {
        font-size: 1.25rem
    }
}

.main-toc.active .main-toc__title::after {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1)
}

.main-toc.active .main-toc__list {
    display: flex
}

.main-wrapper .main-toc > ul {
    display: none;
}

.main-wrapper .main-toc.active > ul {
    display: flex;
    margin: 0;
    list-style: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.main-toc__list {
    display: none;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: .625rem
}

@media (max-width: 576px) {
    .main-toc__list {
        flex-direction: column;
        align-items: flex-start
    }

    .main-toc.active > ul {
        flex-direction: column;
    }
}

.main-toc__toc-item, .main-toc ul:not([class]) li {
    position: relative;
    border-radius: .5rem;
    border: 1px solid var(--color-toc-item-hover, #beade4);
    overflow: hidden;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: var(--color-toc-item);
    cursor: pointer;
    padding: 0;
    list-style: none;
    width: fit-content;
}

.main-toc ul:not([class]) li::before {
    background: transparent;
}

.main-toc__toc-item::after, .main-toc li::after {
    position: absolute;
/*     content: ""; */
    top: 0;
    left: -300%;
    height: 100%;
    width: 5rem;
    background: rgba(190, 173, 228, .4);
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
    cursor: pointer
}

.main-toc__toc-item:hover, .main-toc li:hover {
    -webkit-box-shadow: 0 0 8px 1px var(--color-lilac, #ffdc41);
    box-shadow: 0 0 8px 1px var(--color-lilac, #ffdc41)
}

.main-toc__toc-item:hover::after, .main-toc li:hover::after {
    -webkit-animation: identifier .35s linear;
    animation: identifier .35s linear
}

@keyframes identifier {
    0% {
        left: -100%
    }
    100% {
        left: 100%
    }
}

.main-toc__toc-item a, .main-toc a {
    color: var(--color-text, #e3e3e3);
    display: inline-block;
    padding: .5rem .75rem;
    width: 100%;
    height: 100%
}

.main-advantages-section__description {
    margin-bottom: 1.25rem;
    color: var(--color-text, #e3e3e3);
}

* + .main-advantages {
    margin-top: 16px
}

.main-advantages {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.main-advantages__item {
    display: flex;
    flex-direction: column;
}

.main-advantages__item-title {
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase
}

.main-advantages__item-icon {
    min-width: 3.75rem;
    height: 3.75rem;
    border-radius: .5rem;
    background: rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center
}

.main-advantages__item-icon svg, .main-advantages__item-icon img {
    max-width: 2.75rem;
    max-height: 2.75rem
}

.main-advantages__item-text {
    flex: 1 1 auto;
    margin-bottom: 1rem;
    margin-top: .75rem;
    color: var(--color-text, #e3e3e3);
}

.main-advantages__item .btn {
    padding: .75rem 1.25rem
}

.main-tabs__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.875rem
}

.main-tabs__list .main-tabs__list-btn {
    -ms-flex: 1;
    flex: 1;
    padding: .75rem;
    color: #676185;
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-purple);
    background: 0 0
}

.main-tabs__list button:first-child {
    position: relative
}

.main-tabs__list button:first-child.active::after {
    transform: none;
    top: -1px
}

.main-tabs__list button:first-child::after {
    position: absolute;
    content: "";
    top: 1px;
    right: -2.875rem;
    width: 2.9375rem;
    height: calc(100% + 1px);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    background: linear-gradient(to top right, transparent calc(50% - 1px), var(--color-purple), transparent calc(50% + 2px))
}

.main-tabs__list button.active {
    color: var(--color-white);
    border-top: 2px solid var(--color-purple);
    border-bottom: none
}

.main-tabs__list-btn.active:last-child::after {
    background: transparent;
}

.main-tabs__content {
    margin-top: 1.5rem
}

.main-tabs__tab.active {
    display: block
}

.main-tabs__tabimg {
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem;
    object-fit: contain;
    height: auto
}

.main-tabs__tabp {
    margin-bottom: 1rem;
    color: var(--color-text, #e3e3e3);
}

.main-tabs__tab.btn {
    margin-top: .3125rem;
    margin-bottom: .3125rem;
    padding: .75rem 1.25rem;
    max-width: 17.5rem
}

.main-tabs__list button.active {
    color: var(--color-white);
    border-top: 2px solid var(--color-purple);
    border-bottom: none;
    margin-right: 46px;
    margin-left: 45px
}

.main-tabs__list {
    gap: 0
}

.main-tabs__list-btn.active + .main-tabs__list-btn {
    border-bottom: 2px solid var(--color-purple);
    border-top: none
}

.main-tabs__list-btn.active + .main-tabs__list-btn:last-child {
    border-top: none;
    border-bottom: 2px solid var(--color-purple)
}

.main-tabs__list-btn.active::after {
    position: absolute;
    content: "";
    top: 1px;
    right: -2.875rem;
    width: 2.9375rem;
    height: calc(100% + 1px);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    background: linear-gradient(to top right, transparent calc(50% - 1px), var(--color-purple), transparent calc(50% + 2px))
}

.main-tabs__list-btn.active::before {
    position: absolute;
    content: "";
    top: -1px;
    left: -2.875rem;
    width: 2.9375rem;
    height: calc(100% + 1px);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    background: linear-gradient(to top right, transparent calc(50% - 1px), var(--color-purple), transparent calc(50% + 2px))
}

.main-tabs__list-btn.active::after {
    transform: none;
    top: -1px
}

.main-tabs__list button.active {
    position: relative
}

.main-tabs__list button:first-child::after {
    content: none
}

.main-tabs__list .main-tabs__list-btn.active:first-child::after {
    content: ''
}

.main-tabs__list {
    overflow-x: auto;
    scrollbar-width: thin;
    justify-content: flex-start
}

.main-tabs__list-btn.active:first-child::before {
    content: none
}

.main-tabs__list-btn {
    white-space: nowrap
}

.main-tabs__list button.active:first-child {
    margin-left: 0
}

.main-tabs {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.main-tabs__tab {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease
}

.main-tabs__tab.active {
    height: auto;
    overflow: visible
}

@media (max-width: 576px) {
    .main-tabs__tab.btn {
        max-width: 100%
    }
}

.main-faq {
    position: relative;
    padding: 1rem;
    border-radius: .75rem;
    background: var(--color-faq-item);
    margin-bottom: 1.25rem
}

.main-faq-text {
    padding: 1rem 0 0 0;
    width: 95%;
    display: none;
}

.main-faq-text p {
    margin-bottom: .9375rem;
    color: var(--color-text, #e3e3e3);
}

.main-faq-text p:last-child {
    margin-bottom: 0
}

.main-faq .main-faq-title {
    color: var(--color-faq-item-title);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-faq .main-faq-title h3 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-transform: math-auto
}

.main-faq .main-faq-title::marker {
    content: "";
    width: 0;
}

.main-faq {
    list-style: none;
}

.main-faq .main-faq-title::after {
    position: absolute;
    right: 1.5625rem;
    top: 1.25rem;
    content: " ";
    display: inline-block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 5L8 11L14 5' stroke='%23BEADE4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.main-faq[data-open] .main-faq-title {
    padding-bottom: .625rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.main-faq[data-open] .main-faq-text {
    display: block;
}

.main-faq[data-open] .main-faq-title:after {
    transform: rotate(180deg)
}

.main-footer {
    padding: 1.25rem 0;
    background-color: var(--color-footer)
}

.main-footer__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.875rem;
    flex-wrap: wrap;
}

.main-footer > * {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1380px) {
    .main-footer > * {
        width: 95%
    }
}

@media (max-width: 576px) {
    .main-footer > * {
        width: 92%
    }
}

@media (max-width: 768px) {
    .main-footer__content {
        flex-direction: column
    }
}

@media (max-width: 576px) {
    .main-footer__content {
        gap: 1.5rem
    }
}

.main-footer__logo {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media (max-width: 576px) {
    .main-footer__logo {
        display: contents
    }
}

@media (max-width: 576px) {
    .main-footer__logo img {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

.main-footer__copywrite {
    color: var(--color-footer-text);
}

@media (max-width: 576px) {
    .main-footer__copywrite {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
}

.main-footer-nav__list {
    display: grid;
    grid-template-columns:1fr 1fr;
    width: 100%;
    gap: 24px 32px;
    width: 100%
}

.main-footer-nav {
    width: 100%;
    max-width: 592px
}

@media (max-width: 768px) {
    .main-footer-nav__list {
        display: flex;
        flex-direction: column;
        -ms-flex-align: center
    }
}

@media (max-width: 576px) {
    .main-footer-nav__list {
        order: 2;
        align-items: flex-start
    }
}

.main-footer-nav__link {
    width: 17.5rem;
    padding: .625rem 0;
    color: var(--color-footer-navigation-link)
}

span.main-footer-nav__link {
    color: var(--color-footer-navigation-link-hover)
}

@media (max-width: 1380px) {
    .main-footer-nav__link {
        width: 12.5rem
    }
}

@media (max-width: 1000px) {
    .main-footer-nav__link {
        width: 9.375rem
    }
}

@media (max-width: 800px) {
    .main-footer-nav__link {
        width: 8.125rem
    }
}

.main-footer-nav__link a {
    color: var(--color-footer-navigation-link);
    transition: all .3s ease 0s
}

.main-footer-nav__link a:hover {
    color: var(--color-footer-navigation-link-hover)
}

.main-footer-nav__link span {
    color: var(--color-footer-navigation-link);
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.main-footer__download {
    max-width: 12.875rem;
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

@media (max-width: 576px) {
    .main-footer__download {
        display: contents
    }
}

.main-footer__download-images {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

@media (max-width: 576px) {
    .main-footer__download-images {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
}

.main-footer__download-images img {
    max-height: 2.5rem;
    max-width: 12.5rem;
    height: auto;
    width: auto
}

.main-footer__download .btn {
    padding: .625rem 1.25rem;
    max-width: unset;
    width: 100%
}

@media (max-width: 576px) {
    .main-footer__download .btn {
        position: relative;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }

    .main-footer__download .btn::before {
        position: absolute;
        content: "";
        top: -1.5rem;
        left: 0;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, .1)
    }

    .main-footer__download .btn::after {
        position: absolute;
        content: "";
        bottom: -1.5rem;
        left: 0;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, .1)
    }
}

.main-winners {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}


.main-winners__item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

@media (max-width: 768px) {
    .main-winners__item {
        width: 100%
    }

    .main-slots__item {
        height: 160px;
    }

    .main-winners {
        grid-template-columns: 1fr;
    }
}

.main-winners__item-avatar {
    min-width: 3rem;
    height: 3rem;
    overflow: hidden;
    border-radius: .25rem
}

.main-winners__item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.main-winners__item-info {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

@media (max-width: 576px) {
    .main-winners__item-info {
        max-width: 50%;
        min-width: 50%
    }
}

.main-winners__item-slot {
    color: var(--color-white);
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    white-space: normal;
}

.main-winners__item-value {
    min-width: 20%;
    align-self: center;
    text-wrap: wrap;
    white-space: wrap;
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    flex: 1 1 auto;
    text-align: right;
    flex-shrink: 0
}

.main-winners__item-value span {
    color: var(--green, #0afe87)
}

.main-slots {
    display: grid;
    gap: .75rem;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(6, 1fr);
}

.col-7 {
    grid-template-columns: repeat(7, 1fr);
}

.col-6, .col-12 {
    grid-template-columns: repeat(6, 1fr);
}

.col-5, .col-10 {
    grid-template-columns: repeat(5, 1fr);
}

.col-4, .col-8 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
    .main-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .main-slots {
        gap: .5rem;
        grid-template-columns: 1fr 1fr;
    }

}

.main-slots__item {
    position: relative;
    border-radius: .5rem;
    overflow: hidden
}

.main-slots__item:hover .main-slots__item-bg {
    left: 0;
}

.main-slots__item .btn {
    margin-left: 6px;
    margin-right: 6px;
}

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

.main-slots__item-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(30, 20, 80, .87)), to(rgba(30, 20, 80, .87)));
    background: linear-gradient(0deg, rgba(30, 20, 80, .87) 0, rgba(30, 20, 80, .87) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.main-slots__item-bg svg {
    width: 3.5625rem;
    height: 3.5625rem;
    cursor: pointer
}

.main-slots-section-btn {
    display: block;
    margin: 0 auto
}

* + .main-bonuses {
    margin-top: 16px
}

.main-bonuses {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
}

.main-bonuses__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-bottom: .625rem;
    border-radius: .75rem;
    background: var(--color-accent);
    overflow: hidden
}

.main-popup__bonus-content + .main-bonuses__item-description {
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .main-bonuses {
        grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    }

    .main-slots__item .btn {
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media (max-width: 768px) {
    .main-bonuses__item {
        width: 100%
    }


}

.main-bonuses__item img {
    width: 100%;
    object-fit: cover;
    height: 11.25rem
}

.main-bonuses__item-tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .5rem;
    border-radius: .5rem;
    background: rgba(255, 255, 255, .05);
    color: var(--color-text, #e3e3e3);
}

.main-bonuses__item-tag img {
    width: 1.5rem;
    height: 1.5rem
}

.main-bonuses__item-content {
    padding: 1rem
}

.main-bonuses__item-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    margin-top: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase
}

.main-bonuses__item-name svg {
    min-width: 1.5rem;
    max-width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.main-bonuses__item-description {
    width: 96%;
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

.main-bonuses__item .btn {
    display: block;
    max-width: unset;
    width: 90%;
    margin: .625rem auto;
    padding: 1rem 2rem
}

.main-bonuses-btn {
    margin: 1.5rem auto 0 auto
}

.main-mp-hero {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0
}

@media (max-width: 1000px) {
    .main-mp-hero {
        flex-direction: column
    }
}

@media (max-width: 576px) {
    .main-mp-hero {
        -webkit-box-orient: horizontal;
        -ms-flex-direction: row;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .625rem;
        align-items: flex-start;
        order: -1
    }
}

.main-mp-hero__main-content {
    max-width: 49.125rem
}

@media (max-width: 1380px) {
    .main-mp-hero__main-content {
        max-width: unset
    }

    .main-header__nav-mobile {
        max-width: 70%;
    }
}

@media (max-width: 576px) {
    .main-mp-hero__main-content {
        display: contents
    }
}

.main-mp-hero__title {
    margin-bottom: 1.25rem;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.75rem;
    text-transform: uppercase
}

@media (max-width: 576px) {
    .main-mp-hero__title {
        font-size: 1.75rem;
        line-height: 2.25rem
    }
}

.main-mp-hero__text {
    width: 98%
}

@media (max-width: 576px) {
    .main-mp-hero__text {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
}

.main-mp-hero__text p {
    margin-bottom: .625rem;
    color: var(--color-text, #e3e3e3);
}

.main-mp-hero__text p:last-child {
    margin-bottom: 0
}

.main-mp-hero__info {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem
}

@media (max-width: 576px) {
    .main-mp-hero__info {
        display: contents
    }
}

.main-mp-hero__bonus {
    width: 20.5rem;
    padding: 1rem;
}

.main-mp-hero__bonus-header {
    position: relative;
    display: flex;
    gap: 1.875rem
}

.main-mp-hero__bonus-header > div {
    width: 100%
}

.main-mp-hero__bonus-title {
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase
}

.main-mp-hero__bonus-description {
    color: var(--color-title);
}

.main-mp-hero__bonus-header > img {
    width: 4.5rem;
    height: 4.5rem;
    top: 0;
    right: 0;
    object-fit: contain
}

.main-mp-hero__bonus .btn {
    margin-top: .75rem;
    -webkit-box-orient: horizontal;
    justify-content: space-between;
    padding: .5rem 1.25rem
}

.main-mp-hero__bonus .btn svg {
    width: 2rem;
    height: 2rem
}

.main-mp-hero__specifications-list {
    text-align: left
}

@media (max-width: 576px) {
    .main-mp-hero__bonus {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin: 0 0 .5rem 0
    }
}

.main-mp-hero__specifications {
    display: inline-block;
    width: 10.5rem
}

@media (max-width: 576px) {
    .main-mp-hero__specifications {
        order: 2
    }
}

@media (max-width: 768px) {
    .main-mp-hero__specifications {
        width: 8.125rem
    }
}

.main-mp-hero__specifications .main-mp-hero__specifications-list .main-mp-hero__specifications-list-item {
    position: relative;
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: var(--color-text, #e3e3e3);
}

.main-mp-hero__specifications .main-mp-hero__specifications-list .main-mp-hero__specifications-list-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .1)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, 0) 100%)
}

.main-mp-hero__specifications .main-mp-hero__specifications-list .main-mp-hero__specifications-list-item:first-child {
    padding-top: 0
}

.main-mp-hero__specifications-header {
    color: var(--Second-button-color, #beade4);
    font-weight: 700;
}

.main-mp-hero > img {
    max-width: 24.6875rem;
    flex: 1 1 auto;
    object-fit: contain
}

@media (max-width: 576px) {
    .main-mp-hero > img {
        min-width: unset;
        flex: 1 1 auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

@media (max-width: 576px) {
    .main-mp-hero > img {
        max-width: 50%;
        max-height: 200px
    }
}

.bp-hero {
    padding: 1.5rem 0
}

.bp-hero__title {
    margin-bottom: 1.25rem;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.75rem;
    text-transform: uppercase
}

@media (max-width: 576px) {
    .bp-hero__title {
        font-size: 1.75rem;
        line-height: 2.25rem
    }
}


.bp-bonuses-section__subtitle {
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem
}

@media (max-width: 1024px) {
    .bp-bonuses {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
        display: flex;
    }
}

.bp-bonuses__item {
    position: relative;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 18rem;
    padding-bottom: .625rem;
    border-radius: .75rem;
    background: var(--color-accent);
    overflow: hidden
}

@media (max-width: 768px) {
    .bp-bonuses__item {
        width: 100%
    }
}

.bp-bonuses__item > img {
    width: 100%;
    object-fit: cover;
    height: 11.25rem
}

.bp-bonuses__item-tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem .5rem;
    border-radius: .5rem;
    background: rgba(255, 255, 255, .05);
    color: var(--color-text, #e3e3e3);
}

.bp-bonuses__item-tag svg {
    width: 1.5rem;
    height: 1.5rem
}

.bp-bonuses__item-content {
    padding: 1rem
}

.bp-bonuses__item-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    margin-top: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase
}

.bp-bonuses__item-name svg {
    min-width: 1.5rem;
    max-width: 1.5rem;
    height: 1.5rem;
    cursor: pointer
}

.bp-bonuses__item-description {
    width: 96%;
    color: var(--color-text, #e3e3e3);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem
}

.bp-bonuses__item .btn {
    display: block;
    max-width: unset;
    width: 90%;
    margin: .625rem auto;
    padding: 1rem 2rem
}

.bp-bonuses .btn {
    margin: 1.5rem auto 0 auto
}

.main-vp-hero {
    padding: 1.5rem 0
}

.main-vp-hero__title {
    margin-bottom: 1.25rem;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.75rem;
    text-transform: uppercase
}

@media (max-width: 576px) {
    .main-vp-hero__title {
        font-size: 1.75rem;
        line-height: 2.25rem
    }
}

.main-vp-hero__content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem
}

@media (max-width: 1380px) {
    .main-vp-hero__content {
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.main-vp-hero__text {
    max-width: 41rem
}

@media (max-width: 1380px) {
    .main-vp-hero__text {
        max-width: 100%;
        display: flex;
        flex-direction: column
    }
}

.main-vp-hero__text > p {
    margin-bottom: 1.0625rem;
    color: var(--color-text, #e3e3e3);
}

.main-vp-hero__text > p:last-child {
    margin-bottom: 0
}

.main-vp-hero__table {
    overflow-x: auto
}

.main-vp-hero__table table {
    width: 100%;
    border-spacing: 0;
    height: auto;
    border-radius: 10px;
    overflow: auto
}

@media (max-width: 768px) {
    .main-vp-hero__table table {
        width: 48rem
    }
}

.main-vp-hero__table table td {
    border: 1px solid var(--color-accent);
    padding: .75rem;
    text-align: center;
    color: var(--color-text, #e3e3e3);
}

.main-vp-hero__table table tr:first-child td {
    color: var(--color-title);
    text-align: center;
    font-weight: 700;
    background: var(--color-purple)
}

.main-vp-hero__table table tr:first-child td:first-child {
    width: 10rem;
    border-radius: 12px 0 0 0
}

.main-vp-hero__table table tr:first-child td:nth-child(2) {
    width: 32.5rem
}

.main-vp-hero__table table tr:first-child td:last-child {
    width: 32.5rem;
    border-radius: 0 12px 0 0
}

.main-vp-hero__table table tr:last-child td:first-child {
    border-radius: 0 0 0 12px
}

.main-vp-hero__table table tr:last-child td:last-child {
    border-radius: 0 0 12px 0
}

.main-vp-hero {
    display: inline-block;
    padding: 1rem;
    margin-bottom: .625rem;
    width: fit-content
}

@media (max-width: 1000px) {
    .main-vp-hero {
        order: -1;
        width: 100%
    }
}

.main-vp-hero__title {
    margin-bottom: .25rem;
    color: var(--color-title);
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase
}

.main-vp-hero__description {
    color: var(--color-text);
}

.main-vp-hero .btn {
    margin-top: 1rem;
    padding: 12px;
}

.main-vp-hero img {
    max-width: 32.5rem;
    object-fit: contain
}

@media (max-width: 1380px) {
    .main-vp-hero img {
        max-width: 100%;
        width: 100%
    }
}

.main-mobile-button-ad-section {
    position: sticky;
    bottom: 0;
    padding: .5rem 1rem;
    background: #fff;
    display: none;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
    gap: .625rem;
    z-index: 88;
}

.main-mobile-button-ad-section__name {
    color: #58586c;
    font-family: var(--ff-primary);
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.25rem
}

.main-mobile-button-ad-section__description {
    color: #787878;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem
}

.main-mobile-button-ad-section__description span {
    color: #58586c;
    font-weight: 600
}

.main-mobile-button {
    /*visibility: hidden*/
}

@media (max-width: 768px) {
    .main-mobile-button-ad-section {
        display: flex;
        gap: .75rem;
        flex: 1 1 auto;
        justify-content: space-between
    }
}

.main-footer-social {
    display: flex;
    gap: 15px
}

.main-footer-social__link img {
    max-width: 30px;
    max-height: 30px
}

.main-screenshot-gallery__list {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}

.main-screenshot-gallery__list img {
    width: 100%;
}

.main-screenshot-gallery__main-wrapper {
    position: relative;
    max-width: 100%;
    margin-top: 16px
}

.glightbox img {
    width: 100%;
    height: auto;
    min-width: 100%
}

@media (max-width: 1000px) {
    .glightbox img {
        min-width: 192px
    }

    .main-screenshot-gallery {
        overflow: scroll;
        width: 100%;
    }

    .main-screenshot-gallery__list img {
        width: 100%;
        min-width: 230px;
    }
}

@media (min-width: 1000px) {
    .main-screenshot-gallery__list {
        scrollbar-width: none
    }

}

.main-advantages__item-title {
    font-family: var(--ff-primary)
}

.main-header__logo img, .main-footer__logo img {
    max-width: 104px;
    height: auto;
    width: auto;
}


.main-pros-cons__element-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #e3e3e3
}

.main-pros-cons__element-title {
    margin-top: 0;
}

.difference-main-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px
}

.main-pros-cons__element-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 32px;
}

.main-pros-cons__element-item_plus::before {
    position: absolute;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 35 35' fill='none'%3E%3Ccircle cx='17.5' cy='17.5' r='17.5' fill='%2300A874'/%3E%3Cpath d='M9 15.8789L17 23.8789' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M28.1133 13L17 23.8789' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.main-pros-cons__element-item_minus::before {
    position: absolute;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 35 35' fill='none'%3E%3Ccircle cx='17.5' cy='17.5' r='17.5' fill='%23D80027'/%3E%3Cline x1='8' y1='18' x2='27' y2='18' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.main-pros-cons__element-item svg {
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    width: 100%
}

@media (max-width: 768px) {
    .difference-main-wrapper {
        display: flex;
        justify-content: center;
        gap: 35px;
        flex-direction: column
    }

    .main-pros-cons__element {
        width: 100%
    }

    .main-pros-cons__element-item svg {
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
        width: 100%
    }
}

h2 {
    margin-bottom: 1rem
}


.main-auto-toc__title.main-toc__title {
    margin: 0
}

.main-container .main-text-image:first-child {
    margin-top: 0
}


.main-footer__content-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;

}

.main-footer__content-payments-item img {
    max-width: 80px;
    width: 100%;
    height: auto
}

@media (max-width: 768px) {
    .main-footer__content-payments {
        gap: 30px;
        padding: 35px 0 0 0
    }

    .main-footer__content-payments-item img {
        max-width: 60px
    }
}


@media (min-width: 1380px) {
    .main-header__nav .main-header__nav-item:hover > .main-header__nav-link {
        color: var(--color-header-navigation-link-hover);
    }

    .main-header__nav .main-header__nav-item:hover .main-sub-menu {
        display: flex;
        gap: 10px;
        flex-direction: column
    }
}

.main-header__nav-item-arrow-svg {
    width: 21px;
    height: 21px;
    cursor: pointer;
    transition: 250ms
}

.main-header__nav-item {
    position: relative
}

div.main-sub-menu__link.main-sub-menu__link--current {
    color: var(--color-second-button-bg)
}

.main-sub-menu__link {
    display: flex;
    align-items: center;
}

@media (min-width: 1381px) {
    .main-header__nav-item--has-children:hover .main-header__nav-item-arrow svg {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
        padding-top: 0
    }
}

@media (max-width: 1380px) {
    .main-sub-menu {
        position: relative;
        width: 100%;
        padding: 0 25px 40px 25px
    }

    .main-header__nav-item.main-header__nav-item--has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

}


.main-promocode__bonus p {
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

.main-promocode__value {
    width: 100%;
    padding: .75rem;
    border-radius: 12px;
    border: 1px solid var(--color-purple)
}

.main-promocode__button {
    position: relative;
    display: block;
    max-width: 11.875rem;
    min-width: 115px;
    padding: 15px 1.25rem;
    gap: .625rem;
    border-radius: .5rem;
    color: #1e1e28;
    font-family: var(--ff-primary);
    font-size: .875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    cursor: pointer;
    background: var(--color-content-button-bg);
    color: var(--color-content-button)
}

.main-promocode__controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px
}

.main-promocode__controls.active .copy {
    display: none;
}

.copied {
    display: none
}

.main-promocode__buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.main-promocode__link {
    width: 100%;
    max-width: 100%
}

.main-promocode__info {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 23px
}

.main-promocode {
    margin-top: 10px;
    max-width: 600px;
}

.main-promocode__info-item {
    display: flex;
    gap: 5px
}

.main-promocode__link.main-promocode__link--aff {
    margin-top: 12px
}

.main-footer__copywrite {
    color: var(--color-footer-text)
}

/*.main-page-footer ul li, .main-page-footer ol li {*/
/*    list-style: none*/
/*}*/


@media (max-width: 768px) {
    .main-footer__content-payments {
        gap: 30px;
        padding: 35px 0 0 0
    }

    .main-footer__content-payments-item img {
        max-width: 60px
    }
}

.main-sub-menu {
    display: none;
    position: absolute;
    padding: 20px 15px;
    background-color: #463296;
    top: 22px;
    border-radius: .375rem;
    width: 100%;
    min-width: max-content;
}

.main-header__nav-item {
    position: relative
}

div.main-sub-menu__link.main-sub-menu__link--current {
    color: var(--color-second-button-bg)
}

@media (max-width: 1380px) {
    .main-sub-menu {
        position: relative;
        width: 100%;
        padding: 0 25px 40px 25px
    }

    .main-header__nav-item.main-header__nav-item--has-children {
        display: flex;
        flex-wrap: wrap
    }

    .main-header__nav-item--has-children.active .main-sub-menu {
        display: flex;
        margin-top: -20px;
    }

    .main-header__nav-item--has-children.active .main-header__nav-item-arrow svg {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
        padding-top: 0
    }
}

@media (min-width: 1381px) {
    .main-header__nav .main-header__nav-item:hover .main-sub-menu {
        display: flex;
        gap: 10px;
        flex-direction: column
    }

    .main-header__nav-item--has-children:hover .main-header__nav-item-arrow svg {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg);
        padding-top: 0
    }
}

.main-comment-form__form {
    display: grid;
    grid-template-columns:420px auto;
    gap: 20px 24px
}

.main-comment-form__field {
    position: relative;
    padding: 1rem;
    border-radius: .75rem;
    background: var(--color-faq-item);
    color: var(--color-title)
}

.main-comment-form__field::placeholder {
    color: #e3e3e3
}

.main-comment-form__textarea {
    resize: none;
    width: 100%;
    height: 100%
}

.main-comment-form__textarea {
    grid-row: 1 / span 3;
    grid-column: 2
}

.main-comment-form__button {
    width: 100%;
    min-width: 100%;
    background: var(--color-second-button-bg)
}

.main-comment-form__alert {
    color: var(--color-title)
}

.main-comment-form__alert {
    display: none
}

.main-comment-form__alert.success {
    display: flex
}

@media (max-width: 850px) {
    .main-comment-form__form {
        grid-template-columns:1fr
    }

    .main-comment-form__textarea {
        grid-row: 3;
        grid-column: 1
    }
}

.main-comments {
    margin-top: 24px
}

.main-comment {
    position: relative;
    padding: 1rem;
    border-radius: .75rem;
    background: var(--color-faq-item);
    color: var(--color-title);
    margin-top: 16px
}

.main-comment__author {
    font-size: 24px;
    margin: 0 0 16px 0
}

.main-comment__date {
    margin: 10px 0;
    display: block
}

.main-relink__item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer
}

.main-relink__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: .75rem;
    justify-content: center
}

.main-relink__item img {
    max-width: 56px
}

.main-relink__title {
    color: var(--color-white);
    font-family: var(--ff-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem
}


@media (max-width: 1023px) {
    .main-relink__list {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 650px) {
    .main-relink__list {
        grid-template-columns:1fr
    }

}

.last-modified-date time {
    color: var(--color-footer-text)
}

.page._active {
    overflow: hidden;
}

.popup-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 900
}

.popup-bg.active {
    display: flex;
    max-width: 100%;
}

.popup {
    width: 1243px
}

.popup .popup__cross {
    cursor: pointer
}

.slots-popup {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden
}

.slots-popup .slots-popup__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 16px 12px 20px;
    background: var(--color-accent)
}

.slots-popup .slots-popup__title {
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    color: #FFF;
    flex: 1 1;
    margin-top: 0;
    margin-bottom: 0
}

.slots-popup .slots-popup__buttons {
    display: flex;
    justify-content: center;
    flex: 1 1
}

.slots-popup .slots__button {
    width: auto;
    padding: 10px 12.5px
}

.slots-popup .slots-popup__cross-container {
    display: flex;
    justify-content: flex-end;
    flex: 1 1
}

.slots-popup .slots-popup__content {
    min-height: 630px;
    background-color: #12192B;
    aspect-ratio: 16 / 9
}

.slots-popup .slots-popup__iframe {
    width: 100%;
    height: 100%
}

@media (max-width: 1412px) {
    .popup {
        margin: 0 20px
    }

    .slots-popup .slots-popup__content {
        min-height: 540px
    }
}

@media (max-width: 1200px) {
    .popup {
        margin: 0 16px
    }
}

@media (max-width: 760px) {
    .slots-popup .slots-popup__content {
        flex: 1
    }

    .main-header__nav-mobile {
        max-width: 95%;
    }

    .toc__title {
        width: 100%
    }

    .slots-popup__iframe {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        z-index: 2
    }

    .slots-popup .slots-popup__title {
        order: 1
    }

    .slots-popup .slots-popup__buttons {
        order: 3;
        flex: 1 1 100%;
        margin-top: 8px
    }

    .slots-popup .slots-popup__cross-container {
        flex: 0 0 32px;
        order: 2
    }

    .slots-popup .slots-popup__header {
        padding: 12px 20px
    }
}

.main-buttons-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.main-buttons-content .btn {
    display: flex;
    gap: 5px;
    align-items: center;
}

.main-buttons-content .btn img {
    max-width: 24px;
}

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

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

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

.main-footer__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.main-footer__links img {
    display: block;
    height: auto;
    max-height: 50px;
    width: auto;
}