    body._overflow {
        overflow: hidden;
    }
    .logos-list {
        padding: 0;
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: -5px -10px;
    }

    .logos-item {
        padding: 0 !important;
    }

    .logos-inner {
        display: block;
        background: none;
        border: none;
        padding: 10px;
    }

    .logos-inner img {
        display: block;
        max-width: 80px;
        max-height: 40px;
        width: 100%;
        height: auto;
    }

    @media (min-width:768px) {
        .logos-inner {
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .logos-inner:hover {
            opacity: 1;
        }
    }

    @media (max-width:768px) {
        .logos-inner {
            padding: 5px;
        }

        .logos-inner img {
            max-height: 35px;
        }
    }

    .payment-list {
        margin: -5px;
        justify-content: space-around;
    }

    .payment-list .logos-inner {
        background: #161616;
        width: 120px;
        height: 60px;
        margin: 5px;
        border-radius: 10px;
        padding: 10px;
        transition: box-shadow 0.3s ease;
    }

    .payment-list .logos-inner img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    @media (min-width:768px) {
        .payment-list .logos-inner {
            box-shadow: 0 0 0 1px #161616;
            transition: box-shadow 0.3s ease, opacity 0.3s ease;
        }

        .payment-list .logos-inner:hover {
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
        }
    }

    @media (max-width: 768px) {
        .payment-list .logos-inner {
            padding: 12px;
            width: 110px;
            height: 55px;
        }
    }

    .bonus-list {
        padding: 0;
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        margin: 20px -8px;
    }

    .bonus-item {
        padding: 0 !important;
        flex: 1 1 33.333%;
        min-width: 330px;
        max-width: 445px;
        display: flex;
        flex-direction: column;
    }

    @media(max-width: 480px) {
        .bonus-item {
            flex: 1 1 auto;
            min-width: unset;
        }
    }

    .bonus-inner {
        min-height: 230px;
        flex: 1 1 auto;
        position: relative;
        margin: 8px;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;

        transition: transform 0.3s ease;
    }

    @media(min-width: 768px) {
        .bonus-inner:hover {
            transform: scale(1.05);
        }
    }

    .bonus-image {
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .bonus-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bonus-overlay {
        flex: 1 1 auto;
        position: relative;
        padding: 20px;
        z-index: 1;
        display: flex;
        flex-direction: column;
    }

    .bonus-content .subtitle {
        color: rgba(245, 245, 245, 0.7);
        font-size: 14px;
        line-height: 18px;
        text-transform: uppercase;
    }

    .bonus-overlay .bonus-content p {
        padding: 0;
        margin: 0;
    }

    .bonus-overlay .bonus-content h3 {
        color: #f4f4f4;
        font-size: 22px;
        font-weight: 700;
        line-height: 28px;
        max-width: 270px;
        padding-top: 6px;
        text-transform: uppercase;
    }

    @media (max-width: 768px) {
        .bonus-item {
            max-width: 400px;
        }

        .bonus-inner {
            min-height: 200px;
        }

        .bonus-overlay {
            padding: 13px;
        }

        .bonus-content .subtitle {
            font-size: 13px;
            line-height: 16px;
        }

        .bonus-overlay .bonus-content h3 {
            font-size: 19px;
            line-height: 24px;
        }
    }

    .bonus-buttons {
        margin-top: auto;
        display: flex;
        align-items: center;
    }

    .bonus-buttons .button {
        padding: 10px;
        min-width: 110px;
    }

    @media(max-width:480px) {
        .bonus-buttons .button {
            padding: 8px;
            min-width: 100px;
            font-size: 14px;
        }
    }

    .bonus-buttons .button:not(:last-child) {
        margin-right: 10px;
    }

    .bonus-hidden._active {
        transition-delay: 0s;
        opacity: 1;
        visibility: visible;
    }

    .bonus-hidden {
        display: flex;
        position: fixed;
        z-index: 10;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
        overflow-y: auto;
        padding: 50px 20px 20px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        opacity: 0;
        visibility: hidden;

        transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
    }

    .bonus-hidden .bonus-content {
        position: relative;
        margin: auto;
        background-color: #242424;
        border: 1px solid #98c454;
        border-radius: 20px;
        padding: 30px 40px;
        max-width: 800px;
        width: 100%;
        cursor: default;
    }

    .bonus-hidden .close {
        background: none;
        border: none;
        display: block;
        position: absolute;
        bottom: 100%;
        right: 0;
        padding: 10px 10px 8px;
    }

    .bonus-hidden .close img {
        display: block;
        width: 35px;
        height: 35px;
    }

    @media (max-width: 768px) {
        .bonus-hidden {
            padding: 50px 10px 10px;
        }

        .bonus-hidden .bonus-content {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .bonus-hidden .bonus-content {
            padding: 15px;
        }
    }

    .content-table {
        overflow-x: auto;
    }

    .content-table table {
        border-collapse: collapse;
        margin: 10px auto;
    }

    .content-table table p {
        padding: 0;
        margin: 0;
    }

    .content-table thead th,
    .content-table.vertical thead th:first-child,
    .content-table.vertical tbody td:first-child {
        background-color: #0a0a0a;
        font-weight: 700;
        text-align: center;
    }

    .content-table tbody td,
    .content-table.vertical thead th {
        background-color: #222;
        font-weight: 400;
        text-align: left;
    }

    .content-table th,
    .content-table td {
        border: 1px solid #555;
        padding: 10px 15px;
        white-space: nowrap;
    }

    @media(max-width:768px) {

        .content-table th,
        .content-table td {
            padding: 9px;
        }
    }

    .tour-list {
        padding: 0;
        list-style-type: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        margin: 20px -8px;
    }

    .tour-item {
        padding: 0 !important;
        flex: 1 1 33.333%;
        max-width: 380px;
        min-width: 365px;
    }

    @media(max-width:480px) {
        .tour-item {
            flex: 1 1 100%;
            min-width: unset;
            max-width: unset;
        }
    }

    .tour-inner {
        margin: 8px;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background-color: #131313;
        transition: transform 0.3s ease;
    }

    @media(min-width: 768px) {
        .tour-inner:hover {
            transform: scale(1.05);
        }
    }

    .tour-header {}

    .tour-tag {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;

        color: #f4f4f4;
        text-align: center;
        text-transform: uppercase;
        background: rgba(18, 18, 18, 0.65);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 22px;
        padding: 24px 14px;
    }

    .tour-image {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .tour-image::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 68px;
        background: linear-gradient(180deg, hsla(0, 0%, 7%, 0), #131313);
    }

    .tour-image img {
        display: block;
        max-width: 100%;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .tour-timer {
        position: relative;
        z-index: 1;
        margin-top: -50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .label {
        color: #f4f4f4;
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        padding-bottom: 20px;
    }

    .tour-numbers {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .tour-numbers>div {
        height: 57px;
        width: 66px;
        padding: 5px;
        background-color: #1c1c1c;
        border: 1px solid #98c454;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .tour-numbers>div>div {
        text-align: center;
        font-size: 12px;
        line-height: 12px;
    }

    .tour-numbers .num {
        font-size: 22px;
        line-height: 24px;
        padding-top: 3px;
        font-weight: 700;
    }

    .delim {
        color: #f4f4f4;
        font-size: 17px;
        margin: 0 5px;
    }

    @media (max-width:480px) {
        .tour-numbers>div {
            height: 55px;
            width: 60px;
            padding: 3px;
        }

        .tour-numbers .num {
            font-size: 18px;
            line-height: 22px;
        }

        .delim {
            font-size: 14px;
            margin: 0 2px;
        }
    }

    @media (max-width:380px) {
        .tour-numbers>div {
            height: 50px;
            width: 55px;
        }
    }

    .tour-footer {
        margin-top: 28px;
        padding: 15px;
    }

    .tour-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .tour-content .subtitle {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: .02em;
        line-height: 1.55;
    }

    .tour-footer .tour-content h3 {
        color: #98c454;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: .04em;
        line-height: 1.25;
    }

    .tour-prizes {
        padding: 0;
        list-style-type: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .tour-prizes .prize {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .tour-prizes .prize>img {
        max-width: 28px;
        width: 100%;
        height: auto;
        margin-bottom: 4px;
    }

    .tour-prizes .prize>div {
        color: #f4f4f4;
        font-size: 14px;
        font-weight: 700;
    }

    .tour-rules {
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center;
    }

    .tour-rules .rule {
        flex: 1 1 100%;
        background-color: #1c1c1c;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: 10px;
        padding: 10px;
    }

    .tour-rules .rule:not(:last-child) {
        margin-right: 15px;
    }

    .tour-rules .rule img {
        display: block;
        width: 28px;
        height: auto;
        margin-right: 10px;
    }

    .tour-rules .column div {
        color: #c8c8c8;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: .02em;
        line-height: 1.55;
        text-transform: capitalize;
    }

    .tour-rules .column .val {
        color: #98c454;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.25;
    }

    .tour-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .tour-buttons .button:not(:last-child) {
        margin-right: 15px;
    }

    .tour-buttons .button {
        width: 100%;
    }

    @media (max-width:480px) {
        .tour-buttons .button {
            min-width: unset;
            padding: 10px;
        }
    }

    h4 {
        padding: 5px 0;
    }

    .reviews-list {
        margin: -10px;
    }

    .review {
        flex: 1 1 33.333%;
    }

    .review-inner {
        margin: 10px;
        padding: 15px;
    }

    .review-link {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .review .bottom {
        padding: 10px 0;
    }

    .review-content .bottom p {
        margin: 0;
        padding: 5px 0;
    }
    
    @media (max-width: 991.98px) {
        .review h3 {
            font-size: 16px;
        }
    }