/**
	Media Block
 */
.media_block {
    display: grid;
    column-gap: 60px;
    grid-template-columns: auto 400px;
    grid-template-areas:
        "title image"
        "content image";
    position: relative;
}

.media_block.top {
    grid-template-rows: auto 1fr;
}

.media_block.top .image {
    align-self: start;
}

.media_block .title {
    grid-area: title;
    align-self: flex-end;
}

.media_block .content {
    grid-area: content;
    align-self: flex-start;
}

.media_block_btn {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.media_block .image {
    align-self: center;
    grid-area: image;
    display: grid;
    grid-gap: 16px;
}

.media_block .image img {
    border-radius: var(--theme-rounded-images);
}

.media_block .content li::marker {
    color: var(--bs-primary);
}

.media_block.left {
    grid-template-columns: 50% auto;
    grid-template-areas:
        "image title"
        "image content";
}

.media_block.notitle {
    grid-template-areas: "content image";
}

.media_block.notitle.left {
    grid-template-columns: 50% auto;
    grid-template-areas: "image content";
}

.media_block.notitle.middle .content {
    align-self: center;
}

@media (max-width: 991px) {
    .media_block {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .media_block,
    .media_block.notitle,
    .media_block.left {
        grid-template-columns: none !important;
        grid-template-areas:
            "title"
            "image"
            "content";
        margin-top: 0;
        margin-bottom: 0;
    }

    .media_block .title,
    .media_block .image {
        margin-bottom: 1rem;
    }

    .media_block .image {
        text-align: center !important;
    }

    .media_block .image img {
        width: auto;
        max-height: 400px;
    }
}

/**
	Media Block v2
 */
.media_block_v2 {
    display: grid;
    column-gap: 25px;
    grid-template-columns: auto 50%;
    align-items: flex-start;
    margin-bottom: var(--theme-block-margin-bottom);
}

.media_block_v2.left {
    grid-template-columns: 50% auto;
}

.media_block_v2.middle {
    align-items: center;
}

.media_block_v2.left .content {
    order: 1;
}

.media_block_v2 .image img {
    border-radius: var(--theme-rounded-images);
}

.media_block_v2 .content li::marker {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .media_block_v2 {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
    Advantages
 */
.advantages {
    margin-bottom: var(--theme-block-margin-bottom);
}

.advantages .advantages__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 34px;
}

.advantages .advantages__container .item {
    padding: 15px 12px;
    /*line-height: normal;*/
    border-radius: var(--theme-rounded-images);
}

.advantages .advantages__container .item header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 8px;
    margin-bottom: 12px;
}

.advantages .advantages__container .item .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.advantages .advantages__container .item img {
    max-width: 24px;
    max-height: 24px;
    width: auto;
    height: auto;
}

@media (max-width: 991px) {
    .advantages {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .advantages .advantages__container {
        grid-template-columns: none;
        grid-gap: 14px;
    }
}

/**
    Short Menu
 */
.short_menu {
    margin-bottom: var(--theme-block-margin-bottom);
}

.short_menu .short_menu__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.short_menu .short_menu__container li {
    padding: 0;
    margin: 0;
}

.short_menu .short_menu__container li:before {
    display: none;
}

.short_menu .short_menu__container .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    height: 65px;
    padding: 0 22px;
    font-weight: 600;
    border-radius: var(--theme-rounded-section);
}

.short_menu .short_menu__container img {
    max-width: 47px;
    width: auto;
}

@media (max-width: 991px) {
    .short_menu {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .short_menu .short_menu__container {
        grid-template-columns: none;
        grid-gap: 8px;
    }
}

/**
    Most popular games
 */
.most_popular_games {
    margin-bottom: var(--theme-block-margin-bottom);
}

.most_popular_games_header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.most_popular_games_header img {
    height: 52px;
    width: auto;
}

.most_popular_games_header h2 {
    margin-bottom: 0;
}

.most_popular_games .most_popular_games__container {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.most_popular_games .most_popular_games__container .item {
    cursor: pointer;
}

.most_popular_games .most_popular_games__container .item:hover img {
    transform: scale(1.05);
}

.most_popular_games .most_popular_games__container img {
    transition: .5s;
    border-radius: var(--theme-rounded-images);
}

@media (max-width: 991px) {
    .most_popular_games {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .most_popular_games_header {
        gap: 12px;
    }

    .most_popular_games_header img {
        height: 32px;
    }

    .most_popular_games .most_popular_games__container {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        grid-template-columns: none;
        grid-auto-flow: column;
        margin: auto -12px;
    }

    .most_popular_games .most_popular_games__container::-webkit-scrollbar {
        display: none;
    }

    .most_popular_games .most_popular_games__container li img {
        min-width: 140px;
    }

    .most_popular_games .most_popular_games__container img:hover {
        transform: none;
    }

    .most_popular_games .most_popular_games__container li:first-child {
        padding-left: 12px;
    }

    .most_popular_games .most_popular_games__container li:last-child {
        padding-right: 12px;
    }
}

/**
    Games Sports
 */
.games_sports {
    margin-bottom: var(--theme-block-margin-bottom);
}

.games_sports header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.games_sports header img {
    height: 52px;
    width: auto;
}

.games_sports header h2 {
    margin-bottom: 0;
}

.games_sports .games_sports__container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.games_sports .games_sports__container li {
    padding: 0;
    margin: 0;
}

.games_sports .games_sports__container li:before {
    display: none;
}

.games_sports .games_sports__container .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    height: 140px;
    padding: 0 22px;
    font-size: 17px;
    border-radius: var(--theme-rounded-section);
    transition: .5s;
}

.games_sports .games_sports__container .item:hover {
    background-color: var(--bs-primary) !important;
}

.games_sports .games_sports__container img {
    max-height: 60px;
    width: auto;
}

.games_sports .games_sports__container .name {
    text-align: center;
    line-height: normal;
}

@media (max-width: 991px) {
    .games_sports {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .games_sports header {
        gap: 12px;
    }

    .games_sports header img {
        height: 32px;
    }

    .games_sports .games_sports__container {
        grid-template-columns: none;
        grid-gap: 8px;
    }

    .games_sports .games_sports__container .item {
        height: auto;
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .games_sports .games_sports__container img {
        max-height: 45px;
    }
}

/**
    Table with parameters
 */
.table_params {
    margin-bottom: var(--theme-block-margin-bottom);
}

.table_params table {
    width: 100%;
}

.table_params table tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 50px;
}

.table_params table tr {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px;
}

.table_params table tr td {
    display: flex;
    align-items: center;
    padding: 15px 12px;
    line-height: normal;
    border-radius: var(--theme-rounded-images);
}

.table_params table.columns_1 tbody {
    grid-template-columns: 1fr;
}

@media (max-width: 991px) {
    .table_params {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .table_params table tbody {
        grid-template-columns: none;
    }

    .table_params table tr {
        grid-template-columns: 120px 1fr;
    }

    .table_params table tr td {
        font-size: .9rem;
    }
}

/**
    Table mobile version and application
 */
.table_apps {
    margin-bottom: var(--theme-block-margin-bottom);
}

.table_apps table {
    width: 100%;
}

.table_apps table tr {
    display: grid;
    grid-template-columns: .7fr repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 10px;
}

.table_apps table tr td {
    display: flex;
    align-items: center;
    padding: 20px 60px 20px 12px;
    line-height: normal;
    font-size: .9rem;
    position: relative;
    border-radius: var(--theme-rounded-images);
}

.table_apps table tr td .icon {
    position: absolute;
    right: 10px;
    background-repeat: no-repeat;
}

.table_apps table tr td .icon01 {
    width: 22px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='27' fill='none'%3E%3Cpath fill='%234DAF51' d='M31.012.079c.876-.182 1.722-.037 2.52.315 1.618.714 2.603 1.95 2.907 3.71.008.042.04.08.061.119V5.65c-.116.156-.11.35-.162.525-.228.776-.597 1.477-1.17 2.05-5.787 5.807-11.575 11.613-17.375 17.407-1.06 1.06-2.393 1.444-3.872 1.356-.032-.002-.063-.028-.094-.042.048-.031.091-.078.144-.09 1-.235 1.816-.773 2.535-1.493 5.593-5.61 11.19-11.217 16.788-16.823 1.207-1.209 1.826-2.623 1.571-4.363-.224-1.534-1.031-2.66-2.322-3.48-.478-.302-1.019-.417-1.531-.618Z'/%3E%3Cpath fill='%2366BA6A' d='M31.012.078c.512.201 1.053.316 1.53.62 1.291.82 2.097 1.946 2.322 3.48.255 1.74-.363 3.154-1.57 4.363-5.598 5.606-11.195 11.214-16.79 16.823-.717.72-1.534 1.259-2.534 1.493-.053.012-.096.059-.144.09a4.863 4.863 0 0 1-2.846-1.415c-3.172-3.18-6.354-6.35-9.514-9.541C.083 14.593-.337 12.9.273 11.035.884 9.168 2.234 8.05 4.168 7.752c1.567-.242 2.966.222 4.104 1.352 1.864 1.85 3.713 3.714 5.568 5.573.478.479.7.478 1.185-.009 4.348-4.356 8.697-8.711 13.043-13.07.822-.825 1.769-1.392 2.944-1.52Z'/%3E%3C/svg%3E");
    background-size: 22px;
}

.table_apps table tr td .icon0 {
    width: 22px;
    height: 21px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='26' fill='none'%3E%3Cpath fill='red' d='M0 3.544v-.407c.02-.054.05-.107.059-.164.064-.432.24-.816.538-1.13.409-.43.823-.858 1.261-1.257C2.366.123 2.974-.06 3.666.032 4.23.107 4.678.385 5.072.78c2.566 2.57 5.135 5.137 7.703 7.704.081.081.168.157.312.292.086-.119.144-.227.227-.31 2.542-2.547 5.086-5.09 7.63-7.634.083-.083.168-.168.256-.247.883-.783 2.165-.783 3.031.018.417.386.821.789 1.206 1.206.48.52.673 1.14.575 1.85-.078.555-.349.997-.738 1.385-2.564 2.56-5.124 5.123-7.689 7.682-.088.088-.214.138-.322.206l.025.143c.095.07.201.129.284.211 2.534 2.53 5.065 5.062 7.597 7.594.101.102.204.203.3.312.77.88.77 2.151-.02 3.011-.39.425-.815.818-1.22 1.228-.64.649-1.852.716-2.537.338a3.337 3.337 0 0 1-.72-.555 3207.128 3207.128 0 0 1-7.65-7.648c-.089-.088-.141-.213-.21-.32l-.16.003c-.069.106-.122.23-.21.318-2.57 2.577-5.16 5.136-7.711 7.73-.887.902-2.502.933-3.346-.006-.306-.34-.645-.651-.969-.974a2.32 2.32 0 0 1-.632-1.113c-.026-.105-.056-.21-.084-.315v-.407c.014-.021.037-.041.04-.064.076-.631.417-1.106.857-1.544 2.532-2.52 5.054-5.05 7.582-7.571.088-.088.212-.141.32-.21v-.16c-.107-.068-.23-.121-.319-.21-2.558-2.552-5.112-5.11-7.67-7.662C.465 4.718.2 4.336.085 3.858.06 3.751.029 3.648 0 3.544Z'/%3E%3C/svg%3E");
    background-size: 22px;
}

.table_apps table tr td:first-child {
    font-weight: 600;
}

@media (max-width: 991px) {
    .table_apps {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .table_apps::-webkit-scrollbar {
        display: none;
    }

    .table_apps table tr {
        grid-template-columns: 160px repeat(2, 1fr);
    }
}

/**
    Payment methods
 */
.payment_methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 32px;
    margin-bottom: var(--theme-block-margin-bottom);
}

.payment_methods .item {
    padding: 20px;
    border-radius: var(--theme-rounded-images);
}

.payment_methods .item table {
    width: 100%;
}

.payment_methods .item table thead img {
    margin-bottom: 20px;
    max-height: 26px;
    width: auto;
}

.payment_methods .item table tr {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-gap: 10px;
    align-items: end;
    margin-bottom: 10px;
}

.payment_methods .item table tr:last-child {
    margin-bottom: 0;
}

.payment_methods .item table tr td {
    font-size: .85rem;
}

.payment_methods .item table tr td:first-child {
    font-weight: 600;
}

@media (max-width: 575px) {
    .payment_methods {
        grid-template-columns: none;
        grid-gap: 10px;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
    Заголовок с навигацией
 */
.heading_nav {
    margin-bottom: var(--theme-block-margin-bottom);
}

.heading_nav nav ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.heading_nav nav ol li button {
    display: block;
    padding: 9px 12px;
    line-height: normal;
    background-color: var(--menu_bg);
    border: 1px solid var(--bs-primary);
    border-radius: var(--theme-rounded-button);
    font-size: 13px;
    text-decoration: none;
    color: var(--menu_text_color);
}

.heading_nav nav ol li button:hover {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .heading_nav {
        grid-template-columns: none;
        grid-gap: 0;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
	How To Block
 */
.howto_block {
    margin-bottom: var(--theme-block-margin-bottom);
}

.howto_block .attributes {
    margin-bottom: 20px;
}

.howto_block .attributes>div {
    margin-bottom: 3px;
    font-size: 14px;
}

.howto_block .attributes>div:last-child {
    margin-bottom: 0;
}

.howto_block .how-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: num;
}

.howto_block .how-list>li {
    position: relative;
}

.howto_block .how-list>li:before {
    content: counter(num);
    counter-increment: num;
    display: grid;
    height: 34px;
    width: 34px;
    place-items: center;
    line-height: normal;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background-color: var(--bs-primary);
    border-radius: 50%;
}

.howto_block .how-list .item {
    position: relative;
    margin-bottom: var(--theme-block-margin-bottom);
}

.howto_block .how-list .item .title {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    padding-left: 50px;
    padding-top: 5px;
}

.howto_block .how-list .item .item__container {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
}

.howto_block .how-list .item .item__container.top {
    align-items: start;
}

.howto_block .how-list .item .item__container .btn {
    margin-top: 12px;
    display: inline-block;
}

.howto_block .how-list .item .item__container .item_image img {
    border-radius: var(--theme-rounded-images);
}

@media (max-width: 991px) {
    .howto_block {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .howto_block .how-list .item {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .howto_block .how-list .item .item__container {
        grid-template-columns: none;
    }

    .howto_block .how-list .item .item__container .item_image {
        order: -1;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .howto_block .how-list .item .item__container .item_image img {
        max-width: 100%;
    }
}

/**
	YouTube Iframe
 */
.youtube {
    background-color: #000;
    margin-bottom: var(--theme-block-margin-bottom);
    cursor: pointer;
    border-radius: var(--theme-rounded-section);
}

.youtube img {
    width: 100%;
    /*top: -16.82%;*/
    top: 0;
    left: 0;
    border-radius: var(--theme-rounded-images);
}

.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 14px;
    transition: all 0.2s ease 0s;
}

.youtube:hover .play-button {
    background-color: #ff0215;
}

.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}

.youtube img,
.youtube .play-button {
    cursor: pointer;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .youtube {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
    Image Slider
 */
.image_slider_block {
    margin-bottom: var(--theme-block-margin-bottom);
    height: fit-content;
}

.image_slider_block .swiper-slide img {
    width: auto;
    margin: auto;
    border-radius: var(--theme-rounded-images);

}

.image_slider_block .swiper-pagination {
    position: static;
}

.image_slider_block .swiper-pagination-bullet {
    border: 1px solid transparent;
    background-color: #fff;
    opacity: 1;

}

.image_slider_block .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
    background: none;
}

@media (max-width: 991px) {
    .image_slider_block {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
	FAQ
 */
.faq-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 32px;
    align-items: start;
    margin-bottom: var(--theme-block-margin-bottom);
}

.faq-section .item {
    padding: 15px;
    border-radius: var(--theme-rounded-images);
}

.faq-section .item .question {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    padding-right: 50px;
    cursor: pointer;
    user-select: none;
}

.faq-section .item .question .toggler {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 13px;
    height: 13px;
    display: flex;
    color: inherit;
    user-select: none;
}

.faq-section .item .answer {
    display: none;
    margin-top: 15px;
    padding-right: 50px;
}

.faq-section .item .answer[hidden] {
    display: none;
}

.faq-section .item.show .answer {
    display: block;
}

.faq-section .item.show .toggler {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .faq-section {
        grid-template-columns: none;
        grid-gap: 10px;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
    Banner (image)
 */
.banner_img {
    margin-bottom: var(--theme-block-margin-bottom);
}

@media (max-width: 991px) {
    .banner_img {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
    Banner
 */
.banner {
    display: flex;
    justify-content: end;
    position: relative;
    padding: 32px;
    background-color: #1A2338;
    border-radius: var(--theme-rounded-section);
    margin-bottom: var(--theme-block-margin-bottom);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: left 80px center;
    background-size: contain;
}

.banner .bg_image {
    position: absolute;
    bottom: -62px;
    left: 0;
    width: 266px;
    display: none;
}

.banner .banner__container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.banner .bonus_name {
    font-size: 3rem;
    font-weight: 600;
    line-height: normal;
}

.banner .bonus_value {
    font-size: 3rem;
    font-weight: 600;
    line-height: normal;
}

.banner .banner_button {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 60px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #d7a42a 0%, #ac3a31 100%);
    border-radius: 8px;
}

@media (max-width: 1100px) {
    .banner {
        background-position: left center;
    }
}

@media (max-width: 991px) {
    .banner {
        padding: 16px;
        justify-content: center;
        background-size: auto 200px;
        background-position: top 16px center;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .banner .banner__container {
        align-items: center;
        text-align: center;
        padding-top: 200px;
    }

    .banner .bonus_name {
        font-size: 6vw;
        margin-bottom: 10px;
    }

    .banner .bonus_value {
        font-size: 6vw;
    }

    .banner .banner_button {
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .banner .banner__container {
        width: 100%;
    }
}

/**
 * Mobile Button
 */
.mobile_button {
    display: none;
    margin-bottom: var(--theme-block-margin-bottom);
}

.acf-block-preview .mobile_button {
    display: block !important;
    opacity: .2;
}

@media (max-width: 991px) {
    .mobile_button {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .mobile_button,
    .mobile_button .wp-block-button__link {
        display: block;
    }
}

/**
	Pros / Cons
 */
.pros_cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
    margin-bottom: var(--theme-block-margin-bottom);
}

.pros_cons .heading {
    font-size: 1.2rem;
    padding: 15px 12px;
    color: var(--button_primary_color);
    background-color: var(--button_primary_bg);
    border-radius: var(--theme-rounded-images);
}

.pros_cons ul {
    list-style: none;
    margin: 16px 0 0;
    padding-left: 10px;
}

.pros_cons ul li {
    position: relative;
    padding: 8px 50px 8px 0;
}

.pros_cons ul li:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    background-repeat: no-repeat;
}

.pros_cons .pros ul li:after {
    width: 34px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='26' fill='none'%3E%3Cpath fill='%234DAF51' d='M28.809.073c.813-.169 1.6-.034 2.341.293 1.503.663 2.418 1.811 2.7 3.447.008.039.038.073.057.11v1.326c-.108.145-.102.324-.15.487-.213.72-.555 1.373-1.087 1.905-5.377 5.394-10.753 10.788-16.141 16.17-.986.985-2.223 1.341-3.597 1.26-.03-.002-.058-.026-.087-.039.044-.03.085-.073.133-.084.929-.218 1.688-.717 2.355-1.387 5.196-5.212 10.396-10.42 15.596-15.628 1.12-1.122 1.696-2.436 1.46-4.053-.21-1.425-.959-2.47-2.158-3.233-.444-.28-.947-.387-1.422-.574Z'/%3E%3Cpath fill='%2366BA6A' d='M28.809.071c.476.187.978.294 1.421.576 1.2.762 1.949 1.808 2.158 3.233.237 1.617-.338 2.93-1.46 4.053-5.199 5.208-10.4 10.417-15.596 15.628-.667.669-1.426 1.17-2.354 1.387-.05.011-.09.055-.134.084a4.518 4.518 0 0 1-2.644-1.315c-2.946-2.954-5.902-5.899-8.838-8.864C.077 13.555-.313 11.983.254 10.25S2.076 7.476 3.872 7.2c1.455-.224 2.756.208 3.813 1.257 1.73 1.718 3.448 3.45 5.172 5.177.444.445.65.444 1.1-.008 4.04-4.047 8.08-8.093 12.117-12.142C26.838.717 27.717.19 28.809.07Z'/%3E%3C/svg%3E");
}

.pros_cons .cons ul li:after {
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'%3E%3Cpath fill='red' d='M0 3.423V3.03c.02-.053.05-.104.057-.159.062-.417.231-.787.52-1.09.395-.416.794-.83 1.218-1.215C2.285.12 2.872-.059 3.54.031c.547.073.978.34 1.359.722 2.478 2.483 4.96 4.962 7.44 7.441.078.079.162.152.301.283.083-.116.14-.22.22-.3 2.454-2.46 4.911-4.916 7.368-7.373.081-.081.163-.163.248-.239.852-.756 2.09-.756 2.928.018.402.372.792.761 1.164 1.164.464.502.65 1.101.555 1.787-.075.536-.337.963-.713 1.338-2.476 2.472-4.948 4.948-7.426 7.42-.085.084-.206.133-.31.198l.024.139c.091.067.194.124.274.204 2.447 2.443 4.892 4.888 7.337 7.334.098.098.198.196.29.301.744.85.743 2.078-.02 2.909-.377.41-.786.789-1.178 1.185-.619.627-1.789.692-2.45.327a3.23 3.23 0 0 1-.696-.536 3118.68 3118.68 0 0 1-7.389-7.387c-.085-.085-.135-.206-.201-.31l-.155.004c-.067.103-.118.222-.203.307-2.483 2.489-4.983 4.96-7.448 7.466-.856.871-2.416.902-3.232-.006-.295-.329-.622-.629-.935-.941a2.24 2.24 0 0 1-.611-1.075C.056 22.31.027 22.21 0 22.107v-.393c.013-.02.036-.04.039-.061.073-.61.403-1.069.828-1.492 2.445-2.434 4.88-4.877 7.323-7.313.085-.085.204-.136.308-.202v-.154c-.103-.067-.222-.118-.307-.203C5.719 9.824 3.253 7.354.78 4.888c-.331-.331-.588-.7-.698-1.162C.059 3.623.028 3.523 0 3.423Z'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .pros_cons {
        grid-template-columns: none;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

/**
	Mobile app vs mobile ver
 */
.mobile_app_vs_mobile_ver tr td {
    width: 50%;
    vertical-align: top;
}

.mobile_app_vs_mobile_ver tr:first-child td {
    font-weight: 600;
}

.mobile_app_vs_mobile_ver tr td.empty {
    visibility: hidden;
}

.mobile_app_vs_mobile_ver .attributes {
    margin-bottom: 5px;
}

.mobile_app_vs_mobile_ver .attributes .badge {
    padding: 6px 16px;
    color: #fff !important;
}

.mobile_app_vs_mobile_ver .attributes .badge.badge-advantages {
    background-color: var(--bs-success);
}

.mobile_app_vs_mobile_ver .attributes .badge.badge-disadvantages {
    background-color: var(--bs-danger);
}

@media (max-width: 991px) {
    .mobile_app_vs_mobile_ver .text {
        font-size: .85rem;
    }
}

/**
    Block | TOC Navigation
 */
.toc_navigation {
    margin-bottom: var(--theme-block-margin-bottom);

}

.toc_navigation nav ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc_navigation nav ol li a {
    display: block;
    padding: 9px 12px;
    line-height: normal;
    background-color: var(--toc_bg_color_btn);
    border-style: solid;
    border-color: var(--toc_border_color_btn);
    border-width: var(--toc_border_width_btn);
    border-radius: var(--theme-rounded-button);
    font-size: 13px;
    text-decoration: none;
    color: var(--toc_color_btn);
}

.toc_navigation nav ol li a:hover {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .toc_navigation {
        grid-template-columns: none;
        grid-gap: 0;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

.toc {
    border-style: solid;
    border-width: var(--toc_border_width);
    border-color: var(--toc_border_color) !important;
    border-radius: var(--theme-rounded-button);
    overflow: hidden;
}

.toc__button {
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--toc_ttl_color);
    background: var(--toc_bg);
    font-weight: 500;
}

.toc__button svg {
    transition: all 0.3s ease 0s;
}

.toc__button svg path {
    stroke: var(--toc_ttl_color);
}

.toc__button svg rect {
    stroke: var(--toc_ttl_color);
}

.toc__button.active svg {
    transform: rotate(180deg);
}


.toc__nav {
    padding: 15px;
    display: none;
    background-color: var(--toc_open_bg);
}

@media (max-width: 991.98px) {
    .toc__button svg {
        width: 30px;
        height: 30px;
    }

    .toc__button {
        padding: 10px 15px;
    }

    .toc__nav {
        padding: 15px 10px;
    }
}



/**
    Promocode
 */
.promocode-block {
    display: flex;
    padding: 16px 32px;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    border-radius: 12px;
    background-color: var(--promocode-block-bg-color);
    margin-bottom: var(--theme-block-margin-bottom);
}

.promocode-block .image {
    width: 237px;
    height: 130px;
    background-image: var(--promocode-block-bg-image, none);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.promocode-block .bonus {
    font-size: 26px;
    line-height: normal;
}

.promocode-block .copy-block-wrap {
    display: flex;
    width: 250px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.promocode-block .copy-block-wrap .copy-block {
    position: relative;
    width: 100%;
    height: 45px;
    border: 1px dashed #fff;
    border-radius: var(--theme-rounded-button);
}

.promocode-block .copy-block-wrap .copy-block input {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    box-shadow: none;
    border: none;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding-right: 33px;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

.promocode-block .copy-block-wrap .copy-block .copy-icon {
    display: block;
    position: absolute;
    top: calc(50% - 12px);
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url('../img/copy.svg?v=4');
    cursor: pointer;
}

.promocode-block .copy-block-wrap .copy-block.copy-ok .copy-icon {
    background-image: url('../img/check.svg?v=5');
}

.promocode-block .promocode_button {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 45px;
    padding: 0 16px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #d7a42a 0%, #ac3a31 100%);
    border-radius: var(--theme-rounded-button);
}

@media (max-width: 991px) {
    .promocode-block {
        flex-direction: column;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }

    .promocode-block .bonus {
        text-align: center;
    }

    .promocode-block .copy-block-wrap {
        width: 100%;
        max-width: 300px;
    }
}


/**
    Frame
 */
.iframe-block {
    margin-bottom: var(--theme-block-margin-bottom);
}

@media (max-width: 992.98px) {
    .iframe-block.demo {
        --bs-aspect-ratio: 65%;
    }
}

@media (max-width: 660.98px) {
    .iframe-block.demo {
        --bs-aspect-ratio: 178%;
    }
}

@media (max-width: 991px) {
    .iframe-block {
        margin-bottom: var(--theme-block-margin-bottom-mob);
    }
}

.iframe-block__bg {
    border-radius: var(--theme-rounded-section);
    overflow: hidden;
    position: absolute;
    inset: 0;
    transition: all 0.3s ease 0s;
}

.iframe-block__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0000003c;
}

.iframe-block__bg.hidden {
    visibility: hidden;
    opacity: 0;
}

.iframe-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iframe-block__btns {
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: grid;
    grid-gap: 10px;
    width: fit-content;
    height: 95px;
    transition: all 0.3s ease 0s;
}

.iframe-block__btns button {
    height: fit-content;
}

.iframe-block__btns.hidden {
    visibility: hidden;
    opacity: 0;
}

/**
    Cards
 */
.sites-list {
    width: 100%;
}

.sites-list__body {
    display: grid;
    grid-gap: 24px;
}

.sites-list__item {
    border-radius: var(--theme-rounded-section);
    border: 1px solid #E5E5E5;
    padding: 16px;
    background: #FFF;
    position: relative;
    display: grid;
    grid-template-columns: 218px 294px 1fr 1fr;
    grid-gap: 24px;
    align-items: center;
}

@media (max-width: 991.98px) {
    .sites-list__item {
        grid-template-columns: 1fr;
    }
}

.sites-list__item.top {
    margin: 56px 12px 12px 12px;
}

.sites-list__item.top::before {
    content: "";
    border-radius: var(--theme-rounded-section);
    background: var(--primary-red, #BE0C34);
    position: absolute;
    inset: 0;
    margin: -56px -12px -12px -12px;
    z-index: -1;
}

.sites-list__block--title {
    gap: 12px;
    display: grid;
    grid-template-columns: 80px 1fr;
}

.sites-list__block--title img {
    background: var(--black, #1B1C1D);
    border-radius: var(--theme-rounded-section);
    height: 103px;
    padding: 23px 35px 24px 34px;
    grid-column-start: 1;
    grid-column-end: 3;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .sites-list__block--title img {
        grid-column-end: 1;
        grid-row-end: 3;
        grid-row-start: 1;
        width: 80px;
        height: 80px;
        padding: 20px 3px;
    }
}

.sites-list__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 0;
}

.sites-list__rate {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .sites-list__rate {
        margin-left: 0;
    }
}

.sites-list__rate svg {
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
    margin-left: 6px;
    vertical-align: baseline;
}

.sites-list__rate small {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-gray, #999CA2);
}

.sites-list__info {
    position: absolute;
    top: 0;
    border-radius: 12px 12px 0 0;
    background: var(--yellow, #FFBA00);
    padding: 10px 22px;
    color: var(--white, #FFF);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 111%;
    font-weight: 500;
    font-size: 18px;
    height: 44px;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.sites-list__info svg {
    width: 24px;
    height: 24px;
}

.sites-list__block--bonus {
    border-radius: var(--theme-rounded-section);
    border-bottom: 3px solid var(--yellow, #FFBA00);
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.sites-list__block--bonus .copy {
    margin-top: 10px;
}

.sites-list__block--bonus .copy svg {
    color: var(--primary-red, #BE0C34);
}

.sites-list__block--bonus p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    gap: 6px;
    margin-bottom: 12px;
}

.sites-list__block--bonus p svg {
    width: 24px;
    height: 24px;
    position: relative;
    top: -2px;
}

.sites-list__block--bonus b {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.sites-list__block--list ul {
    display: grid;
    grid-gap: 8px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sites-list__block--btns {
    display: grid;
    grid-gap: 12px;
    text-align: center;
}

.sites-list__block--btns a:not(.btn) {
    color: var(--primary-red, #BE0C34);
}

.separator {
    height: 5px;
    border-radius: 2px;
    background-color: var(--separator_color);
    margin: var(--theme-block-margin-bottom) 15px;

}

.custom-button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--theme-block-margin-bottom);
    display: flex;
    gap: 8px;
    width: fit-content;
    align-items: center;
}

.custom-button svg {
    width: 30px;
    height: 30px;
}

.custom-button.right {
    margin-right: 0;
}

.custom-button.left {
    margin-left: 0;
}


/* welcom sections */

.welcom-section {
    color: white;
    display: grid;
    grid-gap: 16px;
}

.welcom-section-top {
    display: grid;
    grid-template-columns: 156px 1fr;
    grid-gap: 16px;
}

@media (max-width: 767.98px) {
    .welcom-section-top {
        grid-template-columns: 80px 1fr;
    }
}

.welcom-section-top__logo {
    width: 156px;
    height: 156px;
    background: linear-gradient(135deg, #BF0C34 0%, #840C27 100%);
    padding: 5px;
    border-radius: 8.667px;
    grid-row-start: 1;
    grid-row-end: 3;
}

@media (max-width: 767.98px) {
    .welcom-section-top__logo {
        width: 80px;
        height: 87px;
        grid-row-end: 1;
    }
}

.welcom-section-top__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.welcom-section-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.welcom-section-advantages__item {
    border-radius: var(--theme-rounded-section);
    background: #242424;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    line-height: 1;
}

.welcom-section-advantages__item b {
    color: var(--primary-color);
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .welcom-section-advantages {
        display: none;
        grid-template-columns: 1fr;
        grid-gap: 6px;
    }
}

.welcom-section-advantages.mob {
    display: none;
}

@media (max-width: 991.98px) {
    .welcom-section-advantages.mob {
        display: grid;
    }
}

.welcom-section-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 16px;
}

@media (max-width: 991.98px) {
    .welcom-section-listing {
        grid-template-columns: 1fr;
        grid-gap: 12px;
    }
}

.welcom-section-listing p {
    margin-bottom: 12px;
    grid-column-start: 1;
    grid-column-end: 4;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 991.98px) {
    .welcom-section-listing p {
        grid-column-end: 1;
        margin-bottom: 0;
    }
}

.welcom-app {
    display: grid;
    grid-template-columns: 1fr 227px;
    grid-gap: 20px;
    color: #FFF;
}

@media (max-width: 991.98px) {
    .welcom-app {
        grid-template-columns: 1fr;
        grid-gap: 12px;
    }
}

.welcom-app>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    grid-row-start: 1;
    grid-row-end: 4;
    grid-column-start: 2;
}

@media (max-width: 991.98px) {
    .welcom-app>img {
        display: none;
    }
}

.welcom-app p {
    margin-bottom: 0;
}

.welcom-app>p {
    line-height: 125%;
}

@media (min-width: 991.98px) {
    .welcom-app>p {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.welcom-app__platforms {
    display: flex;
    grid-gap: 12px;
}

@media (max-width: 991.98px) and (max-width: 767.98px) {
    .welcom-app__platforms {
        grid-gap: 6px;
    }
}

.welcom-app__platforms--item {
    border-radius: var(--theme-rounded-section);
    background: #242424;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.111%;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 991.98px) {
    .welcom-app__platforms--item {
        font-size: 16px;
    }
}

.welcom-app__platforms--item svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 991.98px) {
    .welcom-app__platforms--item svg {
        width: 20px;
        height: 20px;
    }
}

.welcom-app__apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}

@media (max-width: 767.98px) {
    .welcom-app__apps {
        grid-template-columns: 1fr;
    }
}

.welcom-app-alt {
    display: grid;
    color: white;
    grid-template-columns: 1fr 153px;
    grid-gap: 16px 60px;
}

@media (max-width: 991.98px) {
    .welcom-app-alt {
        grid-template-columns: 1fr;
    }
}

.welcom-app-alt__top {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (min-width: 1212px) {
    .welcom-app-alt__top {
        margin-bottom: 15px;
    }
}

.welcom-app-alt p {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .welcom-app-alt>p {
        order: 5;
    }
}

.welcom-app-alt__top--rate {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
}

@media (max-width: 991.98px) {
    .welcom-app-alt__top--rate {
        margin-left: 0;
    }
}

.welcom-app-alt__top--rate svg {
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
    margin-left: 6px;
}

.welcom-app-alt__top--rate small {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--dark-gray, #999CA2);
}

.welcom-app-alt__top--download {
    display: flex;
    font-weight: 500;
    gap: 5px;
    align-items: center;
}

.welcom-app-alt__top--download svg {
    width: 24px;
    height: 24px;
}

.welcom-app-alt img {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .welcom-app-alt img {
        display: none;
    }
}

@media (min-width: 991.98px) {
    .welcom-app-alt .bonus-promo {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.bonus-promo {
    background: url(../img/bg-bonus.png) 0 0/cover no-repeat;
    padding: 16px;
    display: grid;
    border-radius: 12px;
    border: 1px solid #2F3031;
    grid-template-columns: 475px 1fr 147px;
    align-items: center;
    color: white;
    grid-gap: 24px;
}

@media (max-width: 991.98px) {
    .bonus-promo {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }
}

.bonus-promo__title {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .bonus-promo__title {
        margin-bottom: 8px;
    }
}

@media (max-width: 991.98px) {
    .bonus-promo__title {
        font-size: 24px;
    }
}

.bonus-promo p {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .bonus-promo p {
        font-size: 18px;
    }
}

.bonus-promo__promocode {
    display: flex;
    gap: 5px;
}

.bonus-promo__promocode .copy {
    color: white;
    width: 100%;
}

.bonus-promo__promocode .btn {
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .bonus-promo__promocode .btn {
        padding: 10px;
    }
}

.bonus-promo__btns {
    display: grid;
    grid-gap: 12px;
}

@media (max-width: 991.98px) {
    .bonus-promo__btns {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 991.98px) {
    .bonus-promo img {
        display: none;
    }
}

@media (min-width: 991.98px) {

    .bonus-promo__title,
    .bonus-promo__promocodep,
    .bonus-promo p {
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .bonus-promo__btns {
        grid-row-start: 1;
        grid-row-end: 4;
        grid-column-start: 2;
        grid-column-end: 3;
    }

    .bonus-promo img {
        grid-column-start: 3;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 4;
    }
}

.welcom-brand {
    color: white;

}

.welcom-brand>p {
    margin-top: 16px;
}

@media (max-width: 991.98px) {
    .welcom-brand>p {
        order: 3;
    }
}

.welcom-brand__bottom {
    margin-top: 20px;
    border-radius: var(--theme-rounded-section);
    border: 1px solid #5D5D5D;
    padding: 16px;
    background: #383838;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}

@media (max-width: 991.98px) {
    .welcom-brand__bottom {
        margin-top: 16px;
        grid-template-columns: 1fr;
    }
}

.welcom-brand__bonus {
    border-radius: var(--theme-rounded-section);
    border-bottom: 2px solid var(--primary-red, #BE0C34);
    background: #4C4C4C;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: center;
    display: grid;
    grid-gap: 12px;
}

.welcom-brand p {
    margin-bottom: 0;
}

.welcom-brand__bonus p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.welcom-brand__bonus p svg {
    position: relative;
    top: -3px;
}

.welcom-brand__bonus b {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

@media (max-width: 767.98px) {
    .welcom-brand__bonus b {
        font-size: 18px;
    }
}

.welcom-brand__promocode {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.welcom-brand__promocode .copy {
    width: 100%;
    color: white;
}

.welcom-brand__promocode a:not(.copy),
.welcom-brand__promocode button:not(.copy) {
    white-space: nowrap;
}

@media (max-width: 767.98px) {

    .welcom-brand__promocode a:not(.copy),
    .welcom-brand__promocode button:not(.copy) {
        padding: 0 10px;
    }
}

.welcom-brand__buttons {
    display: grid;
    gap: 12px;
}

.welcom-brand__buttons p {
    display: flex;
    align-items: center;
}

.welcom-brand__buttons p b {
    margin-left: auto;
}

.welcom-brand__buttons p svg {
    margin-left: 6px;
    margin-bottom: 3px;
}

.welcom-brand__buttons .btn {
    width: 100%;
}

.welcome-demo {
    color: white;
    display: grid;
    grid-gap: 16px;
}

.welcome-demo__content {
    position: relative;
    margin-top: 4px;
    padding: 32px 16px;
    border-radius: var(--theme-rounded-section);
    border: 1px solid #5D5D5D;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    overflow: hidden;
    text-align: center;
}

@media (max-width: 991.98px) {
    .welcome-demo__content {
        margin-top: 0;
    }
}

.welcome-demo__content img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.welcome-demo b,
.welcome-demo p,
.welcome-demo__btns {
    position: relative;
    z-index: 1;
}

.welcome-demo b {
    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 12px;
    display: block;
}

@media (max-width: 767.98px) {
    .welcome-demo p {
        order: 3;
    }
}

.welcome-demo__btns {
    max-width: 548px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
}

@media (max-width: 767.98px) {
    .welcome-demo__btns {
        grid-template-columns: 1fr;
        max-width: 272px;
    }
}

.welcom-simple {
    color: white;
    display: grid;
    gap: 16px 32px;
}

.welcom-simple p {
    margin-bottom: 0;
}

.welcom-simple.img {
    grid-template-columns: 1fr 400px;
}

@media (max-width: 991.98px) {
    .welcom-simple.img {
        grid-template-columns: 1fr;
    }
}

.welcom-simple.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (min-width: 991.98px) {
    .welcom-simple.img img {
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 4;
    }
}

.welcom-simple>.btn {
    width: fit-content;
}

@media (min-width: 1212px) {
    .welcom-simple>.btn {
        margin-top: 14px;
    }
}

@media (max-width: 991.98px) {
    .welcom-simple>.btn {
        width: 100%;
    }
}

.welcom-messenger {
    border-radius: var(--theme-rounded-section);
    border: 1px solid #5D5D5D;
    background: var(--bg-color);
    padding: 16px;
    display: grid;
    grid-template-columns: 115px 1fr 296px;
    gap: 16px;
    align-items: center;
}

@media (max-width: 991.98px) {
    .welcom-messenger {
        grid-template-columns: 91px 1fr;
    }
}

.welcom-messenger img {
    width: 91px;
    height: 91px;
    padding: 0 3.194px;
    border-radius: 6px;
    background: linear-gradient(135deg, #BF0C34 0%, #840C27 100%);
    object-fit: contain;
}

@media (min-width: 991.98px) {
    .welcom-messenger img {
        width: 115px;
        height: 115px;
        grid-row-start: 1;
        grid-row-end: 3;
    }
}

.welcom-messenger__ttl {
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: end;
}

@media (max-width: 991.98px) {
    .welcom-messenger__ttl {
        align-self: center;
    }
}

@media (max-width: 767.98px) {
    .welcom-messenger__ttl {
        font-size: 20px;
    }
}

.welcom-messenger__ttl svg {
    width: 30px;
    height: 30px;
}

.welcom-messenger__advantages {
    display: flex;
    gap: 26px;
    align-self: start;
    padding-left: 0;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .welcom-messenger__advantages {
        grid-column-start: 1;
        grid-column-end: 3;
        justify-content: center;
    }
}

.welcom-messenger__advantages li {
    display: grid;
    text-align: center;
    font-size: 18px;
}

.welcom-messenger__advantages li strong,
.welcom-messenger__advantages li b {
    font-size: 20px;
}

@media (max-width: 991.98px) {

    .welcom-messenger__advantages li strong,
    .welcom-messenger__advantages li b {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .welcom-messenger__advantages li {
        font-size: 16px;
    }
}

.welcom-messenger__features {
    display: flex;
    gap: 16px;
    padding-left: 0;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .welcom-messenger__features {
        grid-column-start: 1;
        grid-column-end: 3;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .welcom-messenger__features {
        flex-direction: column;
        justify-content: center;
    }
}

.welcom-messenger__features li {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 18px;
    line-height: 111%;
    border-radius: 12px;
    background: #2E2E2E;
}

@media (max-width: 767.98px) {
    .welcom-messenger__features li {
        justify-content: center;
        font-size: 16px;
    }
}

.welcom-messenger__features li strong,
.welcom-messenger__features li b {
    color: var(--primary-color);
    font-weight: 800;
}

.welcom-messenger a,
.welcom-messenger button {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-top: 0;
    width: 100%;
}

@media (min-width: 991.98px) {

    .welcom-messenger a,
    .welcom-messenger button {
        grid-column-start: 3;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 3;
    }
}

.bk-card-small {
    background: var(--bg-color);
    padding: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #5D5D5D;
    border-radius: var(--theme-rounded-section);
    justify-content: space-between;
}

.bk-card-small img {
    border-radius: var(--theme-rounded-section);
    background: var(--black-color);
    padding: 17px 2px 16px 2px;
    margin-right: 6px;
    width: 46px !important;
    flex-shrink: 0;
    height: fit-content;
}

.bk-card-small>div {
    display: grid;
    grid-gap: 6px;
    height: fit-content;
}

.bk-card-small a,
.bk-card-small button {
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    background: var(--primary-red, #BE0C34);
    margin-left: 12px;
}


.app-item {
    display: flex;
    border-radius: var(--theme-rounded-section);
    border: 1px solid #5D5D5D;
    padding: 12px;
    align-items: center;
    background: #383838;
}

.app-item img {
    border-radius: var(--theme-rounded-section);
    background: var(--black, #1B1C1D);
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 6px;
    width: 46px;
}

.app-item__name {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 6px;
}

@media (max-width: 991.98px) {
    .app-item__name {
        font-size: 16px;
    }
}

.app-item__info {
    display: flex;
    align-items: center;
    line-height: 125%;
    grid-gap: 6px;
}

@media (max-width: 991.98px) {
    .app-item__info {
        font-size: 14px;
    }
}

.app-item__info svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 991.98px) {
    .app-item__info svg {
        width: 12px;
        height: 12px;
    }
}

.app-item__info svg:last-of-type {
    margin-left: 6px;
}

.app-item a,
.app-item button {
    padding: 10px 12px;
    margin-left: auto;
}

@media (max-width: 991.98px) {

    .app-item a,
    .app-item button {
        font-size: 0;
    }
}

/* bonuses-grid */

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}

@media (max-width: 767.98px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* .bonus-card-s_ */

@media (min-width: 991px) {
    .media_block .image {
        position: sticky;
        top: 90px;
    }
}

.bonus-card-s {
    background: url(../img/bg-bonus.png) 0 0/cover no-repeat;
    display: grid;
    padding: 35px 16px 16px 16px;
    margin-top: 24px;
    color: white;
    border-radius: var(--theme-rounded-section);
    position: relative;
    display: grid;
    grid-gap: 15px;
}

@media (max-width: 767.98px) {
    .bonus-card-s {
        padding: 35px 12px 12px 12px;
    }
}

.bonus-card-s__logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 52px !important;
    border: 1px solid #5D5D5D;
    background: #383838;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    max-height: 47px !important;
    padding: 10px 12px;
    width: auto;
}



.bonus-card-s__bk {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 991.98px) {
    .bonus-card-s__bk {
        font-size: 20px;
    }
}

.bonus-card-s__wrap {
    min-height: 116px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 767.98px) {
    .bonus-card-s__wrap {
        min-height: 96px;
    }
}

.bonus-card-s__wrap .copy {
    margin-top: 10px;
    color: white;
    width: 100%;
}

/* bonus section */


.bonus {
    background: url("../img/bg-bonus.png") 0 0/cover no-repeat;
    display: grid;
    grid-template-columns: 1fr 513px;
    grid-gap: 0 32px;
    color: white;
    padding: 16px 0 16px 16px;
    border-radius: var(--theme-rounded-section);
    margin-bottom: var(--theme-block-margin-bottom);
}

@media (max-width: 991.98px) {
    .bonus {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

.bonus h2 {
    margin-bottom: 20px;
}

.bonus p {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 120%;
}

@media (max-width: 991.98px) {
    .bonus p {
        font-size: 20px;
    }
}

.bonus .copy {
    color: white;
}

.bonus__buttons {
    display: flex;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

@media (max-width: 767.98px) {
    .bonus__buttons {
        grid-template-columns: 1fr;
    }
}

.bonus img {
    height: fit-content;
    object-fit: contain;
    margin-top: 10px;
    width: 100%;
    height: 100%;
    max-width: 513px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 991.98px) {
    .bonus img {
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 5;
        margin-top: -16px;
        margin-bottom: -16px;
    }
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}

@media (max-width: 767.98px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

/* benefits */
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.benefits__item {
    border-radius: 12px;
    background: #F6F6F6;
    flex: 1 0 calc(33.333% - 16px);
    min-width: 250px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 54px;
    grid-gap: 16px;
}

.benefits__item img {
    width: 100%;
    height: fit-content;
}

@media (max-width: 991.98px) {
    .benefits__item {
        grid-template-columns: 1fr 46px;
    }
}

.benefits__item:only-child {
    flex: 1 0 100%;
}

.benefits__item p {
    line-height: 125%;
}

@media (max-width: 991.98px) {
    .benefits__item p {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.benefits__item img {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

@media (max-width: 767.98px) {
    .benefits__item img {
        grid-row-end: 2;
    }
}

.benefits__item:nth-last-child(2):nth-child(3n+1),
.benefits__item:nth-last-child(2):nth-child(3n+1)~.benefits__item:last-child {
    flex: 1 0 calc(50% - 16px);
}

.benefits__item--ttl {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .benefits__item--ttl {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .benefits__item {
        flex: 1 0 100% !important;
    }
}

/* demo preiew */

.demo-preview {
    position: relative;
    border-radius: 12px;
    border: 1px solid #2F3031;
    color: white;
    padding: 52px 16px 16px 16px;
}

@media (max-width: 991.98px) {
    .demo-preview {
        padding: 52px 12px 12px 12px;
    }
}

.demo-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.demo-preview img:last-of-type {
    width: 56px;
    height: 56px;
    object-fit: contain;
    top: -6px;
    right: -6px;
    left: auto;
}

.demo-preview p {
    font-size: 20px;
    position: relative;
}

.demo-preview__ttl {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.demo-preview__btns {
    margin-top: 16px;
    position: relative;
    display: flex;
    gap: 16px;
}

@media (max-width: 767.98px) {
    .demo-preview__btns {
        flex-direction: column;
    }
}

.demo-preview__btns a,
.demo-preview__btns button {
    color: white;
}

/* tools */


.tools {
    border-radius: var(--theme-rounded-section);
    background: var(--black, #1B1C1D);
    padding: 16px;
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 20px;
    margin-bottom: var(--theme-block-margin-bottom);
}

@media (max-width: 991.98px) {
    .tools {
        grid-template-columns: 1fr;
    }
}

.tools h2 {
    margin-bottom: 8px;
}

@media (min-width: 991.98px) {
    .tools h2 {
        grid-column-end: 3;
        grid-column-start: 1;
    }
}

.tools__item {
    position: relative;
    border-radius: 12px;
    border: 1px solid #2F3031;
    background-color: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    background-position: 0 0;
    background-color: lightgray;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 52px 16px 16px 16px;
}

@media (max-width: 991.98px) {
    .tools__item {
        padding: 52px 12px 12px 12px;
    }
}

.tools__item img {
    position: absolute;
    width: 56px;
    height: 56px;
    object-fit: contain;
    top: -6px;
    right: -6px;
}

.tools__item p {
    font-size: 20px;
}

.tools__item--title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tools__item-btns {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

@media (max-width: 767.98px) {
    .tools__item-btns {
        flex-direction: column;
    }
}

.tools__item-btns a,
.tools__item-btns button {
    color: white;
}

@media (max-width: 991.98px) {
    .tools div:nth-child(2) {
        order: 1;
    }

    .tools div:nth-child(3) {
        order: 3;
    }

    .tools div:nth-child(4) {
        order: 2;
    }

    .tools div:nth-child(5) {
        order: 4;
    }
}

.tools__txt {
    display: grid;
    grid-gap: 10px;
    height: fit-content;
}

.tools__txt p {
    margin-bottom: 0;
}

/* small-listing   */

.small-listing {
    display: grid;
    grid-gap: 12px;
    color: white;
    padding: 12px;
    border-radius: 12px;
    background: var(--black, #1B1C1D);
}

.small-listing>b {
    font-weight: 500;
}

/* strategy-card  */

.strategy-card {
    border-radius: 12px;
    background: url(../img/bg-bonus.png) 0 0/cover no-repeat;
    padding: 16px;
    display: grid;
    grid-gap: 16px;
    color: white;
}

.strategy-card img {
    margin-left: auto;
    margin-right: auto;
    height: 27px;
    width: fit-content;
}

.strategy-card__ttl {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: -16px;
}

@media (max-width: 991.98px) {
    .strategy-card__ttl {
        font-size: 20px;
    }
}

.strategy-card__bonus {
    display: grid;
    grid-gap: 12px;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}

.strategy-card__bonus p {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 6px;
}

.strategy-card__bonus p svg {
    margin-top: -3px;
}

.strategy-card__bonus b {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .strategy-card__bonus b {
        font-size: 18px;
    }
}

.strategy-card__advantages {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strategy-card__advantages span {
    display: flex;
    gap: 6px;
    align-items: center;
}

.strategy-card__advantages span svg {
    margin-top: -3px;
}

.predictor-game {
    margin-bottom: var(--theme-block-margin-bottom);
    --delay: 10000;
    --start-color: #4ca0d1;
    --finish-color: #6921b9;
    --middle-color: #b921b1;
    --current-color: var(--start-color);
    --left-plane-final-position: 70%;
    --bottom-plane-final-position: 20%;
    --plane-width: 150px;
    --plane-height: 75px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: var(--section-border-radius, 12px);
    background: #000;
    padding: 17px 17px 0;
    max-width: calc(var(--width-container) - var(--offsets) * 2);
}

.predictor-game:not(:first-child) {
    margin-top: 20px;
}

.predictor-game[data-phase=waiting] .predictor-game__progress-bar {
    animation: loadingBar linear forwards;
    animation-duration: calc(var(--delay) * 1ms);
}

.predictor-game[data-phase=waiting] .predictor-game__score,
.predictor-game[data-phase=waiting] .predictor-game__highlight {
    display: none;
}

.predictor-game[data-phase=waiting] .predictor-game__preloader {
    display: flex;
}

.predictor-game[data-phase=playing] .predictor-game__score,
.predictor-game[data-phase=finish] .predictor-game__score {
    display: block;
}

.predictor-game[data-phase=playing] .predictor-game__sun,
.predictor-game[data-phase=finish] .predictor-game__sun {
    animation-play-state: running;
}

.predictor-game[data-phase=playing] .predictor-game__highlight,
.predictor-game[data-phase=finish] .predictor-game__highlight {
    animation: animHighlightStart 3s 6s ease forwards, animHighlight 3s 9s ease infinite alternate;
}

.predictor-game[data-phase=playing] .predictor-game__preloader,
.predictor-game[data-phase=finish] .predictor-game__preloader {
    display: none;
}

.predictor-game[data-phase=playing] .predictor-game__controller,
.predictor-game[data-phase=finish] .predictor-game__controller {
    pointer-events: none;
}

.predictor-game[data-phase=playing] .predictor-game__controller .predictor-game__controller-value,
.predictor-game[data-phase=finish] .predictor-game__controller .predictor-game__controller-value {
    color: #767981;
}

.predictor-game[data-phase=playing] .predictor-game__plane {
    animation: planeStart 5s ease-out forwards, planeFlying 2s 5s ease-in-out infinite alternate forwards, planeAnim 0.38s steps(3) infinite;
}

.predictor-game[data-phase=finish] .predictor-game__score {
    color: #c4002d;
}

.predictor-game[data-phase=finish] .predictor-game__highlight {
    opacity: 0;
}

.predictor-game[data-phase=finish] .predictor-game__plane {
    animation: planeFinish 1s ease forwards, planeAnim 0.38s steps(3) infinite;
}

.predictor-game__main {
    position: relative;
    width: 100%;
    height: 526px;
    border-radius: var(--section-border-radius, 12px);
    border: 1px solid #2a2b2e;
    background: #000;
    overflow: hidden;
}

.predictor-game__sun {
    position: absolute;
    z-index: 0;
    left: -1370px;
    bottom: -1380px;
    width: 2760px;
    height: 2760px;
    background: url("../img/predictor-game-sun.svg") center/contain no-repeat;
    animation: predictorRotateAnim 60s linear infinite;
    animation-play-state: paused;
}

.predictor-game__preloader,
.predictor-game__score,
.predictor-game__highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.predictor-game__propeller {
    width: 120px;
    height: 120px;
    display: block;
    background: url("../img/propeller.svg") center/contain no-repeat;
    margin: 4px;
    animation: predictorRotateAnim 2s linear infinite;
}

.predictor-game__preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2;
    top: 50%;
}

.predictor-game__preloader-text {
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.16;
}

.predictor-game__preloader-rate {
    padding: 5px 6px;
    border-radius: 5px;
    background: var(--red, #c4002d);
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
}

.predictor-game__score {
    color: #fff;
    text-align: center;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s ease;
}

.predictor-game__score.hiding {
    display: none;
}

.predictor-game__score.hiding+.predictor-game__hightlight {
    display: none;
}

.predictor-game__highlight {
    z-index: 0;
    width: 200px;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 150px 86px currentColor;
    color: var(--start-color);
    transition: color 1s ease, opacity 0.3s ease;
}

.predictor-game__cashout {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
    border-radius: var(--section-border-radius, 12px);
    border: 1px solid var(--green, #4caf50);
    background: #282828;
    width: clamp(200px, 491px, 100% - 24px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    opacity: 0;
}

.predictor-game__cashout.active {
    opacity: 1;
    top: 32px;
    transition: all 0.3s;
}

.predictor-game__cashout-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

.predictor-game__cashout-rate {
    padding: 2px 10px;
    border-radius: 5px;
    background: var(--green, #4caf50);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}

.predictor-game__cashout-btn {
    padding: 12px;
    width: 262px;
    min-height: 57px;
}

.predictor-game__progress {
    position: relative;
    width: 266px;
    height: 10px;
    border-radius: 20px;
    background: #1b1c1d;
}

.predictor-game__progress.hiding {
    display: none;
}

.predictor-game__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #c4002d;
    border-radius: 20px;
}

.predictor-game__plane {
    position: absolute;
    z-index: 1;
    left: 10px;
    bottom: 30px;
    z-index: 1;
    width: var(--plane-width, 150px);
    height: var(--plane-height, 75px);
    background: url("../img/plane-fill.svg") 0 0/auto 100% no-repeat;
    animation: planeAnim 0.38s steps(3) infinite;
}

.predictor-game__controls {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    width: calc(100% + 34px);
    margin-left: -17px;
    margin-top: 17px;
}

.predictor-game__controls-item {
    flex: 1;
    border-radius: 10px;
    background: #1b1c1d;
    padding: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 31px;
    overflow: hidden;
}

.predictor-game__controls-item:not(:first-child),
.predictor-game__controls-item.disabled {
    pointer-events: none;
    position: relative;
}

.predictor-game__controls-item:not(:first-child)::after,
.predictor-game__controls-item.disabled::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

.predictor-game__controls-item:not(:first-child) .predictor-game__controller-value,
.predictor-game__controls-item.disabled .predictor-game__controller-value {
    color: #767981;
}

.predictor-game__controllers {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
    width: clamp(100px, 150px, 100%);
}

.predictor-game__controller {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 22px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 11px;
    min-height: 34px;
}

.predictor-game__controller-btn {
    position: relative;
    min-width: 18px;
    min-height: 18px;
    border: 1px solid #767981;
    border-radius: 50%;
    background: transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.predictor-game__controller-btn::before,
.predictor-game__controller-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    background: #767981;
    transition: background 0.3s ease;
}

.predictor-game__controller-btn--minus::before {
    content: "";
}

.predictor-game__controller-btn--plus::before,
.predictor-game__controller-btn--plus::after {
    content: "";
}

.predictor-game__controller-btn--plus::after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.predictor-game__controller-value {
    min-width: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;

}

.predictor-game__bet {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #b2f2a3;
    background: #28a909;
    width: clamp(100px, 200px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.predictor-game__bet.cashout {
    background: #d07206;
    border-color: #ffbd71;
}

.predictor-game__bet-info {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.predictor-game__bet-value {

    font-size: 24px;
}

.predictor-game__bet-currency {

    font-size: 18px;
    line-height: 1;
    margin-top: 4px;
}

@keyframes predictorRotateAnim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes planeAnim {
    to {
        background-position-x: calc(var(--plane-width) * -3);
    }
}

@keyframes loadingBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes animHighlightStart {
    0% {
        color: var(--start-color);
    }

    100% {
        color: var(--finish-color);
    }
}

@keyframes animHighlight {
    0% {
        color: var(--finish-color);
    }

    100% {
        color: var(--middle-color);
    }
}

@keyframes planeStart {
    to {
        left: var(--left-plane-final-position);
        bottom: calc(var(--bottom-plane-final-position) + 20%);
    }
}

@keyframes planeFlying {
    0% {
        bottom: calc(var(--bottom-plane-final-position) + 20%);
    }

    100% {
        bottom: var(--bottom-plane-final-position);
    }
}

@keyframes planeFinish {
    from {
        left: var(--left-plane-final-position);
        bottom: calc(var(--bottom-plane-final-position) + 10%);
    }

    to {
        left: 200%;
        bottom: 80%;
    }
}

.demo-bonus {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-gap: 24px;
    margin-bottom: var(--theme-block-margin-bottom);

}

.demo-bonus .iframe-block {

    margin-bottom: 0;

}

@media (max-width: 991.98px) {
    .demo-bonus {
        grid-template-columns: 1fr;
    }
}

.demo-bonus-promo {
    background: url(../img/bg-bonus.png) 0 0/cover no-repeat;
    color: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #2F3031;
}

@media (max-width: 991.98px) {
    .demo-bonus-promo {
        order: -1;
    }

    .demo-bonus-promo img {
        display: none;
    }
}

.demo-bonus-promo__ttl {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
}

.demo-bonus-promo p {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 16px;
}

.demo-bonus-promo__promocode {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
    justify-content: center;
}

.demo-bonus-promo__promocode .copy {
    color: white;
    font-size: 14px;
    width: 100%;
}

.demo-bonus-promo__promocode>a,
.demo-bonus-promo__promocode>button {
    padding: 10px;
    width: fit-content;
    white-space: nowrap;
}

.demo-bonus-promo>a,
.demo-bonus-promo>button {
    width: 100%;
}

.demo-bonus-promo img {
    margin: 0 -8px -8px;
}