@charset "UTF-8";
:root {
    --color-header: #12192c;
    --color-header-navigation-link: #fff;
    --color-header-navigation-link-hover: #91c300;


    --color-body: #0f1419;
    --color-text: #fff;
    --color-title: #fff;
    --color-link: #dcff00;
    --color-accent: #4eb3ff;
    --color-body-thumb: #33a2f6;
    --color-body-track: #12192c;

    --color-footer: #090f1e;
    --color-footer-navigation-link: #fff;
    --color-footer-navigation-link-hover: #91c300;
    --color-footer-text: #797f92;

    --color-content-button-bg: #089e4e;
    --color-content-button: #fff;
    --content-button-gradient: var(--color-content-button-bg);

    --color-scroll-to-top: #555a78;
    --color-arrow-scroll-to-top: #fff;

    --color-table-bg: #f1f5ff;
    --color-table-border: #d6ddf0;
    --color-table-th-bg: #000;
    --color-table-th-color: #fff;
    --color-table-td-color: #000;

    --color-blocks-text-image: var(--color-body);

    --color-faq-item: #f1f5ff;
    --color-faq-item-open: #2cb865;
    --color-faq-item-title: #12192c;
    --color-faq-item-title-open: #fff;

    --color-toc-bg: #fff;
    --color-toc-title: #000;
    --color-toc-item: #7685ad;
    --color-toc-item-hover: #33a2f6;

    --color-field: #000000;
    --color-field-bg: #ffffff;
    --width: 1480px;
    --display-width: var(--width);
    --offsets: 30px;
    --ff-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit
}

.page,
.post {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-x: hidden;
    font-family: var(--ff-primary);
    color: var(--color-text);
    background-color: var(--color-body);
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 767px) {
    .page,
    .post {
        font-size: 14px;
        line-height: 22px;
    }
}

.page-main {
    margin: 32px 0;
    flex-grow: 1;
}

::-webkit-scrollbar {
    width: 5px;
    height: 15px
}

::-webkit-scrollbar-thumb {
    background: #697387;
    border: 0;
    border-radius: 0
}

::-webkit-scrollbar-thumb:hover {
    background: #697387
}

::-webkit-scrollbar-track {
    background: #2d2f3c;
    border-radius: 0
}

@media only screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width:0
    }
}


.container {
    margin: 0 auto;
    padding: 0 var(--offsets);
    max-width: var(--display-width)
}

.container-full {
    max-width: 100%
}

p {
    margin-top: 1rem;
}

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

a:hover {
    text-decoration: none
}

.wp-block-list {
    padding-left: 25px;
    display: grid;
    gap: 0.5rem;
}

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


img {
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 1rem;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.wp-block-heading {
    margin-top: 0;
    color: var(--color-title);
}

* + .wp-block-heading {
    margin-top: 32px;
}

h1 {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
}

h2 {
    margin-bottom: 1rem;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

h3 {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

h4, h5, h6 {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.wrapper > .wp-block-table,
.wrapper > blockquote,
.wrapper > .wp-block-heading
.wrapper > .wp-block-list,
.wrapper > p,
.wrapper > .content-button {
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--offsets);
    padding-right: var(--offsets);
    max-width: var(--display-width)
}

.wrapper > .wp-block-list {
    padding-left: 50px
}

.wrapper blockquote, blockquote {
    margin-top: 1rem;
    border-left: 5px solid var(--color-accent);
    padding: 1rem var(--offsets) 1rem 2rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    background-color: #f0f8ffff
}


.wrapper {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 64px;
}

.wrapper > * {
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--offsets);
    padding-right: var(--offsets);
    max-width: var(--display-width);
}

@media (max-width: 1520px) {
    .wrapper > * {
        margin-right: 0;
        margin-left: 0;
        padding-left: var(--offsets);
        padding-right: var(--offsets);
    }
}

.wp-block-table {
    overflow: auto
}

.wp-block-table::-webkit-scrollbar {
    height: 5px;
}

.wp-block-table table {
    margin-top: 24px;
    /*border-collapse: collapse;*/
    width: 100%;
    border-radius: 12px;
    border: 12px solid #323443;
    border-top: none;
    background: #323443;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;

}

table, th, td {
    -webkit-border-collapse: collapse;
}

table {
    border-spacing: 0;
}

.wp-block-table table:not(:has(thead)) {
    border-top: 12px solid #323443;
}

.wp-block-table table thead {
    border-bottom: none
}

.wp-block-table table th {
    padding: .5rem 1rem;
    text-align: center;
    color: #c1c1c1;
}

.wp-block-table tbody {
    background: #1b1f28;
}

.wp-block-table tbody tr:nth-of-type(even) td {
    background-color: #232832;
}

.wp-block-table table td {
    padding: .7rem 1rem;
}

.wp-block-table table td ol,
.wp-block-table table td ul {
    padding-left: 18px;
}

.wp-block-table table td:not(:last-child) {
    border-right: 4px solid #1b1f28;
}

.wp-block-table .has-fixed-layout {
    table-layout: auto
}

.wp-block-table .has-fixed-layout th {
    word-break: normal
}

.wp-block-table .has-fixed-layout td {
    word-break: normal
}

.container .container {
    padding-right: 0;
    padding-left: 0
}

.visually-hidden {
    position: absolute;
    clip-path: inset(100%);
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    clip: rect(0 0 0 0)
}

.last-modified-date {
    display: inline-block;
    margin: 1rem auto;
    border-radius: 5px;
    padding: 10px 30px;
    width: 100%;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(300deg, #fff0 0, #fff0 5%, #cccf 50%, #fff 95%, #fff 100%)
}

.content-button {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.content-button.alight-left {
    justify-content: flex-start;
}

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

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

.content-button__control {
    position: relative;
}

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

.content-button__control._gift-btn {
    padding-left: 72px;
}

.content-button__control {
    min-width: 200px;
    width: fit-content;
}


.page-header {
    background-color: #1b1f28;
}

.page-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 8px var(--offsets);
}

.page-header__logo {
    flex-shrink: 0;
    max-width: 120px;
    margin-right: 32px;
}

.header-logo__link {
    display: flex;
}

.page-header__logo img {
    max-height: 40px;
    object-fit: contain;
}

.page-header__nav {
    flex: 1 1;
}

.page-header__buttons {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    gap: 8px;
}

.page-header__burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid rgba(140, 150, 170, .5);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.page-header__burger span {
    display: block;
    border-radius: 20%;
    width: 100%;
    height: 2px;
    background-color: var(--color-header-navigation-link);
    transform-origin: center;
    transition: 250ms
}

.page-header__burger.active span:nth-of-type(1) {
    transform: translateY(10px) rotateZ(45deg)
}

.page-header__burger.active span:nth-of-type(2) {
    transform: scaleX(0)
}

.page-header__burger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotateZ(-45deg)
}

.page-header__nav + .page-header__buttons {
    margin-left: 20px
}

.main-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%
}

@media (max-width: 1100px) {
    .page-header__nav {
        flex: 1 1 100%;
        order: 10;
        margin-top: 8px;
    }

    .main-nav__list {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .page-header__nav {
        margin-top: unset;
    }
}

@media (max-width: 768px) {
    .page-header__button {
        min-width: unset;
        flex: 1 1;
    }
}

.main-nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    border-radius: 8px;
    padding: 4px 8px;
    transition: all 0.2s ease-in-out;
}

.main-nav__item:hover {
    background-color: #323746;
}

.main-nav__item:hover:has(.sub-menu) {
    border-radius: 8px 8px 0 0;
}

.main-nav__item:hover > a::after {
    transform: scaleX(1)
}

.main-nav__item:hover .sub-menu {
    opacity: 1;
    pointer-events: auto
}

.main-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    color: var(--color-header-navigation-link);
    transition: .3s ease-in-out;
    gap: 8px;
    min-height: 40px;
}

.main-nav__link > svg {
    max-width: 28px;
    max-height: 28px;
}

.main-nav__link img {
    width: auto;
    height: 1.2rem;
    object-fit: contain
}

.main-nav__link--current, .main-nav__link:hover {
    color: var(--color-header-navigation-link-hover)
}

.main-nav__item--has-children {
    position: relative
}

.main-nav__item--has-children .main-nav__link {
    margin-right: 0;
    padding-right: 4px;
}

.main-nav__item--has-children.active .sub-menu__arrow svg {
    transform: rotateZ(180deg)
}

.main-nav__item--has-children.active .sub-menu {
    position: relative;
    top: 0;
    display: grid;
    margin: 12px 0;
    padding: 0 1rem;
    opacity: 1;
    pointer-events: auto
}

.main-nav__item--has-children.active .sub-menu::before {
    display: none
}

.sub-menu__arrow svg {
    width: 100%;
    height: auto;
    max-width: 8px;
    transition: 200ms
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    list-style: none;
    border-radius: 0 0 8px 8px;
    background-color: #323746;
    opacity: 0;
    transition: 250ms;
    width: auto;
    pointer-events: none;
    display: grid;
    gap: 12px;
    padding: 4px 8px;
    min-width: 100%;
}

.sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: -.5rem;
    width: 100%;
    height: .5rem;
    background-color: transparent
}

.sub-menu:hover {
    color: var(--color-header)
}

.sub-menu__link {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
    text-decoration: none;
    color: #9ba0b9;
    transition: .2s ease-in-out
}

.sub-menu__link img {
    width: auto;
    height: 1.2rem;
    object-fit: contain
}

.sub-menu__link--current, .sub-menu__link:hover {
    color: var(--color-header-navigation-link-hover)
}

.bonus {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    grid-template-columns: 1fr auto;
    border-radius: 12px;
    border: 2px solid #dcff31;
    padding: 20px;
    gap: 8px 12px;
    min-height: 240px;
    height: 100%;
    background: linear-gradient(360deg, #0f1419 60%, #3a3a3b 100%);
}

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

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

.bonus._anim-border:before {
    width: 1000px;
    top: 0;
    height: 1000px;
    right: 0;
    bottom: 0;
    left: -200px;
    background-color: #dcff00;
    background: #dcff00;
    background: conic-gradient(#dcff00, #0f1419);
    animation: rotate 2s linear infinite;
    z-index: -1;
}

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

.bonus._anim-border:after {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background: linear-gradient(360deg, #0f1419 60%, #3a3a3b 100%);
    border-radius: 12px;
    z-index: 0;
}

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

.bonus b,
.bonus strong {
    color: #ff3286;
    text-shadow: 0px 0px 8px rgba(255, 50, 134, 0.50);
}

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

.bonus .bonus__description {
    grid-row: 2/3;
    grid-column: 1/2;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    margin-top: 0;
}

.bonus > img {
    grid-row: 1/-1;
    grid-column: 2/3;
    max-width: 146px;
    margin: auto;
}

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

/* Promocode */
.promocode {
    display: flex;
    gap: 8px;
    grid-row: 3/4;
    grid-column: 1/2;
}

.promocode-field {
    flex: 1 1;
    color: #ff3286;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: 2px dashed #ff3286;
    padding: 12px;
    max-width: 220px;
}

.promocode .copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.promocode .copy-btn:hover {
    background: rgba(255, 255, 255, 0.30);
}

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

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

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

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

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

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

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

    .bonus.v2 > img {
        max-width: 126px;
    }

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

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

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

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

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

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

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

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

    .bonus > img {
        max-width: 78px;
    }

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

    .bonus.v2 {
        gap: 8px;
    }

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

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

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

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


.bonus__button._arrow-btn {
    color: #ff3286;
    background-color: transparent;
    border: 1px solid #ff3286;
    padding: 12px;
    transition: 0.2s ease-in-out;
}

.bonus__button._arrow-btn:hover {
    background-color: #ff3286;
    color: var(--color-second-button);
}

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

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

/* Footer */
.page-footer {
    margin-top: 32px;
    padding: 32px 0;
    background-color: #000000;
}

.page-footer__container {
    display: grid;
    gap: 1.5rem;
}

.footer__logo {
    display: flex;
    justify-content: center;
}

.footer__social-list,
.payments-systems {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 12px 20px;
}

.footer__social-list img,
.payments-systems img {
    max-height: 32px;
    width: fit-content;
    object-fit: contain;
}

.page-footer--enable-mobile-button {
    padding-bottom: 80px
}

.footer-col_nav {
    justify-content: flex-start;
    align-items: center;
    flex: 1 1;
}

.page-footer__top {
    display: flex;
    flex-flow: wrap row-reverse;
    gap: 20px
}

.page-footer__dmca {
    margin: 0;
    display: flex;
    justify-content: center;
}

.dmca-badge {
    display: flex
}

.page-footer__copyright {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: var(--color-footer-text);
    margin-top: 0;
}

.footer-nav__list {
    display: flex;
    flex-wrap: ;
    gap: 12px 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav__list .sub-menu {
    margin: .2rem 0
}

.footer-nav__item {
    display: flex;
}

.footer-nav__link {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    color: var(--color-footer-navigation-link);
    transition: .3s ease-in-out
}

.footer-nav__link--current, .footer-nav__link:hover {
    color: var(--color-footer-navigation-link-hover)
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {

    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .footer-col {
        align-items: center;
    }

    .page-footer__nav {
        width: unset;
    }

    .footer-nav__list {
        max-height: unset;
    }

    .footer-col_nav {
        align-items: flex-start;
    }
}

/* FAQ */
* + .faq {
    margin-top: 1rem;
}

.faq__item {
    border-radius: 12px;
    border: 2px solid #dcff31;
    padding: 16px;
}

.faq__item:not(:last-child) {
    margin-bottom: 16px
}

.faq__details {
    outline: 0;
}

.faq__details .faq__question-title {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 8px;
    outline: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.faq__details[open] .faq__question {
    padding-bottom: 16px;
    border-bottom: 1px solid #ffffff26;
}

.faq__question::-webkit-details-marker {
    display: none
}

.faq__question:before {
    content: '';
    display: flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url("../images/faq-question.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.faq__question:after {
    content: '';
    display: flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url("../images/round-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: 250ms
}

.faq__details[open] .faq__question:after {
    transform: unset
}

.faq__question-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-faq-item-title)
}

.faq__question-title svg {
    z-index: 10;
    flex-shrink: 0;
    margin-left: 30px;
    width: 30px;
    height: 30px;
    fill: var(--color-faq-item-title);
    transition: .3s ease-in-out
}

.faq__answer {
    padding: 16px 0 0 0;
}

.faq__answer * {
    margin-top: .8rem;
    font-family: inherit;
    font-weight: 500;
    font-style: normal;
    font-size: inherit;
    line-height: inherit;
}

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

@media (max-width: 767px) {
    .faq__question {
        flex-wrap: wrap;
        gap: 12px;
    }

    .faq__question::after {
        margin-left: auto;
    }

    .faq__question-title {
        order: 3;
        flex: 1 1 100%;
    }

    .faq__question {
        /*padding: 15px 10px;*/
        font-size: 14px;
        line-height: 130%
    }

    .faq__question-title svg {
        margin-left: 15px;
        width: 18px;
        height: 18px;
        fill: var(--color-faq-item-title)
    }
}

/* TOC */
.toc {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    border: 2px solid #dcff31;
    padding: 16px;
    margin: 0;
}

.toc__title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    margin: 0;
    width: 100%;
    cursor: pointer;
}

.toc.active .toc__title {
    margin-bottom: 12px;
}

.toc__title::after {
    content: '';
    display: flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url("../images/round-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: 250ms
}

.toc.active .toc__title::after {
    transform: unset;
}


.toc__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    max-height: 0
}

.toc__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    text-decoration: none;
    color: #FFF;
    transition: .3s ease-in-out;
    border-radius: 8px;
    border: 1px solid #dcff31;
}

.toc__link:before {
    content: '';
    display: flex;
    width: 12px;
    min-width: 12px;
    height: 12px;
    background-image: url("../images/list-marker.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.toc.active .toc__list {
    max-height: 100%
}

.page-single {
    margin: 0 auto 3rem;
    padding: 0 10px;
    max-width: var(--display-width)
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 4px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    gap: 10px;
}

.breadcrumbs__link {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    color: #fff;
    padding: 4px 0;
    transition: color .2s ease-in-out
}

.breadcrumbs__link svg {
    margin-left: 10px;
}

.breadcrumbs__link--no-active,
.breadcrumbs__link:hover {
    color: #efeded8c;
}

/* Mobile button */
.mobile-button {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    border-radius: 12px 12px 0 0;
    padding: 8px;
    gap: 0 8px;
    background-color: #dcff31;
    color: #fff;
    width: 100%;
    border: none;
    cursor: pointer;
}

.mobile-button .get-image {
    grid-column: 1/2;
    grid-row: 1/3;
}

.mobile-button .get-image img {
    max-width: 58px;
    height: auto;
}


.mobile-button .get-image {
    grid-column: 1/2;
    grid-row: 1/3;
}

.mobile-button .mobile-button__title {
    grid-column: 2/3;
    grid-row: 1/2;
    text-align: left;
    margin-top: 0;
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    text-transform: uppercase;
    color: #000;
}

.mobile-button .mobile-button__bonus {
    grid-column: 2/3;
    grid-row: 2/3;
    text-align: left;
    color: #ff3286;
    margin-top: 0;
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    text-transform: uppercase;
}

.mobile-button__btn {
    display: flex;
    align-items: center;
    grid-column: 3/4;
    grid-row: 1/3;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #ff3286;
    margin-top: 0;
}


.background-block {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /*background-color: var(--color-blocks-text-image)*/
}

/*.advantages {*/
/*    display: -ms-grid;*/
/*    display: grid;*/
/*    gap: 20px*/
/*}*/

/*.advantages--6 {*/
/*    -ms-grid-columns:(1fr) [ 6 ];*/
/*    grid-template-columns:repeat(6, 1fr)*/
/*}*/

/*.advantages--5 {*/
/*    -ms-grid-columns:(1fr) [ 5 ];*/
/*    grid-template-columns:repeat(5, 1fr)*/
/*}*/

/*.advantages--4 {*/
/*    -ms-grid-columns:(1fr) [ 4 ];*/
/*    grid-template-columns:repeat(4, 1fr)*/
/*}*/

/*.advantages--3 {*/
/*    -ms-grid-columns:(1fr) [ 3 ];*/
/*    grid-template-columns:repeat(3, 1fr)*/
/*}*/

/*.advantages--2 {*/
/*    -ms-grid-columns:(1fr) [ 2 ];*/
/*    grid-template-columns:repeat(2, 1fr)*/
/*}*/

/*.advantages--1 {*/
/*    -ms-grid-columns: 1fr;*/
/*    grid-template-columns:1fr*/
/*}*/

/*.advantages__item {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-box-direction: normal;*/
/*    -ms-flex-direction: column;*/
/*    flex-direction: column;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    border-radius: 10px;*/
/*    padding: 1rem;*/
/*    height: 100%;*/
/*    -webkit-box-shadow: 0 0 10px 0 #0000007f;*/
/*    box-shadow: 0 0 10px 0 #0000007f;*/
/*    text-align: center*/
/*}*/

/*.advantages__image {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    margin: 0 0 10px*/
/*}*/

/*.advantages__image .get-image {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center*/
/*}*/

/*.advantages__image img {*/
/*    max-width: 150px;*/
/*    max-height: 150px;*/
/*    -o-object-fit: contain;*/
/*    object-fit: contain*/
/*}*/

/*.advantages__title {*/
/*    margin: 0 0 10px*/
/*}*/

/*.advantages__text {*/
/*    margin: 0*/
/*}*/

/*.difference {*/
/*    display: -ms-grid;*/
/*    display: grid;*/
/*    -ms-grid-columns:(1fr) [ 2 ];*/
/*    grid-template-columns:repeat(2, 1fr);*/
/*    gap: 20px*/
/*}*/

/*.difference__element {*/
/*    border: 1px solid var(--color-accent);*/
/*    border-radius: 10px;*/
/*    padding: 1rem*/
/*}*/

/*.difference__list {*/
/*    list-style: none;*/
/*    padding-left: 0*/
/*}*/

/*.difference__item {*/
/*    position: relative;*/
/*    margin: 1rem 0;*/
/*    padding-left: 25px*/
/*}*/

/*.difference__item::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    background-position: center center;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    -webkit-transform: translateY(-50%);*/
/*    -ms-transform: translateY(-50%);*/
/*    transform: translateY(-50%)*/
/*}*/

/*.difference__item_plus::before {*/
/*    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzY3LjgwNSAzNjcuODA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNjcuODA1IDM2Ny44MDU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIHN0eWxlPSJmaWxsOiMzQkI1NEE7IiBkPSJNMTgzLjkwMywwLjAwMWMxMDEuNTY2LDAsMTgzLjkwMiw4Mi4zMzYsMTgzLjkwMiwxODMuOTAycy04Mi4zMzYsMTgzLjkwMi0xODMuOTAyLDE4My45MDINCgkJUzAuMDAxLDI4NS40NjksMC4wMDEsMTgzLjkwM2wwLDBDLTAuMjg4LDgyLjYyNSw4MS41NzksMC4yOSwxODIuODU2LDAuMDAxQzE4My4yMDUsMCwxODMuNTU0LDAsMTgzLjkwMywwLjAwMXoiLz4NCgk8cG9seWdvbiBzdHlsZT0iZmlsbDojRDRFMUY0OyIgcG9pbnRzPSIyODUuNzgsMTMzLjIyNSAxNTUuMTY4LDI2My44MzcgODIuMDI1LDE5MS4yMTcgMTExLjgwNSwxNjEuOTYgMTU1LjE2OCwyMDQuODAxIA0KCQkyNTYuMDAxLDEwMy45NjggCSIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)*/
/*}*/

/*.difference__item_minus::before {*/
/*    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiBjbGFzcz0iIj48Zz48ZWxsaXBzZSBzdHlsZT0iZmlsbDojRTA0RjVGOyIgY3g9IjI1NiIgY3k9IjI1NiIgcng9IjI1NiIgcnk9IjI1NS44MzIiIGRhdGEtb3JpZ2luYWw9IiNFMDRGNUYiIGNsYXNzPSIiLz48cmVjdCB4PSIxMTMuMiIgeT0iMjI4IiBzdHlsZT0iZmlsbDojRkZGRkZGIiB3aWR0aD0iMjg1LjY3MiIgaGVpZ2h0PSI1NiIgZGF0YS1vcmlnaW5hbD0iI0ZGRDA3RCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iI0ZGRDA3RCIvPjwvZz4gPC9zdmc+Cg==)*/
/*}*/

/*.comments {*/
/*    margin: 2rem -10px -10px*/
/*}*/

/*.comments .comment {*/
/*    margin: 10px*/
/*}*/

/*.comments .comment__author {*/
/*    display: inline-block;*/
/*    margin-bottom: 0;*/
/*    font-weight: 500;*/
/*    font-size: 1.2rem*/
/*}*/

/*.comments .comment__date {*/
/*    margin-left: 15px;*/
/*    font-size: .9rem;*/
/*    color: #a2a2a2*/
/*}*/

/*.comments .comment__content {*/
/*    margin-top: 0;*/
/*    margin-left: 10px;*/
/*    border-left: 1px solid var(--color-accent);*/
/*    padding: 10px 0 0 10px;*/
/*    font-weight: 300;*/
/*    font-size: 1rem*/
/*}*/

/*.comments .comment__reply {*/
/*    outline: 0;*/
/*    border: none;*/
/*    color: #888;*/
/*    background-color: transparent;*/
/*    cursor: pointer*/
/*}*/

/*.comments .comment__child {*/
/*    position: relative;*/
/*    padding-left: 20px*/
/*}*/

/*.comments .comment:not(:first-child) {*/
/*    margin-top: 25px*/
/*}*/

/*.comment__karma {*/
/*    display: -webkit-inline-box;*/
/*    display: -ms-inline-flexbox;*/
/*    display: inline-flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    margin-left: 15px*/
/*}*/

/*.comment__karma .value {*/
/*    font-weight: 300;*/
/*    font-size: 1rem*/
/*}*/

/*.karma__control {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    margin-left: 5px;*/
/*    border: none;*/
/*    background-color: transparent;*/
/*    cursor: pointer*/
/*}*/

/*.karma__control svg {*/
/*    margin-right: 5px;*/
/*    width: 17px;*/
/*    height: 17px;*/
/*    fill: #343e57;*/
/*    -webkit-transition: .3s ease-in-out;*/
/*    -o-transition: .3s ease-in-out;*/
/*    transition: .3s ease-in-out;*/
/*    pointer-events: none*/
/*}*/

/*.comment-footer {*/
/*    margin-top: 2rem*/
/*}*/

/*.comment-form-footer {*/
/*    margin: 3rem 0*/
/*}*/

/*.comment-form__title {*/
/*    text-align: center*/
/*}*/

/*.comment-form__form {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -ms-flex-wrap: wrap;*/
/*    flex-wrap: wrap;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: center;*/
/*    -ms-flex-pack: center;*/
/*    justify-content: center;*/
/*    margin: 20px auto 0;*/
/*    max-width: 700px*/
/*}*/

/*.comment-form__field {*/
/*    outline: 0;*/
/*    border: 1px solid var(--color-field-bg);*/
/*    border-radius: 5px;*/
/*    padding: 10px;*/
/*    font-family: var(--ff-primary);*/
/*    font-size: 1rem;*/
/*    color: var(--color-field);*/
/*    background-color: var(--color-field-bg);*/
/*    -webkit-transition: 250ms;*/
/*    -o-transition: 250ms;*/
/*    transition: 250ms*/
/*}*/

/*.comment-form__field::-webkit-input-placeholder {*/
/*    font-family: var(--ff-primary);*/
/*    color: var(--color-field);*/
/*    opacity: .7*/
/*}*/

/*.comment-form__field::-moz-placeholder {*/
/*    font-family: var(--ff-primary);*/
/*    color: var(--color-field);*/
/*    opacity: .7*/
/*}*/

/*.comment-form__field:-ms-input-placeholder {*/
/*    font-family: var(--ff-primary);*/
/*    color: var(--color-field);*/
/*    opacity: .7*/
/*}*/

/*.comment-form__field::-ms-input-placeholder {*/
/*    font-family: var(--ff-primary);*/
/*    color: var(--color-field);*/
/*    opacity: .7*/
/*}*/

/*.comment-form__field::placeholder {*/
/*    font-family: var(--ff-primary);*/
/*    color: var(--color-field);*/
/*    opacity: .7*/
/*}*/

/*.comment-form__field:active, .comment-form__field:focus, .comment-form__field:hover {*/
/*    border: 1px solid var(--color-accent)*/
/*}*/

/*.comment-form__field.error {*/
/*    border: 1px solid #dc3545;*/
/*    background-color: rgba(220, 53, 69, .05)*/
/*}*/

/*.comment-form__input {*/
/*    margin: 10px;*/
/*    width: calc(100% / 2 - 20px)*/
/*}*/

/*.comment-form__textarea {*/
/*    margin: 10px;*/
/*    width: calc(100% - 20px);*/
/*    min-height: 100px;*/
/*    resize: none*/
/*}*/

/*.comment-form__button {*/
/*    display: inline-block;*/
/*    margin: 10px;*/
/*    border: none;*/
/*    border-radius: 5px;*/
/*    padding: .7rem 2rem;*/
/*    font-weight: 400;*/
/*    font-size: 1.2rem;*/
/*    text-decoration: none;*/
/*    color: var(--color-content-button);*/
/*    background: var(--content-button-gradient);*/
/*    -webkit-transform-origin: center;*/
/*    -ms-transform-origin: center;*/
/*    transform-origin: center;*/
/*    -webkit-transition: .3s ease-in-out;*/
/*    -o-transition: .3s ease-in-out;*/
/*    transition: .3s ease-in-out;*/
/*    cursor: pointer*/
/*}*/

/*.comment-form__button:hover {*/
/*    -webkit-transform: translateY(-3px);*/
/*    -ms-transform: translateY(-3px);*/
/*    transform: translateY(-3px)*/
/*}*/

/*.comment-form__alert {*/
/*    -ms-flex-item-align: center;*/
/*    -ms-grid-row-align: center;*/
/*    align-self: center;*/
/*    width: calc(100% - 20px);*/
/*    font-weight: 300;*/
/*    font-size: .8rem;*/
/*    text-align: center;*/
/*    -webkit-transition: opacity 250ms;*/
/*    -o-transition: opacity 250ms;*/
/*    transition: opacity 250ms*/
/*}*/

/*.comment-form__alert span {*/
/*    display: none*/
/*}*/

/*.comment-form__alert.error .error {*/
/*    display: block;*/
/*    color: #dc3545*/
/*}*/

/*.comment-form__alert.success .success {*/
/*    display: block;*/
/*    color: #28a745*/
/*}*/

.page-404 .container {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.page-404 {
    background-image: url(../images/404.png);
    background-position: -100px
}

.page-404__title {
    margin-top: 2rem;
    font-size: 5rem;
    line-height: 6rem;
    text-align: center
}

.page-404__subtitle {
    margin: 0;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center
}

.page-404__link {
    display: inline-block;
    margin: 2rem auto 0;
    border: none;
    border-radius: 5px;
    padding: .7rem 2rem;
    width: fit-content;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--color-content-button);
    background: var(--content-button-gradient);
    transform-origin: center;
    transition: 150ms;
    cursor: pointer
}

.page-404__link:hover {
    transform: translateY(-3px)
}

.scroll-top {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 10
}

.scroll-top__button {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 20px 5px #223c5059;
    background-color: var(--color-scroll-to-top);
    transition: transform .3s ease-in-out;
    cursor: pointer
}

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

.scroll-top__button:hover {
    transform: translateY(3px)
}

/*.author-block {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: start;*/
/*    -ms-flex-align: start;*/
/*    align-items: flex-start;*/
/*    -webkit-box-pack: start;*/
/*    -ms-flex-pack: start;*/
/*    justify-content: flex-start;*/
/*    padding: 1rem 0*/
/*}*/

/*.author-block_outlined {*/
/*    display: -webkit-inline-box;*/
/*    display: -ms-inline-flexbox;*/
/*    display: inline-flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    margin: 0 0 1rem;*/
/*    border: 1px solid var(--color-accent);*/
/*    padding: 1rem*/
/*}*/

/*.author-block__avatar {*/
/*    width: 60px;*/
/*    height: 60px*/
/*}*/

/*.author-block__avatar img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    -o-object-fit: cover;*/
/*    object-fit: cover;*/
/*    -o-object-position: center;*/
/*    object-position: center*/
/*}*/

/*.author-block__avatar_scaled {*/
/*    width: 150px;*/
/*    height: 150px*/
/*}*/

/*.author-block__content {*/
/*    margin-left: 1rem;*/
/*    max-width: 600px*/
/*}*/

/*.author-block__name {*/
/*    font-weight: 600;*/
/*    font-size: 1rem*/
/*}*/

/*.author-block__description {*/
/*    margin-top: .5rem;*/
/*    font-weight: 300;*/
/*    font-size: .9rem;*/
/*    opacity: .8*/
/*}*/

/*.author-block__social {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: start;*/
/*    -ms-flex-pack: start;*/
/*    justify-content: flex-start;*/
/*    list-style: none;*/
/*    margin: .5rem -5px -5px;*/
/*    padding-left: 0*/
/*}*/

/*.author-block__social li {*/
/*    margin: 5px;*/
/*    width: 25px;*/
/*    height: 25px*/
/*}*/

/*.author-block__social li:hover {*/
/*    opacity: .7*/
/*}*/

/* Old cookie law */

#cookie-law-div {
    z-index: 10000000;
    position: fixed;
    bottom: 18px;
    right: 80px;
    padding: 1em;
    max-width: 400px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    font-size: 15px;
    box-shadow: rgba(23, 43, 99, .4) 0 7px 28px
}

#cookie-law-div a {
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5)
}

#cookie-law-div a:hover {
    opacity: .7
}

#cookie-law-div p {
    margin: 0;
    color: #000;
    padding-right: 50px
}

#cookie-law-div button {
    height: 20px;
    width: 20px;
    position: absolute;
    right: .5em;
    top: 20px;
    align-self: center;
    line-height: 1;
    color: #fff;
    background-color: #000;
    border: none;
    opacity: .6;
    font-size: 12px;
    cursor: pointer;
    border-radius: 50px
}

#cookie-law-div button:hover {
    opacity: 1
}

.acceptButton {
    width: 113px !important;
    background-color: green !important;
    top: 124px !important
}

@media screen and (max-width: 700px) {
    #cookie-law-div p {
        padding-bottom: 36px
    }

    .acceptButton {
        left: calc(50% - 60px)
    }
}

#cookie-law-div {
    border-radius: 0;
    max-width: 100%;
    right: 0;
    bottom: 0
}



.video-v2 {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem
}

.video-v2__container {
    position: relative;
    width: 100%;
    /*max-width: 800px*/
}

.video-v2.align-left {
    justify-content: flex-start
}

.video-v2.align-center {
    justify-content: center
}

.video-v2.align-right {
    justify-content: flex-end
}

.video-v2__player {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 16/9;
    max-height: 488px;
    background-color: #454545;
}

.video-v2__button {
    position: absolute;
    width: 44px;
    height: 44px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: none;
    border-radius: 22px;
    background: #575757;
    transform: translate(-50%, -50%);
    transition: .3s ease-in-out;
    cursor: pointer
}

.video-v2__button:hover {
    opacity: .5;
}

.video-v2._active .video-v2__button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.video-v2._active .video-v2__player {
    cursor: pointer
}

.video-v2__button-shape {
    fill: #0009
}

.video-v2__button-icon {
    fill: #fff
}

.video-v2__button:hover .video-v2__button-shape {
    fill: red
}

.video-v2__button svg path {
    transition: .3s ease-in-out
}

* + .screenshot-gallery {
    margin-top: 2rem
}

@media (hover: hover), screen and (min-width: 0\0
) {
    .toc__link:focus, .toc__link:hover {
        color: #ff3286
    }

    .gbtn:focus, .gbtn:hover {
        background-color: var(--color-accent) !important;
        opacity: 1
    }
}

@media (hover: hover), screen and (min-width: 0 \0
) {
    .social__link:focus img, .social__link:focus svg, .social__link:hover img, .social__link:hover svg {
        transform: scale(1.2)
    }
}

@media (min-width: 768px) {
    .mobile-button {
        display: none
    }
}

@media (min-width: 1024px) {
    .main-nav__item--has-children:hover .sub-menu__arrow svg {
        transform: rotateZ(180deg)
    }

    .sub-menu__arrow {
        pointer-events: none
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --offsets: 20px
    }
}

@media (max-width: 1280px) {
    .advantages--6 {
        grid-template-columns:repeat(5, 1fr)
    }

    .advantages--5 {

        grid-template-columns:repeat(4, 1fr)
    }

    .advantages--4 {

        grid-template-columns:repeat(3, 1fr)
    }
}


@media screen and (max-width: 1024px) {
    :root {
        --offsets: 16px
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 16px
    }

    .page-header__container {
        position: relative;
        justify-content: space-between;
        padding: 8px var(--offsets)
    }

    .page-header__logo {
        max-width: 100px
    }

    .page-header__nav {
        order: 3
    }

    .page-header__buttons {
        order: 2
    }

    .page-header__burger {
        display: flex;
        order: 3;
        margin-left: 20px;
    }

    .page-header__nav + .page-header__buttons {
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin-right: calc(-100vw / 2 + 100% / 2) !important;
        margin-left: calc(-100vw / 2 + 100% / 2) !important;
        max-width: 100vw !important;
        background-color: #1b1f28;
        opacity: 0;
        transition: opacity 250ms;
        pointer-events: none
    }

    .main-nav.active {
        z-index: 9999;
        opacity: 1;
        pointer-events: auto
    }

    .main-nav__list {
        flex-direction: column;
        align-items: flex-start;
        margin: 32px 16px 12px 16px
    }

    .main-nav__item {
        width: 100%;
        border-radius: 0;
    }

    .main-nav__item:not(:last-child) {
        border-bottom: 1px solid #2d2f3c;
    }

    .main-nav__link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 32px;
    }

    .main-nav__item--has-children {
        flex-direction: column;
        align-items: flex-start
    }

    .sub-menu__arrow svg {
        transform: rotate(0)
    }

    .sub-menu__arrow {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        padding: 16px 5px 16px 30%;
        width: fit-content;
        transform: none;
        pointer-events: auto
    }

    .sub-menu {
        display: none;
        width: 100%;
        background: none;
    }

    .main-nav__item--has-children.active {
        background-color: #323746;
    }

    .main-nav__item--has-children.active .sub-menu {
        padding: 0 0 0 32px;
    }

    .sub-menu__link {
        justify-content: flex-start;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px
    }

    .page-footer__top .get-image {
        display: flex;
        flex-basis: 100%;
        justify-content: center;
        order: -1
    }

    .page-footer__widget {
        flex-grow: 1
    }

    .page-footer__widget + .page-footer__widget {
        margin-right: 0
    }

    .page-footer__widget + .get-image {
        margin: 0
    }

    .advantages--6 {

        grid-template-columns:repeat(4, 1fr)
    }

    .advantages--5 {
        grid-template-columns:repeat(3, 1fr)
    }

    .advantages--2, .advantages--3 {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 800px) {
    .wrapper:first-child .columns__item--content {
        display: flex;
        flex-direction: column
    }

    .wrapper:first-child .columns__item--content h1 {
        order: -2
    }
}

@media (max-width: 1100px) {
    .wrapper {
        margin-bottom: 1rem;
        padding: 0 13px;
    }
}

@media (max-width: 767px) {
    .wrapper {
        padding: 0;
    }

    .content-button {
        margin-top: 1rem
    }

    .faq__details {
        border-radius: 5px
    }

    .toc__nav {
        flex-direction: column
    }

    .toc__title::after {
        display: inline-block
    }

    .toc__title {
        margin: 0;
        width: 100%
    }

    .toc__list {
        width: 100%
    }

    .toc__list.vertical {
        flex-direction: column;
        align-items: center;
        width: 100%
    }

    .toc__list.vertical .toc__item {
        width: 100%
    }

    .toc__list.vertical .toc__item:not(:last-child) {
        margin-right: 0
    }

    .toc__link {
        width: 100%;
        text-align: center
    }

    .toc.active .toc__list {
        margin-top: 1rem
    }

    .advantages--6 {

        grid-template-columns:repeat(3, 1fr)
    }

    .advantages--4, .advantages--5 {

        grid-template-columns:repeat(2, 1fr)
    }

    .advantages--2, .advantages--3, .difference {
        grid-template-columns:1fr
    }

    .screenshot-gallery__list {
        overflow-x: auto;
        width: 100%;
        max-width: 980px
    }

    .screenshot-gallery__item {
        min-width: 300px;
        max-width: 325px
    }

    .tabs__header-button {
        cursor: auto
    }

    .tabs--horizontal .tabs__header-button {
        padding: 8px;
        font-size: 18px;
        line-height: 24px
    }
}

@media (max-width: 700px) {
    html {
        font-size: 15px
    }
}

@media screen and (max-width: 700px) {
    #cookie-law-div p {
        padding-bottom: 36px
    }

    .acceptButton {
        left: calc(50% - 60px)
    }
}

@media (max-width: 650px) {
    .sub-menu {
        max-width: 100%
    }
}

@media (max-width: 600px) {
    #cookie-law-div {
        right: 0;
        bottom: 0;
        border-radius: 0;
        max-width: 100%
    }
}

@media screen and (max-width: 600px) {
    .acceptButton {
        top: 100px !important
    }

    #cookie-law-div p {
        padding-bottom: 50px
    }
}

.page-footer__widget p {
    margin-top: 0;
}

@media (max-width: 550px) {
    .page-header__buttons {
        margin: 0 -.2rem
    }

    .page-footer__widget {
        flex-basis: 100%
    }

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

    .promocode__link--aff {
        max-width: 100%
    }

    .advantages--6 {
        grid-template-columns:repeat(2, 1fr)
    }

    .advantages--4, .advantages--5 {
        grid-template-columns:1fr
    }
}

@media (max-width: 500px) {
    html {
        font-size: 16px
    }

    .page-header__container {
        flex-wrap: wrap
    }

    .page-header__buttons {
        display: flex;
        align-items: center;
        order: 5;
        margin-top: 1rem;
        width: 100%;
        text-align: center
    }

    .page-header {
        flex-wrap: wrap
    }

    .page-header__button {
        flex-grow: 1
    }

    .comment-form__button, .comment-form__input {
        width: calc(100% - 20px)
    }
}

@media (max-width: 475px) {
    .content-button__control {
        width: 100%
    }

    .advantages--6 {
        grid-template-columns:1fr
    }
}

@media screen and (max-width: 400px) {
    .acceptButton {
        top: 127px !important
    }
}

/* Image block */
.image {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .image {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .image {
        height: 140px;
        margin-bottom: 12px;
    }
}

.image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WP columns */
.wp-block-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    padding: 0 var(--offsets);
    max-width: var(--display-width);
    gap: 20px;
}

@media (max-width: 1023px) {
    .wp-block-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Winners block */
* + .winners {
    margin-top: 1rem;
}

.winners {
    display: flex;
}

.winners .winners__title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    color: #ff3286;
    background-color: #dcff31;
    padding: 8px;
    border-radius: 4px 0 0 4px;
}

.winners .winners__rline {
    display: flex;
    align-items: center;
    flex: 1 1;
    background-color: #2d2f3c;
    overflow: hidden;
    width: max-content;
    border-radius: 0 4px 4px 0;
}

.winners .winners__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 100%;
    animation: scroll 40s linear infinite;
}

.winners .winners__person {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #D2D2D2;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    margin-left: 32px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 3px));
    }
}

.winners .winners__person:before {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url("../images/award.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.winners .winners__reward {
    color: #FFF;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    margin-right: 4px;
}

/* About block-table */
* + .about {
    margin-top: 1rem;
}

.about {
    border: unset;
    background-color: unset;
}

.about tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about .about__about,
.about .about__game-types {
    flex: 0 1 330px;
}

.about .about__payment-methods {
    flex: 1 1;
}

.about tr {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
    border: 2px solid #dcff31;
    padding: 16px;
}

.about tr td {
    border: unset;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    padding: 0;
}

.about tr td:first-child {
    font-size: 23px;
    font-weight: 800;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

.about tr td p {
    color: #fff;
    margin: 0;
}

.about tr td p span {
    color: #ff3286;
    font-weight: 800;
}

.about tr.about__about td p {
    padding: 16px 0;
}

.about tr.about__about td p:not(:last-child),
.about tr.about__game-types td p:not(:last-child) {
    border-bottom: 1px solid #ffffff26;
}

.about tr.about__about td p:first-child,
.about tr.about__game-types td p:first-child {
    padding-top: 0;
}

.about tr.about__game-types td p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
}

.about tr.about__game-types td p:last-child {
    padding-bottom: 0;
}

.about .about__game-types img {
    max-width: 32px;
}

.about .about__payment-methods {
    min-width: 715px;
}

.about .about__payment-methods td:last-child {
    display: flex;
    flex-wrap: wrap;
}

.about .about__payment-methods td {
    display: flex;
}

.about .about__payment-methods td:last-child .col,
.about .about__payment-methods td:last-child .about__mindep,
.about .about__payment-methods td:last-child .about__minwit {
    flex: 1 1 50%;
}

.about .about__payment-methods td:last-child .about__currencies {
    flex: 1 1 100%;
    border-bottom: 1px solid #ffffff26;
    padding-bottom: 16px;
    padding-top: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.about .about__payment-methods td:last-child .about__deposit,
.about .about__payment-methods td:last-child .about__withdrawal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.about .about__payment-methods td:last-child .about__mindep,
.about .about__payment-methods td:last-child .about__minwit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.about .about__payment-methods td:last-child .about__mindep span,
.about .about__payment-methods td:last-child .about__minwit span {
    font-weight: 800;
}

.about .about__payment-methods img {
    max-width: 55px;
}

@media (max-width: 1100px) {
    .about .about__payment-methods td .col:not(:first-child) {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .about tr.about__about td p:last-child {
        padding-bottom: 0;
    }

    .about .about__game-types > td {
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
    }

    .about .about__game-types > td > p {
        flex: 1 1 calc(50% - 10px);
    }

    .about tr.about__about td p:not(:last-child),
    .about tr.about__game-types td p:not(:last-child) {
        border-bottom: unset;
    }

    .about tr.about__game-types td p:last-child {
        padding-bottom: 12px;
    }

    .about .about__payment-methods td:last-child .col,
    .about .about__payment-methods td:last-child .about__mindep,
    .about .about__payment-methods td:last-child .about__minwit {
        flex: 1 1 50%;
        padding: 0;
    }

    .about .about__payment-methods td:last-child .about__mindep,
    .about .about__payment-methods td:last-child .about__minwit {
        margin-top: 16px;
    }

    .about .about__payment-methods td:last-child .col {
        flex: 1 1 100%;
        padding-bottom: 16px;
        margin-top: 16px;
    }

    .about .about__payment-methods td:last-child .about__mindep {
        border-right: 1px solid #ffffff26;
    }

    .about .about__payment-methods td:last-child .col:first-child {
        padding-top: 0;
        margin-top: 0;
    }

    .about .about__payment-methods td:last-child .col:last-child {
        padding-bottom: 0;
    }
}

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

.about .about__payment-methods td .col {
    border-bottom: 1px solid #ffffff26;
    padding-bottom: 16px;
}

.about .about__payment-methods td .col:not(:last-of-type) {
    border-right: 1px solid #ffffff26;
    padding-right: 16px;
}

.about .about__payment-methods td .col:not(:first-child) {
    padding-left: 16px;
}

@media (max-width: 767px) {
    .about .about__payment-methods td .col:not(:first-child) {
        padding-left: 0;
    }

    .about .about__payment-methods td .col:not(:last-of-type) {
        border-right: unset;
    }
}

.about .about__bonuses {
    flex: 0 1 485px;
}

.about .about__bonuses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.about .about__bonuses-list li {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #dcff31;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.about .about__devices,
.about .about__support {
    flex: 1 1;
}

.about .about__devices-list,
.about .about__support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about .about__devices-list li,
.about .about__support-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 calc(50% - 20px);
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
}

.about .about__support img {
    max-width: 32px;
}

.about .about__devices img {
    max-width: 32px;
}

.about .about__software {
    min-width: 280px;
}

.about .about__software img {
    max-width: 146px;
}

.about .about__software td {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

@media (max-width: 1460px) {
    .about .about__about,
    .about .about__game-types {
        flex: 0 1 auto;
    }

    .about .about__payment-methods {
        min-width: unset;
        flex: 1 1 50%;
    }
}

@media (max-width: 1100px) {
    .about .about__about,
    .about .about__game-types,
    .about .about__payment-methods,
    .about .about__bonuses {
        flex: 1 1 calc(50% - 20px);
    }

    .about .about__devices,
    .about .about__software,
    .about .about__support {
        flex: 1 1 30%;
    }

    .about .about__software {
        min-width: unset;
    }
}

@media (max-width: 767px) {
    .about .about__about,
    .about .about__game-types,
    .about .about__payment-methods,
    .about .about__bonuses,
    .about .about__devices,
    .about .about__software,
    .about .about__support {
        flex: 1 1 100%;
    }
}

/* How to */
.how-to {

}

.how-to .how-to__list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-to .how-to__item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 2px solid #dcff31;
    overflow: hidden;
}

.how-to .how-to__counter {
    width: 100%;
    padding: 12px 12px 8px 12px;
    background-color: #dcff31;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    color: #000;
}

.how-to .how-to__content {
    display: grid;
    padding: 16px;
    gap: 0 16px;
    grid-template-columns: repeat(2, 1fr);
}

.how-to .how-to__content > :nth-child(3) {
    margin-top: 0;
}

.how-to img {
    grid-column: 2/3;
    grid-row: 1/10;
}

.how-to .how-to__title {
    grid-column: 1/2;
    margin-top: 0;
    margin-bottom: 8px;
}

.how-to .content-button {
    grid-column: 1/2;
}

.how-to > :not(.how-to__title):not(.content-button) {
    grid-column: 1/2;
}

.how-to .how-to__item:not(:last-child):before {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    margin: auto;
    content: '';
    width: 44px;
    min-width: 44px;
    height: 24px;
    background-image: url("../images/how-to_arrows.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--color-body);
    z-index: 1;
}

.how-to .how-to__item:not(:last-child):after {
    position: relative;
    content: '';
    width: calc(100% - 32px);
    height: 1px;
    background-color: #dcff31;
    margin: 12px auto 27px auto;
}

.how-to .content-button__control {
    min-width: 240px;
}

@media (max-width: 768px) {
    .how-to .how-to__item:not(:last-child):before {
        bottom: 8px;
    }

    .how-to .how-to__item:not(:last-child):after {
        margin: 12px auto 18px auto;
    }

    .how-to .how-to__content {
        grid-template-columns: 1fr;
        padding: 16px 16px 8px 16px;
    }

    .how-to img {
        grid-column: 1/2;
        grid-row: 1/2;
        margin: 0 0 16px;
        width: calc(100% + 32px);
        height: auto;
    }

    .how-to .content-button__control {
        width: 100%;
        min-width: unset;
    }
}

/* Promotions */
* + .promotions {
    margin-top: 1rem;
}

.promotions .promotions__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.promotions .promotions__item {
    display: flex;
    gap: 16px;
    flex: 1 1 calc(50% - 10px);
    border-radius: 12px;
    border: 2px solid #dcff31;
    overflow: hidden;
}

.promotions .get-image {
    height: 100%;
}

.promotions img {
    height: 100%;
    width: auto;
    min-width: 220px;
    object-fit: cover;
}

.promotions .promotions__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 16px 0;
}

.promotions .promotions__title {
    margin: 0;
}

.promotions .promotions__description {
    flex: 1 1;
    margin: 0;
}

@media (max-width: 1200px) {
    .promotions .promotions__item {
        flex: 1 1 100%;
    }

    .promotions .bonus__button {
        min-width: 320px;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .promotions .promotions__item {
        flex-direction: column;
    }

    .promotions img {
        width: 100%;
        height: auto;
    }

    .promotions img {
        width: 100%;
        height: auto;
        max-height: 260px;
        min-width: unset;
    }

    .promotions .promotions__content {
        padding: 0 16px 16px 16px;
    }

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

/* Slots */
.slots .slots__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 20px;
}

.slots .slots__item {
    position: relative;
    height: 220px;
    border-radius: 12px;
    border: 2px solid #dcff31;
    overflow: hidden;
    transition: 0.2s;
}

.slots .get-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.slots .slots__content {
    position: relative;
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 16px;
    background-color: rgba(15, 39, 23, 0.95);
    z-index: 1;
    transition: 0.2s;
}

.slots .slots__item:hover .slots__content {
    display: flex;
}

.slots .slots__text {
    text-align: center;
    margin-top: 0;
    margin-bottom: 5px;
    color: #D2D2D2;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.slots .slots__title {
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: auto;
    color: #fff;
}

.slots__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 10px 10px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border: unset;
    width: auto;
    cursor: pointer;
}

.slots__button._cash {
    color: #196948;
    background-color: #ff3286;
    border: 1px solid #ff3286;
    margin-bottom: 8px;
    transition: 0.2s ease-in-out;
}

.slots__button._cash:hover {
    color: #ff3286;
    background-color: transparent;
}

.slots .slots__demo-button {
    color: #fff;
    border: 1px solid #ff3286;
    background-color: unset;
    transition: 0.2s ease-in-out;
}

.slots .slots__demo-button:hover {
    color: #196948;
    background-color: #ff3286;
}

.slots__button._cash:after,
.slots .slots__demo-button:after {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.slots__button._cash:after {
    background-image: url("../images/Cash.svg");
}

.slots .slots__demo-button:after {
    background-image: url("../images/Play.svg");
}

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

@media (max-width: 850px) {
    .slots .slots__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .slots .slots__list {
        grid-template-columns: 1fr;
    }

    .slots .slots__item {
        height: auto;
    }

    .slots .get-image img {
        position: relative;
    }

    .slots .slots__item .slots__content {
        position: relative;
        display: flex;
        height: auto;
        background-color: #362873;
        padding: 8px 12px 12px 12px;
    }

    .slots .slots__text,
    .slots .slots__title {
        text-align: left;
    }

    .slots .slots__title {
        margin-bottom: 8px;
    }
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 39, 23, 0.90);
    z-index: 990;
}

.popup._active {
    display: block;
}

.popup .popup__win {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 860px;
    height: 580px;
    background-color: #318562;
    border-radius: 12px;
    overflow: hidden;
}

.popup .popup__header {
    display: flex;
    gap: 24px;
    padding: 12px;
}

.popup .popup__title {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 23px;
    font-weight: 800;
    line-height: 28px;
}

.popup .popup__buttons {
    display: flex;
    align-items: center;
    flex: 1 1;
}

.popup .slots__button {
    min-width: 296px;
    margin-bottom: 0;
}

.popup .popup__cross {
    width: 44px;
    min-width: 44px;
    height: 44px;
    background-image: url("../images/cross.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.popup .popup__content {
    position: relative;
    flex: 1 1;
}

.popup .popup__content iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .popup .popup__header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .popup .popup__title {
        order: 1;
    }

    .popup .popup__buttons {
        order: 3;
        flex: 1 1 100%;
    }

    .popup .slots__button {
        width: 100%;
        min-width: unset;
    }

    .popup .popup__cross {
        order: 2;
        margin-left: auto;
    }
}

.footer__logo img,
.page-footer__widget img {
    width: auto;
    object-fit: contain;
}

.footer__logo {
    align-items: center;
}

.footer__logo img {
    max-height: 76px;
}

.page-footer__widget img {
    max-height: 64px;
}

/* INFO BLOCK V2 */
.info-block-v2 {
    overflow: auto;
}

.info-block-v2__list {
    border: 1px solid var(--color-table-border);
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);
    border-collapse: collapse;
    width: 100%;
}


.info-block-v2__item:not(:last-child) {
    border-bottom: 1px solid var(--color-table-border);
}

.info-block-v2__item-logo-and-title {
    border: none;
    padding: 25px 10px;
    font-weight: 700;
    color: var(--color-table-td-color);
    min-width: 200px;
}

.info-block-v2__item-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

.info-block-v2__item-logo-and-title .get-image {
    margin-right: 20px;
    flex-shrink: 0;
}

.info-block-v2__item-logo-and-title img {
    max-height: 45px;
    object-fit: contain;
    width: 100%;
}

.info-block-v2__item-other-cell {
    padding: 25px 10px;
    align-self: center;
    border-bottom: 1px solid var(--color-table-border);
    flex-grow: 1;
    border-top: none;
}

.info-block-v2__item-other-cell > *:first-child {
    margin-top: 0;
}


@media (max-width: 767px) {
    .info-block-v2__item-logo-and-title {
        padding: 15px 10px;
    }

    .info-block-v2__item-other-cell {
        padding: 15px 10px;
    }

    .info-block-v2__item-logo-and-title .get-image {
        margin-right: 10px;
    }
}

/* PAYMENT METHOD */
.payment-method {
    overflow-x: auto;
}

.payment-method__table {
    border-collapse: collapse;
    width: 100%;
}

.payment-method__body {
    /*border: 1px solid #362873;*/
}

.payment-method th {
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    /*color: #ff3286;*/
    padding: 25px 10px;
    text-align: center;
    /*background-color: #362873;*/
}

.payment-method th:not(:last-child) {
    /*border-right: 1px solid #0e3327;*/
}

.payment-method td {
    /*border: 1px solid #362873;*/
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 15px 25px;
    white-space: nowrap;
}

.payment-method td.td-name {
    font-weight: 600;
    text-align: right;
    border-left: none;
}

.payment-method td.td-image {
    border-right: none;
}

.payment-method td.td-image .get-image {
    justify-content: flex-start;
}

.payment-method td.td-image .get-image img {
    height: auto;
    width: 90px;
}

.payment-method td.cell2,
.payment-method td.cell4 {
    font-weight: 600;
    text-align: right;
}

.payment-method td.cell1,
.payment-method td.cell2 {
    padding-bottom: 10px;
    border-bottom: none;
}

.payment-method td.cell2,
.payment-method td.cell4 {
    border-left: none;
}

.payment-method td.cell1,
.payment-method td.cell3 {
    border-right: none;
}

.payment-method td.cell3,
.payment-method td.cell4 {
    border-top: none;
    padding-top: 10px;
}

.page-header__button--first,
.page-header__button--second,
.content-button__control {
    border: none;
    background: #FFDC42;
    color: #000;
}


.page-header__button--first:hover,
.page-header__button--second:hover,
.content-button__control:hover {
    background: #ff3286;
    color: #000;
}

.page-header__button--second {
    background-color: #463196;
    color: #cecece;
    border: 1px solid #FFDC42;
}

.lang-switch {
    margin: 0 16px;
    padding: 10px;
    position: relative;
    border-radius: 12px;
    border: 2px solid #dcff31;
    background-color: #362873;
    display: flex;
    z-index: 200;
}

.lang-switch__list {
    margin-top: 0;
    padding-top: 8px;
    position: absolute;
    top: 100%;
    left: -2px;
    right: -2px;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    border-radius: 0 0 12px 12px;
    border: 2px solid #dcff31;
    border-top: none;
    background-color: #362873;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lang-switch__item, .lang-switch__link {
    display: flex;
}

.lang-switch:hover {
    border-radius: 12px 12px 0 0;
    border-bottom-color: transparent;
}

.lang-switch:hover .lang-switch__list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
/* text-image */
* + .text-image {
    margin-top: 32px;
}

.text-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.text-image img {
    border-radius: 4px;
}

.text-image.reversed img {
    order: -1;
}

@media (max-width: 1023px) {
    .text-image {
        grid-template-columns: 1fr;
    }

    .text-image.reversed img {
        order: 2;
    }
}
/* text-image */
/* button */
.btn {
    border-radius: 8px;
    padding: 15px;
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    cursor: pointer;
    padding: 15px;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn--fill {
    background-color: #dcff00;
    border-color: #dcff00;
    color: #0f1419;
}

.btn--fill:hover {
    background-color: #91c300;
    border-color: #91c300;
}

.btn--outline {
    background-color: transparent;
    border-color: #8c96aa80;
    color: #fff;
}

.btn--outline:hover {
    border-color: #4b8700;
}

@media (max-width: 767px) {
    .btn {
        padding: 11px;
        font-size: 14px;
        line-height: 18px;
    }
}
/* button */
/* custom border */
.custom-border {
    position: relative;
    order: 3;
}

.custom-border:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, #dcff31 35%, transparent);
    border-radius: 24px 24px 0 0;
    opacity: .75;
}
/* custom border */