:root {
    --white-color: #ffffff;
    --black-color: #000;
    --background-color1: #181819;
    --background-color2: #040707;
    --background-color3: #1a1a1a;
    --background-color4: #121212;
    --background-color5: #0f1010;
    --background-color6: #d8d8d8;
    --background-color7: #e8e8e8;
    --background-color8: #161517;
    --background-color9: #494849;
    --grey-color: #424343;
    --grey-color2: #6a6f6f;
    --background-gradient: linear-gradient(to right, #040707 0%, #181819 100%);
    --border-gradient1: linear-gradient(to right, #0f1010 0%, #b08b2e 100%);
    --border-gradient2: linear-gradient(to right, #b08b2e 0%, #c9a228 100%);
    --border-gradient3: linear-gradient(to right, #6a6f6f 0%, #c2982c 100%);
    --border-gradient4: linear-gradient(to right, #0f1010 0%, #e7aa10 100%);
    --orange-color: #ef6d22;
    --yellow-color: #e9b200;
    --yellow-color2: #e9b200;
    --brand-color: #FEC40D;
    --border-color2: #95b645;
    --border-color3: #1f2121;
    --border-color4: rgba(67, 67, 67, .75);
    --border-color5: #454445;
    --border-color6: #323232;
    --border-color7: #dbdbdb;
    --text-color: #eff0f1;
    --text-color2: #a0a09f;
    --text-color3: #949393;
    --selected-color: #5c9340;
    --selected-color-hover: #538c36;
    --hover-color: rgba(255, 255, 255, 0.2);
    --odd-color: #1b1c1c;
    --even-color: #161818;
    --btn-color: #494949;
    --btn-color2: #bf222c;
    --btn-color2-hover: #a01b24;
    --icon-color: #c6dbbb;
    --green-color: #00ff3f;
    --green-color2: #318a14;
    --blue-color: #3298f4;
    --blue-color2: #3298f4;
    --red-color: #be232b;
    --background-color-toast-info: #cbdfff;
    --background-color-toast-yield: #f6e7c1;
    --background-color-toast-success: #caffcc;
    --background-color-toast-warning: #cc9998;
}

body {
    background-color: var(--background-color5);
}

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

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

    ::-webkit-scrollbar-thumb:hover {
        background: var(--border-color6);
    }

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

body:not(.mobile).modal-open .Wrapper--Header:not(.Full), body:not(.mobile).modal-open .header-secondary:not(.gameLaunchFull):not(.Full),
body:not(.mobile).modal-open .Main, body:not(.mobile).modal-open .Main_not_slidable {
    padding-right: 6px !important;
}

a, a:hover, a:focus, #searchPopup .demo:hover {
    height: 100%;
    display: block;
    text-decoration: none;
    color: var(--text-color3);
    outline: none;
}

ul, ol {
    margin-bottom: 0;
}

.has-error {
    display: block;
}

.has-error, .required-field, .depositmessage-error, .withdrawalmessage-error {
    color: var(--btn-color2);
}

.profile__msg--success, .depositmessage-success, .withdrawalmessage-success {
    color: var(--selected-color) !important;
}

.modal.fade .modal-dialog:not(.search) {
    scale: .8;
    transition: all .2s ease-in-out;
}

.modal.fade.show .modal-dialog {
    scale: 1;
    z-index: 1050;
}

/* -------------------------------------------------------------------------- LOADING -------------------------------------------------------------------------*/
#searchPopup .searchLoading:after, 
.overlay24.loading:after, .loading:after, .Iframe--full.loading:after,
 #sport_div_iframe.loading:after, .block-overlay.loading, .btn-close.loading:after,
.btn-full-screen.loading:after, .btn-refresh.loading:after {
    content: '';
    display: block;
    position: absolute !important;
    border: 2px solid var(--border-color7);
    border-right-color: transparent;
    border-top-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinAround 0.5s infinite linear;
    animation: spinAround 0.5s infinite linear;
}

@-webkit-keyframes spinAround {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@keyframes spinAround {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

.btn-close.loading:after,
.btn-full-screen.loading:after,
.btn-refresh.loading:after, .btn-refresh.loading i:before {
    width: 10px !important;
    height: 10px;
    left: calc(50% - (10px / 2));
    top: calc(50% - (10px / 2));
}

.Iframe--full.loading:after,
#sport_div_iframe.loading:after {
    width: 20em;
    height: 20em;
    left: calc(50% - (20em / 2));
    top: calc(50% - (20em / 2));
}

.block-overlay.loading {
    width: 5em;
    height: 5em;
    left: calc(50% - (5em / 2));
    top: calc(50% - (5em / 2));
}

.overlay24.loading:after {
    width: 100px !important;
    height: 100px;
    left: calc(50% - (100px / 2)) !important;
    top: calc(50% - (100px / 2)) !important;
}

.loading:after {
    width: 15px !important;
    height: 15px;
    left: calc(50% - (15px / 2)) !important;
    top: calc(50% - (15px / 2)) !important;
}

.block-overlay.loading:after {
    content: none;
}

.product-wrapper .product-card.loading:after {
    left: calc(50% - (15px / 2)) !important;
    top: calc(50% - (60px / 2)) !important;
}

.loading, .btn-refresh.loading i:before {
    color: transparent !important;
    pointer-events: none;
}

.overlay24.loading {
    z-index: 10000000 !important;
    pointer-events: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
/* -------------------------------------------------------------------------- HEADER -------------------------------------------------------------------------*/

.Wrapper--Header, .Header--secondary {
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
}

.Header--secondary {
    background: var(--background-color5);
    margin-top: 40px;
    z-index: 4 !important;
}

    .Header--secondary.gameLaunchFull:hover {
        z-index: 6 !important;
    }

.Wrapper--Header.Header--primary .Container__Item {
    height: 40px;
    padding-left: 10px;
    display: flex;
    background-color: var(--background-color1);
    font-size: 16px;
}

.Header--primary .header_info_sections .Sections {
    height: 100%;
    display: flex;
}

    .Header--primary .header_info_sections .Sections li {
        margin-left: 20px;
        line-height: 40px;
    }

        .Header--primary .header_info_sections .Sections li a {
            padding: 0 10px;
            display: flex;
            font-size: 15px;
        }

.Register_container {
    margin-left: auto;
    padding: 5px 0;
    display: flex;
}

    .Register_container [class^='Button-'], .promo-tabs .card.flipper .back a {
        min-width: 100px;
        margin: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        background-color: var(--btn-color);
        color: var(--white-color);
        position: relative;
    }

.Balance--user {
    min-width: 200px;
    position: relative;
    border-right: 1px solid var(--grey-color);
}

.Register_container .Button--Balance {
    width: 180px;
    background-color: transparent;
    gap: 4px;
}

.Register_container .Button--messages {
    background-color: transparent;
    margin: 0;
}

.las.la-envelope.msg--holder {
    width: 60px;
    height: 30px;
    margin: 0 3px;
    line-height: 34px;
    text-align: center;
    border-radius: 2px;
    background-color: var(--brand-color);
    position: relative;
}

#msg-row .msg--count {
    margin-left: 5px;
    padding: 0px 3px;
    border-radius: 3px;
    background: var(--brand-color);
    color: var(--black-color);
    font-size: 14px;
}

.msg--holder .msg--count {
    position: absolute;
    top: -10px;
    left: 39px;
    color: var(--black-color);
    font-size: 12px;
    font-weight: 900;
}

.btn, .Register_container .Button--sign-up, #popupLoginBtn, .Register_container .Button--deposit,
.promo-tabs .card.flipper .back a, .btn:focus, .claim-btn, .forfeit-btn, .disable-btn, .result-message,
.Confirm--policy .Button--accept, .Confirm--policy .Button--read-more, .Confirm--policy .Button--read-less,
.enable-btn {
    padding: 8px 12px;
    border-radius: 4px;
    background-color: var(--btn-color2);
    border: none;
    color: var(--white-color);
    position: relative;
}

.result-message {
    height: 100%;
    display: block;
}

.Register_container .Button--sign-up:hover, #popupLoginBtn:hover, .promo-tabs .card.flipper .back a:hover,
body:not(.mobile) .btn:not(.dont-pl-btn):hover, .btn.focus, .btn:active, .claim-btn:hover, .forfeit-btn:hover, .disable-btn:hover {
    background-color: var(--btn-color2-hover) !important;
    color: var(--white-color) !important;
}

.Menu--user {
    width: 100%;
    position: absolute;
    z-index: 5;
    background-color: var(--even-color);
    text-align: center;
    display: none;
}

.Balance--user:hover .Menu--user {
    display: block;
}

.Menu--user i:before, #profilePopup .profile-main-nav i:before, .Button--messages .la-envelope:before, .Menu--user li.username:before {
    content: "" !important;
}

#profilePopup .profile-main-nav i.la-envelope:before {
    display: none;
}

.Menu--user i:before, #profilePopup .profile-main-nav i, .Button--messages .la-envelope:before, .Menu--user li.username:before,
.Menu--user i.la-envelope:before {
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: var(--text-color3);
    -webkit-mask-size: contain !important;
}

.Menu--user i {
    margin-right: 6px;
}

    .Menu--user i.la-envelope:before {
        background-color: var(--text-color3) !important;
    }

.Menu--user ul li:hover i:before {
    background-color: var(--white-color) !important;
}

.Menu--user li.username:before {
    -webkit-mask: url(../img/design/icons/menu-user.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-user.svg) no-repeat 50% 50%;
    background-color: var(--white-color);
    margin-right: 5px;
}

.Menu--user i.las.la-user:before, #profilePopup .profile-main-nav i.las.la-user {
    -webkit-mask: url(../img/design/icons/menu-myprofile.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-myprofile.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-wallet:before, #profilePopup .profile-main-nav i.las.la-wallet {
    -webkit-mask: url(../img/design/icons/menu-wallet.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-wallet.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-angle-down:before, #profilePopup .profile-main-nav .force-active-color i.las.la-wallet {
    -webkit-mask: url(../img/design/icons/menu-deposit.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-deposit.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-angle-up:before {
    -webkit-mask: url(../img/design/icons/menu-withdraw.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-withdraw.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-history:before, #profilePopup .profile-main-nav i.las.la-history {
    -webkit-mask: url(../img/design/icons/menu-history.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-history.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-rocket:before, #profilePopup .profile-main-nav i.las.la-rocket {
    -webkit-mask: url(../img/design/icons/menu-promotions.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-promotions.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-key:before {
    -webkit-mask: url(../img/design/icons/menu-changepass.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-changepass.svg) no-repeat 50% 50%;
}

.Menu--user i.las.la-sign-out-alt:before {
    -webkit-mask: url(../img/design/icons/menu-sign-out.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-sign-out.svg) no-repeat 50% 50%;
}

.Button--messages .las.la-envelope:before, .Menu--user i.la-envelope:before, #profilePopup .profile-main-nav i.la-envelope {
    -webkit-mask: url(../img/design/icons/menu-message.svg) no-repeat 50% 50%;
    mask: url(../img/design/icons/menu-message.svg) no-repeat 50% 50%;
}

.Button--messages .las.la-envelope:before {
    background-color: var(--black-color);
}

.Menu--user .Button--messages {
    justify-content: start;
}

.Menu--user ul #menu_balance_wrapper, .Menu--user ul #menu_balance_wrapper .balance-group {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

    .Menu--user ul #menu_balance_wrapper .balance-group {
        margin: 5px 0;
        border: 1px solid var(--text-color);
        border-radius: 3px;
    }

        .Menu--user ul #menu_balance_wrapper .balance-group > div, .Menu--user ul #menu_balance_wrapper .balance-total > div,
        .Menu--user ul #menu_balance_wrapper .balance-total {
            width: 100%;
            display: flex;
            gap: 5px;
        }

.Menu--user ul li, .Menu--user .playerId + li > div {
    height: 40px;
    color: var(--text-color);
}

    .Menu--user ul li a, .Menu--user ul li, .Menu--user .playerId + li > div {
        display: flex;
        padding-left: 6px;
        align-items: center;
        color: var(--text-color);
    }

        .Menu--user ul li a {
            padding: 0;
            width: 100%;
        }

        .Menu--user ul li:not(#menu_balance_wrapper):hover {
            background-color: var(--selected-color) !important;
        }

.Menu--user .username, .Menu--user .playerId {
    background-color: var(--selected-color-hover);
}

    .Menu--user .playerId + li {
        display: block;
        height: auto;
        padding: 0;
    }

        .Menu--user .playerId + li > div {
            padding: 8px 6px;
            font-size: 14px;
            gap: 10px;
        }

            .Menu--user .playerId + li > div span {
                width: 50%;
                text-align: left;
            }

.Wrapper--Header.Header--secondary .Container__Item {
    height: 90px;
    display: grid;
    grid-template-columns: 296px 4fr 1fr;
    grid-template-areas: 'logo  gameSection          langTime'
        'logo  availabilityWrapper  availabilityWrapper';
}

.header_logo {
    grid-area: logo;
    margin-left: 30px;
}

    .header_logo a {
        display: flex;
        align-items: center;
    }

.langTime-leftPanel {
    display: none !important;
}

.header_game_sections, .lang-time, .langTime-leftPanel {
    height: 50px;
    line-height: 50px;
}

.header_game_sections {
    grid-area: gameSection;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: var(--border-gradient1);
}

.lang-time, .langTime-leftPanel {
    grid-area: langTime;
    display: flex;
    justify-content: end;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: var(--border-gradient2);
}

.availability_wrapper {
    grid-area: availabilityWrapper;
}

.Wrapper--Header.Header--secondary .Register_container, .Wrapper--Header.Header--secondary .Container__Item > .Item {
    display: none;
}

.header_game_sections .Sections {
    display: flex;
    font-size: 20px;
}

    .header_game_sections .Sections a, .lang-time, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected, .langTime-leftPanel {
        color: var(--text-color);
    }

    .header_game_sections .Sections li {
        padding: 0 20px;
        white-space: nowrap;
        text-transform: uppercase;
    }

.Sections li.apps a, .mobile .Sections li i.apps {
    display: block;
    width: 50px !important;
    height: 50px !important;
    padding: 0;
    background: url('/Content/img/design/icons/apple-android-logo.svg');
    background-size: cover;
    background-position: bottom;
}

.Time--local {
    gap: 5px;
    font-size: 16px;
    display: flex;
}

.tp-i_time {
    line-height: 49px !important;
}

    .tp-i_time:before {
        margin-right: 8px;
        font-size: 20px;
    }

.Language {
    width: 120px;
    margin-right: 18px;
    display: flex;
    flex-direction: row-reverse;
    white-space: nowrap;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

    .Language > i {
        margin-left: 10px;
        line-height: 50px;
    }

    .Language .Language-active, .Dropdown--language li a {
        padding: 0 13px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: start;
    }

        .Language:hover .Language-active, .Dropdown--language li a:hover, .header_game_sections .Sections .Sections__Item a:hover {
            font-weight: 600;
        }

    .Language .Language-active {
        padding: 0;
    }

    .Language .flag {
        display: block;
        width: 28px;
        height: 17px;
        margin-right: 5px;
        background: url(../img/flags/flags.png) no-repeat 0 0/100%;
        border-radius: 3px;
        overflow: hidden;
    }

        .Language .flag.en-us {
            background-position: 0 93.7716262976%;
        }

        .Language .flag.es-es {
            background-position: 0px 83.033%;
        }

        .Language .flag.ru-ru {
            background-position: 0 73.351%;
        }

        .Language .flag.ar-sa {
            background-position: 0px 97.93%;
        }

        .Language .flag.dk-da {
            background-position: 0px 24.59%;
        }

        .Language .flag.de-de {
            background-position: 0px 33.23%;
        }

        .Language .flag.fi-fi {
            background-position: 0px 30.459%;
        }

        .Language .flag.fr-fr {
            background-position: 0px 30.8%;
        }

        .Language .flag.he-he {
            background-position: 0px 43.598%;
        }

        .Language .flag.hi-in {
            background-position: 0px 40.834%;
        }

        .Language .flag.it-it {
            background-position: 0px 43.95%;
        }

        .Language .flag.ja-jp {
            background-position: 0px 44.64%;
        }

        .Language .flag.ka-ge {
            background-position: 0px 32.874%;
        }

        .Language .flag.fa-ir {
            background-position: 0px 41.87%;
        }

        .Language .flag.ko-kr {
            background-position: 0 82.34%;
        }

        .Language .flag.nl-nl {
            background-position: 0 60.55%;
        }

        .Language .flag.pl-pl {
            background-position: 0 70.592%;
        }

        .Language .flag.pt-pt {
            background-position: 0 70.94%;
        }

        .Language .flag.tr-tr {
            background-position: 0 91.36%;
        }

        .Language .flag.zh-cn {
            background-position: 0 18.345%;
        }

        .Language .flag.sr-sp {
            background-position: 0 77.84%;
        }

        .Language .flag.nb-no {
            background-position: 0 12.46%;
        }

        .Language .flag.sk-sk {
            background-position: 0 79.93%;
        }

        .Language .flag.sv-se {
            background-position: 0 86.145%;
        }

        .Language .flag.se-no {
            background-position: 0 78.19%;
        }

    .Language .Dropdown--language {
        display: none;
        width: 100%;
        position: absolute;
        z-index: 10;
        top: 40px;
        left: 16px;
        background-color: var(--background-color1);
        max-height: 328px;
        overflow: auto;
    }

    .Language:hover .Dropdown--language {
        display: block;
    }

.availability_wrapper .Sections {
    padding-left: 10px;
    display: flex;
    font-size: 18px;
}

    .availability_wrapper .Sections a {
        padding-left: 10px;
    }

        .availability_wrapper .Sections a:hover, .sections-trigger ~ .Widget--Header--secondary .Sections li.active a,
        .header_game_sections .Sections li.active a, .availability_wrapper .Sections li.active a, .Header--primary .header_info_sections .Sections li.active a {
            color: var(--brand-color);
        }

    .availability_wrapper .Sections .Sections__Item:not(:last-of-type) a:after {
        content: ' | ';
        margin-left: 10px;
        color: var(--text-color3) !important;
    }

.Widget--banner.secondary {
    display: none;
}
/* -------------------------------------------------------------------------- Slideable Banners -------------------------------------------------------------------------*/

.Widget--banner--sliding, .promo-tabs-wrapper, .promotion_content_wrapper, .content_wrapper_top, .live_casino_wrapper,
.coming_soon_wrapper, .Wrapper--Single.play-section.full-frame .Iframe--full, .Container--full.content-page.comingsoon,
.Availability, body:not(.mobile) .Wrapper--Single.game-launch--full, .Container--full.container_info,
.gameAvailability {
    margin-top: 130px;
}

body:not(.mobile) .Wrapper--Single.play-section {
    margin-top: 145px;
}

.Container--full {
    display: block;
}

.Widget--banner--sliding .carousel-cell:not(:nth-child(1)) {
    display: none;
}

.Widget--banner--sliding .flickity-slider .carousel-cell, .flickity-viewport {
    display: block !important;
}

    .Widget--banner--sliding .flickity-slider .carousel-cell a {
        position: relative;
        z-index: 5;
    }

.carousel-cell {
    min-height: 100%;
}

    .carousel-cell img, .carousel-cell {
        width: 100%;
    }

.flickity-page-dots {
    bottom: 10px;
}

    .flickity-page-dots .dot {
        width: 15px;
        height: 15px;
        margin: 0 4px;
        background: transparent;
        border: 2px solid var(--white-color);
        opacity: 1;
    }

        .flickity-page-dots .dot.is-selected {
            background: var(--brand-color);
            cursor: default;
        }

/* -------------------------------------------------------------------------- Content Wrapper -------------------------------------------------------------------------*/

.content_wrapper {
    display: grid;
    grid-template-columns: 380px 4fr 390px;
    grid-template-rows: 81px 0 540px 270px;
    grid-template-areas:
        'nav   nav  nav'
        'tag   game recent'
        'tag   game recent'
        'promo game big'
        'load  load load'
}

    .content_wrapper .sub-game-nav-block {
        padding: 0 20px;
        grid-area: tag;
        color: var(--white-color);
        overflow: auto;
    }

    .content_wrapper > .Container__Item.nav-simple {
        grid-area: nav;
    }

    .content_wrapper > .Container__Item.game-list-normal {
        grid-area: game;
    }

    .content_wrapper > .Container__Item:nth-of-type(5) {
        grid-area: recent;
        padding: 0 20px;
    }

    .content_wrapper > .Container__Item:nth-of-type(6) {
        grid-area: big;
        padding: 0 20px;
        margin-top: 20px;
    }

    .content_wrapper > .Container__Item:nth-of-type(8) {
        grid-area: promo;
        margin-top: 20px;
        padding: 0 20px;
    }

    .content_wrapper > .Container__Item.hidden-loadmore {
        grid-area: load;
    }

    .content_wrapper .Container__Item.game-nav.row, body.mobile .game-nav ~ .search-wrapper {
        margin: 0;
        padding: 20px 412px 20px 20px;
        background: var(--black-color);
        border-radius: 0;
        border-bottom: 1px solid var(--brand-color);
    }

    .content_wrapper.live-casino .Container__Item.game-nav.row {
        padding: 20px;
    }

    .game-nav .search-wrapper .view-category-filter-form, .content_wrapper > .Content__Item {
        display: none;
    }

.Container__Item.game-nav.row .js-view-category-filter-btn.hidden {
    pointer-events: none;
}

.Container__Item.game-nav.row .js-view-category-filter-btn {
    width: 40px;
    min-width: 40px;
    margin-right: 6px;
    padding: 6px 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--background-color);
    border: 1px solid var(--text-color2);
    color: var(--color-green-2);
    border-radius: 4px;
    transition: all 128ms;
}

.filter-icon {
    background-color: var(--text-color2);
    display: block;
    height: 2px;
    position: relative;
    width: 22px;
}

    .filter-icon:after, .filter-icon:before {
        content: "";
        position: absolute;
        transition: left .3s;
    }

    .filter-icon.filter-icon-middle:before, .js-view-category-filter-btn.open .filter-icon:before,
    .js-view-category-filter-btn.filterOpen .filter-icon:before {
        left: 12px;
    }

    .filter-icon.filter-icon-middle:after, .js-view-category-filter-btn.open .filter-icon:after,
    .js-view-category-filter-btn.filterOpen .filter-icon:after {
        left: 14px;
    }

    .filter-icon:before, .js-view-category-filter-btn.open .filter-icon-middle:before,
    .js-view-category-filter-btn.filterOpen .filter-icon-middle:before {
        border: 1px solid var(--text-color);
        border-radius: 100%;
        border-color: var(--text-color2);
        height: 6px;
        left: 3px;
        opacity: .8;
        top: -2px;
        width: 6px;
    }

    .filter-icon:after, .js-view-category-filter-btn.open .filter-icon-middle:after,
    .js-view-category-filter-btn.filterOpen .filter-icon-middle:after {
        background-color: var(--background-color1);
        border-radius: 100%;
        height: 2px;
        left: 5px;
        top: 0;
        width: 2px;
    }

.game-nav li {
    position: relative;
    white-space: nowrap;
}

.content_wrapper .game-nav li a {
    color: var(--brand-color);
    font-size: 16px;
}

.game-favorite ~ a {
    width: 54px;
    height: 36px;
    position: relative;
    z-index: 1;
    color: transparent !important;
}

.game-favorite {
    font-size: 32px;
    color: var(--brand-color);
    position: absolute;
    left: 11px;
    top: 2px;
    font-weight: bold;
}

.game-nav li:nth-child(2) {
    padding: 0;
}

.game-nav li:hover, .promotion_content_wrapper .game-nav li.selected:hover {
    background-color: var(--even-color);
}

.game-nav .search-wrapper, body.mobile .game-nav ~ .search-wrapper {
    padding: 0;
    display: flex;
    gap: 5px;
}

    body.mobile .game-nav ~ .search-wrapper .form-control-feedback {
        right: 20px;
    }

body.mobile .game-nav ~ .search-wrapper {
    height: 60px !important;
    padding: 0 20px 20px;
    margin: 0 !important;
}

body.mobile .content_wrapper .Container__Item.game-nav.row {
    border: none;
    padding-bottom: 10px;
}

.game-category-selector-container, .game-category-selector-container .ss-main .ss-multi-selected {
    width: 200px;
    padding: 0;
    border: none;
}

    .game-category-selector-container > select, .glyphicon.glyphicon-search.clearForm:before {
        display: none;
    }

    .game-category-selector-container .ss-main .ss-multi-selected, .game-category-selector-container .ss-main .ss-multi-selected .ss-value {
        background: 0 0;
        outline: none;
        color: var(--text-color3);
    }

.game-category-selector-container-replacer {
    display: none !important;
}

.game-nav [id^=searchTb], .game-category-selector-container .ss-main .ss-multi-selected, .game-nav ~ .search-wrapper [id^=searchTb] {
    height: 100% !important;
    background-color: var(--white-color) !important;
    border-radius: 3px;
}

.game-nav .search-wrapper .form-control-feedback, body.mobile .game-nav ~ .search-wrapper .form-control-feedback {
    padding: 4px 25px;
    color: var(--brand-color);
}

.glyphicon.glyphicon-search.clearForm .las.la-times {
    display: block;
    padding-top: 8px;
    font-size: 19px;
    pointer-events: initial;
    cursor: pointer;
    position: relative;
    top: -1px;
    left: -2px;
}

.game-category-selector-container .ss-content {
    position: absolute;
    border: none;
    z-index: 3;
    background-color: var(--background-color1);
    color: var(--white-color);
}

.ss-main .ss-multi-selected .ss-add {
    margin: 12px 12px 0 5px;
}

.nav-simple .game-nav {
    overflow: visible;
}

.ss-main .ss-multi-selected .ss-values .ss-value b {
    white-space: nowrap;
}

.ss-main .ss-multi-selected, .ss-main {
    height: 100%;
}

.game-category-selector-container .ss-values.ss-values_disable ~ .selectedInfoCount {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 3px 5px;
}

    .game-category-selector-container .ss-values.ss-values_disable ~ .selectedInfoCount p {
        margin: 0;
    }

.content_wrapper .sub-game-nav li {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 6px;
    background-color: var(--even-color);
    border: none;
    text-align: left;
}

.Menu--user i, [class^="identifier-tp-i_"]:before {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid var(--border-color3);
    border-radius: 3px;
    color: var(--text-color3);
}

.Menu--user ul li:not(.username):nth-child(odd),
.content_wrapper .sub-game-nav li:nth-child(even), .Menu--user .playerId + li > div {
    background-color: var(--odd-color);
}

.content_wrapper .sub-game-nav li:hover {
    background-color: var(--hover-color);
}

    .content_wrapper .sub-game-nav li:hover [class^="identifier-tp-i_"]:before {
        border-color: var(--hover-color);
    }

.ss-content .ss-list .ss-option:hover, .ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option.ss-disabled.ss-option-selected,
.content_wrapper .sub-game-nav li.selected {
    background-color: var(--selected-color);
}

.Menu--user ul li:hover i, .content_wrapper li.selected [class^="identifier-tp-i_"]:before {
    border-color: var(--border-color2) !important;
    color: var(--icon-color);
}

.Container__Item.casino-game-list.casino-game-list-item {
    margin: 0;
}

.casino-game-list-item .product-wrapper:not(.hero) {
    margin-top: 14px;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
}

.content_wrapper.live-casino .casino-game-list-item .product-wrapper:not(.hero) {
    grid-template-columns: repeat(5,1fr);
}

.casino-game-list-item .product-wrapper.no-games-found-container {
    grid-template-columns: auto auto !important;
}

.casino-game-list-item .product-wrapper:not(.hero) .product-card {
    aspect-ratio: 300 / 280;
    background-color: var(--grey-color);
    font-weight: 500;
}

.casino-game-list .product-card .product-title {
    bottom: 0;
    font-weight: 300;
    font-size: 16px;
    padding: 8px 26px 8px 16px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.casino-game-list-item .product-wrapper .product-card .product-desc,
.game-list-slidable .casino-game-list-item .product-wrapper .product-card .product-desc {
    display: flex;
    opacity: 1;
    background-color: initial;
    transition: all .5s;
}

.casino-game-list-item .product-wrapper .product-card .picture-productThumb {
    height: calc(100% - 42px) !important;
    display: block;
    object-fit: cover;
    overflow: hidden;
}

body:not(.mobile) .casino-game-list-item .product-wrapper .product-card:hover .product-desc,
body:not(.mobile) .game-list-slidable .casino-game-list-item .product-wrapper .product-card:hover .product-desc {
    opacity: 1;
}

.casino-game-list .product-card:hover .product-title, .game-list-slidable .casino-game-list .product-card:hover .product-title {
    height: auto;
    background: 0 0;
    z-index: 1;
    line-height: unset;
}

.casino-game-list .product-card .user-product-ctrl {
    z-index: 2;
}

.casino-game-list .product-card:hover .user-product-ctrl .play-now, .Button--play-real, #searchPopup .play-now {
    background: var(--selected-color);
}

.casino-game-list .product-card .user-product-ctrl .demo, .casino-game-list .product-card:hover .user-product-ctrl .play-now,
.Button--play-real, .Button--play-demo, #searchPopup .play-now, #searchPopup .demo,
.play-full {
    width: 100px;
    max-width: 100px;
    padding: 5px;
    text-align: center;
    border: 1px solid var(--selected-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 3px;
    position: relative;
}

    .casino-game-list .product-card:hover .user-product-ctrl .play-now:hover, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected,
    #searchPopup .play-now:hover {
        background: var(--selected-color-hover);
    }

    .casino-game-list .product-card .user-product-ctrl .demo:hover, #searchPopup .demo:hover {
        border-color: var(--selected-color-hover);
    }

.fav-game {
    display: inline-block;
    height: 26px;
    margin-left: auto;
}

    .fav-game a {
        height: auto;
        display: inline-block;
    }

    .fav-game .fav-color-red {
        font-weight: bold;
    }

.casino-game-list-item .product-wrapper .product-card img {
    transition: all 1s ease;
}

body:not(.mobile) .casino-game-list-item .product-wrapper .product-card:hover img {
    transform: scale(1.15);
    opacity: .2;
}

.game-list-normal.placeholder article:nth-child(n + 13),
.content_wrapper > .Container__Item:nth-of-type(8) > .row:not(.slick-initialized) .carousel-cell:not(:nth-of-type(1)),
.content_wrapper .card-date, .content_wrapper .card-info, .content_wrapper .back {
    display: none;
}

.content_wrapper > .Container__Item:nth-of-type(8) > .row {
    margin: 0;
    background-color: var(--background-color2);
    position: relative;
}

.Container__Item .tp-i_promo-home {
    height: 246px;
    overflow: hidden;
}

.content_wrapper > .Container__Item:nth-of-type(8) > .row:before, .big_wins .header {
    content: 'PROMOTIONS';
    height: 61px;
    padding: 10px 10px 10px 60px;
    display: flex;
    align-items: center;
    color: var(--brand-color);
    font-size: 24px;
}

.content_wrapper .slick-prev, .content_wrapper .slick-next,
.swiper-button-prev, .swiper-button-next {
    width: 20px;
    height: calc(100% - 59px);
    margin-top: 31px;
    background: var(--even-color) url('../img/design/icons/arrow-next.png') center center no-repeat;
    position: absolute;
    right: 0;
    z-index: 1;
    opacity: 0.75;
}

.content_wrapper .slick-prev, .swiper-button-prev {
    background: var(--even-color) url('../img/design/icons/arrow-prev.png') center center no-repeat;
    left: 0;
}

    .content_wrapper .slick-prev:before, .content_wrapper .slick-next:before {
        content: "";
    }

.load-more-container {
    width: 100%;
}

.btn.btn-load-more {
    background: var(--selected-color);
}

.fav-game i:before {
    font-size: 24px;
    color: var(--brand-color);
}

.no-games-found {
    grid-column-start: 1;
    grid-column-end: 10;
    color: var(--text-color2);
    position: relative;
}

    .no-games-found::after {
        content: '';
        display: block;
        width: 100px;
        height: 100px;
        position: absolute;
        top: 210px;
        background: url(..//img/design/icons/no-games.svg);
        background-size: contain;
        left: calc(50% - 50px);
        filter: brightness(0) invert(.5);
    }

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled::before {
    content: 'No games found';
    color: var(--text-color3);
    letter-spacing: 1px;
    font-size: 12px;
}

/* ----------------------------------------------------------------------- loginPopup/ forgotPassPopup ---------------------------------------------------------------------*/

#loginPopup .modal-dialog, #forgotPasswordPopup .modal-dialog, #changePasswordPopup .modal-dialog, #verifyPartial {
    width: 350px;
    margin: 32vh auto 0;
}

#changepassform #NewPassword ~ .field-validation-valid, #changepassform #NewPassword ~ .field-validation-error {
    margin-bottom: 15px;
}

.modal-header {
    display: flex;
    background-color: var(--background-color3);
    color: var(--white-color);
    text-align: center;
}

.modal-title-text, #profilePopup .profile-main-nav {
    width: 100%;
}

.mobile #profilePopup .profile-main-nav {
    display: none;
}

#loginPopup .modal-dialog .modal-content,
 #forgotPasswordPopup .modal-dialog .modal-content, #registrationPopup .modal-content,
#changePasswordPopup .modal-content, #__depositPopup .modal-content {
    border-radius: 3px;
    overflow: hidden;
    background-color: var(--background-color6);
    border: 0;
}

body.mobile #changepassform .row .col-md-12 {
    text-align: right;
}

.form-control {
    background-color: var(--background-color7);
}

    .form-control:focus, #searchPopup .game-category-selector-container .ss-main .ss-multi-selected.ss-open-below {
        border-color: var(--background-color6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px var(--background-color6);
    }

    .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
        background-color: var(--text-color2);
    }

    .form-control#Email, .form-control#Mobile, .form-control#PassportNumber {
        padding-right: 25px;
    }

.select2-container--default .select2-selection--single .select2-selection__clear, .logo-img {
    display: none;
}

.has-feedback label ~ .form-control-feedback {
    right: 14px;
}

.modal-header .close {
    margin-left: auto;
    color: var(--brand-color);
    opacity: 1;
    text-shadow: 0 1px 0 var(--brand-color);
}

.captcha-image {
    height: 34px;
}

.captcha-refresh {
    font-size: 22px;
    cursor: pointer;
}

    .captcha-refresh:hover, .captcha-refresh:focus {
        text-shadow: 0 0 2px var(--btn-color2-hover);
        color: var(--btn-color2);
    }

#loginPopup .row .forgot-password-url, #loginPopup .row .btn-sign-up {
    margin-bottom: 8px;
    color: var(--black-color);
}

/* ------------------------------- Partition ---------------------------------- */

.month-dropdown .unsettledButton .unsettled-item {
    pointer-events: none;
}

.month-dropdown {
    position: absolute;
    max-width: 230px;
    top: 40px;
    max-height: 350px;
    height: 100vh;
    width: 100vh;
    margin: 0;
    left: 14px;
    right: 100%;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
    z-index: 3001;
}

    .month-dropdown .month-item,
    .month-dropdown .unsettledButton .unsettled-item {
        display: flex;
        font-size: 13px;
        background-color: #f5f5f5;
        border: 1px solid #f5f5f5;
        border-radius: 4px;
        color: #2c4c40;
        padding: 3px 12px;
        margin-bottom: 8px;
        cursor: pointer;
        list-style: none;
        align-items: center;
        transition: all .3s;
    }

        .month-dropdown .month-item.active,
        .month-dropdown .month-item:hover,
        .month-dropdown .unsettledButton .unsettled-item.active,
        .month-dropdown .unsettledButton .unsettled-item:hover {
            background-color: var(--green-color2);
            border: 1px solid var(--green-color2);
            color: #000000;
        }

    .month-dropdown .month-dropdown-footer {
        position: sticky;
        height: 40px;
        width: 100%;
        gap: 10px;
    }

    .month-dropdown .month-dropdown-list {
        max-height: 300px;
        overflow-x: hidden;
        max-width: none;
        overflow-y: scroll;
        width: 100%;
        position: relative;
        color: inherit;
        margin-top: 1px;
        background-clip: padding-box;
    }

.btn.btn-success.apply-months,
.btn.btn-warning.clear-months {
    padding: 5px 15px !important;
    line-height: 15px;
    margin-top: 1px;
}

 .form-control.unsettled_Button {
    white-space: nowrap;
    padding: 8px 36px !important;
    color: var(--color-blue-text) !important;
    border-radius: 8px !important;
    border: 1px solid transparent !important;
    background-image: var(--gradient-color-2) !important;
    background-color: var(--green-color2)!important;
    text-transform: uppercase;
    position: relative;
}


.form-control.unsettled_Button::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid white; 
}

.col-xs-4.checkwagers {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    border-radius: 10px;
}

.col-xs-4.checkwagers .form-group {
    margin: 0;
    width: fit-content;
}

#profilePopup .col-xs-3, #profilePopup .responsible-gambling .switch {
    width: 140px;
    height: 28px;
    padding: 0;
}

#profilePopup .modal-dialog.modal--balance-history .modal-sub-body .col-xs-3 {
    width: 25%;
    height: auto;
    padding-right: 15px;
}

#profilePopup .modal-dialog.modal--balance-history .modal-sub-body .unsettledRow.col-xs-4 {
    width: 33.33333333%;
}

.checkbox-wrapper-34 {
    margin-top: 40% !important;
}

.checkbox-wrapper-34 .tgl,
#profilePopup .checkwagers .form-group>label:not(.unsettledRow>label)  {
    display: none;
}

.checkbox-wrapper-34 .tgl,
.checkbox-wrapper-34 .tgl:after,
.checkbox-wrapper-34 .tgl:before,
.checkbox-wrapper-34 .tgl *,
.checkbox-wrapper-34 .tgl *:after,
.checkbox-wrapper-34 .tgl *:before,
.checkbox-wrapper-34 .tgl + .tgl-btn {
    box-sizing: border-box;
}

.checkbox-wrapper-34 .tgl::selection,
.checkbox-wrapper-34 .tgl:after::selection,
.checkbox-wrapper-34 .tgl:before::selection,
.checkbox-wrapper-34 .tgl *::selection,
.checkbox-wrapper-34 .tgl *:after::selection,
.checkbox-wrapper-34 .tgl *:before::selection,
.checkbox-wrapper-34 .tgl + .tgl-btn::selection {
    background: none;
}

.checkbox-wrapper-34 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 65px;
    height: 20px;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin-top: 5px;
}

.checkbox-wrapper-34 .tgl + .tgl-btn:after,
.checkbox-wrapper-34 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 26%;
    height: 100%;
}

.checkbox-wrapper-34 .tgl + .tgl-btn:after {
    left: 0;
}

.checkbox-wrapper-34 .tgl + .tgl-btn:before {
    display: inline;
    position: absolute;
    top: 3px;
}

.checkbox-wrapper-34 .tgl:checked + .tgl-btn:after {
    left: 73.5%;
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn {
    background: #E1E5EB;
    border-radius: 20rem;
    padding: 2px;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:after {
    border-radius: 2em;
    background: #fff;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:before {
    content: "Excluded";
    left: 20px;
    font-size: 10px;
    color: #848ea1;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:active {
    box-shadow: inset 0 0 0 30px rgba(0, 0, 0, 0.1);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:active:after {
    padding-right: 0.4em;
}

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn {
    background: var(--green-color2) !important;
}

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn:active {
    box-shadow: inset 0 0 0 30px rgba(0, 0, 0, 0.1);
}     

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn:active:after {
    margin-left: -0.4em;
}

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn:before {
    content: "Included";
    left:  6px;
    color: #2a2a2a;
    font-size: 10px;
}
 .unsettledRow.disabled {
    opacity: 0.5;
    pointer-events: none; 
}

#profilePopup .modal-history .modal-content .modal-sub-body .row > form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 15px;
}

#profilePopup .modal-history .modal-content .modal-sub-body .row > form .transaction_seeDetails_btn {
    flex-basis: 100%;
}

#profilePopup .modal-history .modal-content .modal-sub-body .row > form > div:not(.transaction_seeDetails_btn) {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    padding: 10px;
    border-radius: 10px;
    flex: 1;
}

#profilePopup .modal-history .transaction_seeDetails_btn .form-group {
    margin: 15px 0 auto;
    display: flex;
    justify-content: end;
    width: 100%;
}

#profilePopup .modal-history .transaction_seeDetails_btn { 
    margin-left: auto;
}

#profilePopup .modal-history .transaction_seeDetails_btn button {
    height: fit-content;
}

#profilePopup .modal-history .modal-content .modal-sub-body .row {
    margin-bottom: 50px !important;
}

/* -------------------------------  Registration Popup Css  ----------------------------- */
#registration-popup #register-container [class^="regsecion_"]:has(.checkbox),
#registration-popup #register-container .on-page-2 .regsecion_3,
#registration-popup #register-container .on-page-1 .regsecion_3:has(#province-form.hidden) {
    display: block !important;
}

#registration-popup #registration-form .regsecion_1:not(:has(.checkbox)),
#registration-popup #registration-form .regsecion_3,
#registration-popup #register-container .on-page-1 .regsecion_5,
#registration-popup #registration-form .regsecion_2,
#registration-popup #registration-form .regsecion_6,
.regsecion_2:has(#province-form:not(.hidden)) {
    display: flex !important;
    gap: 15px;
}

#registration-popup #registration-form .form-group:not(.checkbox,:has(.hidden ), #province-form ){
    margin-bottom: 10px !important;
}

#registration-popup #registration-form .form-group:has(.hidden),
#registration-popup #registration-form .form-group#province-form{
    margin-bottom: 0 !important;
}

#registration-popup #registration-form .form-group {
    position: relative;
    width: 100%;
}

#registration-popup #registration-form .form-control,
#registration-popup #registration-form .select2-container--default .select2-selection--single,
#registration-popup #registration-form .select2-container--default .select2-selection--single .select2-selection__rendered,
#registration-popup #registration-form  .select2-container--default .select2-selection--single .select2-selection__arrow{
    display: flex;
    align-items: center;
}

#registration-popup #registration-form [id$="-error"] {
    display: block;
    padding: 5px 0;
}

#registration-popup #registration-form label {
    margin-left: 0;
}

#registration-popup .button-container:has(.registration-block) {
    display: flex;
    height: 40px;
    width: 100%;
    flex-direction: row;
    margin-bottom: 15px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

#registration-popup .button-container:has(.registration-block):before,
 #registration-popup .button-container:has(.registration-block):after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 200, .18), transparent);
    opacity: .9;
    border-radius: 2px;
    min-width: 30px;
}

#registration-popup .modal-header .logo-img,
#afterregistration-popup .modal-header .logo-img,
#registration-popup:has(.bonus-body) .logo-img {
    display: none;
}

#registration-popup .button-container .registration-block.active:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--selected-color-hover);
}

#registration-popup .button-container .registration-block {
    color: #f6f6f6;
    position: relative;
}

    #registration-popup .button-container .registration-block.active button,
    #registration-popup .button-container .registration-block:hover button{
        color: var(--selected-color-hover);
    }

    #registration-popup .button-container .registration-block button {
        background: transparent;
        border: unset;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        position: relative;
        display: flex;
        width: 100%;
        height: 100%;
        cursor: pointer;
        transition: color .2s ease-out;
        justify-content: flex-start;
        color: var(--selected-color-hover);
    }

#registration-popup #socialnetwork-form > .row > .col-xs-12.text-right:has(.js-back-button) {
    flex-direction: column;
}

    #registration-popup #socialnetwork-form > .row > .col-xs-12.text-right:has(.js-back-button) .col-md-6.mt20 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0;
    }

#registration-popup #registration-form:has(.form-group):not(:has(#hidden-for-social)) {
    max-height: 500px;
    min-height: 500px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 5px;
}

#registration-popup #socialnetwork-form .col-xs-12.text-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

#registration-popup #socialnetwork-form .col-xs-12.text-right:has(> button){
    justify-content: space-between;
}

#socialnetwork-form .btn-success.active {
    width: auto;
}

#registration-popup #register-bonuses {
    background-color: var(--background-color7) !important;
    animation: showBonuses .2s ease-in;
    display: flex;
    flex-direction: column;
    max-height: 754px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    z-index: 1;
    border-radius: 0 32px 32px 0;
    margin: 24px 0;
    padding: 35px 25px;
}

#register-bonuses .registration-sub-nav li {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
}

select[id$="_day"],
select[id$="_month"],
select[id$="_year"] {
    height: 42px;
    margin: 0 2px;
    padding: 0 10px 0 6px;
    border-radius: 12px;
    background-color: var(--background-color-10);
    border: 1px solid transparent;
    color: var(--grey-color) !important;
    flex: 1;
    outline: none;
    cursor: pointer;
}

.credentials {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .credentials .credential-item {
        width: 48%;
    }

.login-credential-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.copy-password {
    position: absolute;
    cursor: pointer;
    font-size: 18px;
    color: #1a426b;
    top: 50%;
    left: 85%;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .action-buttons button {
        width: 48%;
    }

#after-registration-popup #register-container-header {
    height: 60px;
}

#after-registration-popup #afterregistration-popup .modal-body {
    padding: 20px;
}

#after-registration-popup #afterregistration-popup .modal-body .email-block {
    display: flex;
    margin-bottom: 20px;
    gap: 2%;
}

#after-registration-popup #afterregistration-popup .modal-body .email-block  #email-input{
    min-width: auto;
    max-width: auto;
}

#registration-popup #register-bonuses .bonus-body {
    font-family: Arial, sans-serif;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bonus-body-inner__content-head .bonus-body-inner__content-title {
    font-size: 15px;
}

.bonus-body-row-information {
    display: block;
    position: sticky;
    top: 0;
    text-align: justify;
    text-transform: capitalize;
    border-bottom: 1px solid var(--green-color2);
    border-radius: 20px 20px 0 0;
    z-index: 5;
    transition: all .2s ease-out;
    font-size: 12px;
    line-height: 24px;
    font-weight: 700;
    color: var(--green-color2);
    margin-right: 5px;
    padding: 10px 0;
    margin-bottom: 15px;
}

.bonus-body-list-item {
    background-color: var(--bonuses-background-color);
    border-radius: 12px;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 16px;
    border: 2px solid transparent;
    gap: 5px;
}

.bonus-body-list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.bonus-body-list-item-header-details__title {
    font-size: 18px;
    font-weight: bold;
    color: var(--green-color2);
}

.bonus-body-list-item-header-img-wrapper__img {
    max-width: 65px;
    min-width: 65px;
    border-radius: 50%;
}

.bonus-body-list-item-inner-properties {
    display: flex;
    justify-content: space-between;
}

.bonus-body-list-item-inner-properties__item {
    margin: 10px 0;
}

.bonus-body-list-item-inner-properties__item-value,
.bonus-body-list-item-inner-properties__item-value-amount {
    font-size: 13px;
    line-height: 24px;
    font-weight: 700;
    color: var(--green-color2);
}

.bonus-body-list-item-inner-buttons {
    display: flex;
    gap: 10px;
}

.bonus-body-list-item-inner-buttons-info {
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background: var(--green-color2);
    color: #fff;
    border-radius: 8px;
    border-color: transparent;
    transition: all .2s ease-out;
}

    .bonus-body-list-item-inner-buttons-info:hover,
    .bonus-body-list-item-inner-buttons-back:hover  {
        background: #d8d8d8;
        color: var(--green-color2);
    }

.bonus-body-list-item-inner-buttons-apply {
    width: 100%;
}

.bonus-body-inner__content .bonus-body-list-item-inner-buttons-apply {
    margin: 10px 0;
}

#register-bonuses .registration-sub-nav {
    margin: 16px 0;
    display: flex;
    gap: 10px;
    margin-right: 2px;
}

.bonus-body-inner__tabs {
    white-space: nowrap;
    gap: 5px;
    position: relative;
    top: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid var(--green-color2);
    transition: border-radius .2s ease-out;
}

.bonus-body-list-item-inner-buttons-back {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: unset;
    background: var(--green-color2);
    color: #fff;
    border-radius: 8px;
    margin-right: 20px;
    cursor: pointer;
    transition: all .3s ease;
}

.bonus-body-inner__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 700;
    color: #318a147a;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    margin-right: 16px;
    height: 100%;
    cursor: pointer;
    transition: color .3s ease;
    white-space: nowrap;
    margin-bottom: 10px;
}

.bonus-body-inner__tab.active:before {
    /* content: ""; */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green-color2);
}

.bonus-body-inner__tab.active, .bonus-body-inner__tab:hover {
    color: var(--green-color2);
}

#registration-popup #register-bonuses .bonus-body .bonus-body-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: scroll;
}

#registration-popup #register-bonuses .bonus-body:has(.registration-sub-nav) .bonus-body-list {
    max-height: 380px;
}

    #registration-popup #register-bonuses .bonus-body .bonus-body-list::-webkit-scrollbar {
        width: 2px;
        height: 2px;
    }

.bonus-body-inner__tabs_nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
}

.bonus-body-inner__content {
    padding: 20px 0;
    color: #fff;
}

.bonus-body-inner__content-head {
    display: flex;
    margin: 0 0 20px;
}

.bonus-body-inner__content-img {
    width: 92px;
    height: 92px;
    margin-right: 24px;
    flex-shrink: 0;
    object-fit: cover;
}

.bonus-body-inner__content-inner {
    margin: auto 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 900;
    color: var(--green-color2);
}

.bonus-body-inner__content-properties {
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 5px;
}

.bonus-body-inner__content-properties-row {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.bonus-body-inner__content-properties-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--green-color2);
}

.bonus-body-inner__content-properties-col {
    width: 100%;
}

    .bonus-body-inner__content-properties-col:nth-child(2) {
        text-align: right;
        color: #000;
    }

    .bonus-body-inner__content-properties-col:first-child {
        color: var(--green-color2);
    }

.bonus-body-inner__content-properties-row:has(.bonus-body-row-bold) {
    display: block;
}

    .bonus-body-inner__content-properties-row:has(.bonus-body-row-bold) .bonus-body-inner__content-properties-col {
        text-align: left;
    }

#register-container {
    background-color: var(--background-color6) !important;
    animation: showPanel .2s ease-in;
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
    max-height: 802px;
    max-width: 500px;
    width: 100%;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.registration .form-group .row:has(select[name="month"]) {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

#registrationPopup .modal-dialog .modal-body .register-container {
    height: 100%;
    flex-direction: row-reverse;
    display: flex;
    position: relative;
    width: 100%;
}

#registrationPopup .modal-dialog .modal-content {
    border-radius: 12px;
    width: 100%;
    background-color: transparent;
    height: 100%;
    padding: 0;
    box-shadow: unset;
    border: unset;
}

#registration-popup #register-container-header .modal-title-text,
#after-registration-popup #afterregistration-popup .modal-title-text {
    display: block;
    border: unset;
    text-align: center;
    padding: 0 25px;
    font-size: 20px;
    font-weight: 900;
    color: var(--brand-color);
}

#registrationPopup #register-container-header {
    width: 500px;
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
}

#register-bonuses .registration-sub-nav li {
    margin: 3px;
    flex: 5;
    padding: 10px 20px;
    border: 1px solid var(--green-color2);
    color: var(--green-color2);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: background .3s ease;
}

    #register-bonuses .registration-sub-nav li.active,
    #register-bonuses .registration-sub-nav li:hover {
        color: #fff !important;
        border-color: var(--green-color2) !important;
        background: var(--green-color2) !important;
    }

#registrationPopup #registration-popup .modal-content button.close,
#after-registration-popup #afterregistration-popup .modal-content button.close {
    border-radius: 50%;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 90px;
    font-size: 36px;
    width: 40px;
    z-index: 2;
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: color, background-color .6s ease-out;
}

#registrationPopup .modal-dialog .modal-content .modal-body {
    padding: 0;
}

#after-registration-popup #afterregistration-popup .modal-content button.close {
    right: 10px;
    top: 5px;
}

    #registrationPopup #registration-popup .modal-content button.close:hover,
    #after-registration-popup #afterregistration-popup .modal-content button.close:hover {
        box-shadow: 0 4px 7px 0 rgba(0,0,0,.15);
    }

#registrationPopup #registration-popup .modal-content button.close span,
#after-registration-popup #afterregistration-popup .modal-content button.close span {
    width: 20px;
    height: 30px;
    background: transparent !important;
}

.bonus-body-inner__content .games-box {
    overflow-x: scroll;
    width: 100%;
    overflow-y: hidden;
    margin: 20px 0;
}

body:not(.mobile) .bonus-body-inner__content .games-box .freespin-games,
body:not(.mobile) .bonus-body-inner__content .games-box .table--scrollable__tr {
    width: 100vh;
}

body:not(.mobile) .bonus-body-inner__content:not(#register-bonuses .bonus-body-inner__content) .games-box .product-name {
    max-width: 50px;
}

#registration-form .col-md-6.mt20 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

#registration-form .captcha-loader img {
    width: 140px;
}

#registration-form .col-xs-4.captcha-loader {
    border-radius: 9px;
    width: 170px;
}

#registration-form .col-xs-2.btn--reload--captcha {
    top: 13%;
    left: 29.5%;
}

#registration-form .col-xs-6.wrapper_input--captcha {
    width: calc(100% - 185px);
    padding: 0 15px;
}

#registration-form .col-md-6.mt20 button {
    width: 100%;
}

.divider {
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    box-sizing:border-box;
    justify-content:center;
    padding: 18px 0;
}

.divider-line{
    flex:1 1 auto;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(200,255,200,.18), transparent);
    opacity:.9;
    border-radius:2px;
    min-width: 30px;
}

.divider-text{
    display:inline-block;
    padding:6px 16px;
    border-radius:20px;
    color: #b08b2e;
    font-weight:600;
    font-size:13px;
    letter-spacing:0.06em;
    border: 1px solid #015536 ;
    box-shadow: 0 2px 8px rgba(47,200,120, .04) inset;
    text-transform: lowercase;
}

.divider.fancy .divider-line{
    height:2px;
    background: linear-gradient(90deg, rgba(47,200,120,0) 0%, #015536 30%, #015536  70%, rgba(47,200,120,0) 100%);
    box-shadow: 0 0 10px rgba(47,200,120,0.07);
}

#register-bonuses .games-box {
    color: #fff;
}

#register-bonuses .bonus-body-fixed-header,
#register-bonuses .fixed-freespin-header
.mobile .bonus-body-fixed-header,
.mobile .fixed-transaction-block-head,
.mobile .bonus-col-title-wrapper.fixed-bonus-header,
.mobile .fixed-freespin-header {
    display: none;
}

#register-bonuses .bonus-body-row-title {
    position: relative;
    border: 1px solid var(--green-color2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    margin-right: 5px;
    height: auto;
}

#register-bonuses [class*=player-bonus-type] .bonus-body-row-title .bonus-body-row-header,
#register-bonuses [class*=player-bonus-type] .bonus-body-row-title .bonus-body-row-main {
    width: 100%;
    display: flex;
    align-items: start;
    row-gap: 5px;
    padding: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    flex-direction: column;
    border: unset;
    margin: 0;
}

    #register-bonuses [class*=player-bonus-type] .bonus-body-row-title .bonus-body-row-main .bonus-checkbox-wrapper {
        text-align: right !important;
        width: 100%;
    }

.mobile .freespin-games,
#register-bonuses .freespin-games {
    position: relative;
    border-radius: 3px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    border-top: 2px solid var(--green-color2);
    border-bottom: 2px solid var(--green-color2);
}

    .mobile .freespin-games .table--scrollable__tr,
    #register-bonuses .freespin-games .table--scrollable__tr {
        position: relative;
        display: flex;
        width: 100%;
        min-width: unset !important;
        background-color: transparent;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 !important;
    }

        .mobile .freespin-games .table--scrollable__tr .no-wrap.table--scrollable__th.games-info-titles,
        #register-bonuses .freespin-games .table--scrollable__tr .no-wrap.table--scrollable__th.games-info-titles {
            color: #fff;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            background-color: var(--green-color2);
        }

        #register-bonuses .freespin-games .table--scrollable__tr > *:not(.games-info-titles) > div {
            color: #000;
        }

    .mobile .freespin-games > .freespin-games-main:not(.freespin-game),
    #register-bonuses .freespin-games > .freespin-games-main:not(.freespin-game) {
        position: relative;
        display: flex !important;
        width: 100%;
        min-width: auto !important;
        background-color: transparent;
        align-items: flex-start;
        flex: unset;
        margin: 0 !important;
        justify-content: space-between;
        font-size: 12px;
        color: var(--green-color2);
    }

#register-bonuses .games-box .freespin-gamescontainer {
    min-width: auto !important;
}

#register-bonuses .modal-sub-body {
    overflow-x: hidden !important;
}

.mobile .freespin-games .no-wrap.table--scrollable__th,
#register-bonuses .freespin-games .no-wrap.table--scrollable__th {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mobile .freespin-games > .freespin-games-main:not(.freespin-game) .Item,
#register-bonuses .freespin-games > .freespin-games-main:not(.freespin-game) .Item {
    justify-content: space-between;
    min-height: unset !important;
    display: flex;
    align-items: center;
}

.freespin-game, .no-wrap.table--scrollable__th.games-info-titles {
    flex: 2;
}

.freespin-game .Item .product-name, .player-bonus-type-1 .games-info-titles .name, .games-info-titles .table--scrollable__th.name {
    max-width: 100px;
    min-width: 50px;
    text-align: left;
}

.freespin-game .Item .product-vendore-img, .games-info-titles .brand {
    min-width: 40px;
    max-width: 40px;
}

.mobile [class*='player-bonus-type'] .bonus-body-row-title div,
#register-bonuses [class*='player-bonus-type'] .bonus-body-row-title div {
    text-align: left !important
}

.mobile .bonus-body-inner__content .games-box,
#register-bonuses .bonus-body-inner__content .games-box {
    overflow-x: hidden;
    max-width: 100%;
    margin: 15px 0;
}

#register-bonuses .freespin-games .table--scrollable__tr > *:not(.games-info-titles) {
    padding: 10px;
    color: var(--green-color2);
}

#register-bonuses .games-info-titles .game,
#register-bonuses .freespin-games .Item img:not(.product-vendore-img) {
    max-width: 60px;
    min-width: 60px;
}

#registration-popup #registration-form i.eye-icon {
    top: 25%;
}

#after-registration-popup #register-container-header {
    padding: 0;
}

#socialnetwork-form {
    margin-top: 15px;
}

.social-network {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
}

    .social-network a,
    .social-network button {
        flex-shrink: 0;
        height: 36px;
        width: 36px;
        align-items: center;
        background: #166246d6;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        transition: all .3s;
        border: unset;
    }

#socialnetwork-form button img {
    width: 20px;
    height: 20px;
}

.social-network a:hover,
.social-network button:hover {
    background: #166246;
    opacity: 1 !important;
}

#registration-popup #register-bonuses:not(:has(.bonus-body)) {
    display: none;
}

#registration-popup .modal-body:not(:has(.bonus-body)) {
    flex-direction: column;
    background-color: #d8d8d8 !important;
    max-width: 500px;
    width: 100%;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top-right-radius: unset;
    border-top-left-radius: unset;
    max-height: 700px;
    min-height: 700px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0;
    gap: 0;
}

#registration-popup .modal-content:not(:has(.bonus-body)) {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

    #registration-popup .modal-content:not(:has(.bonus-body)) #register-container-header {
        height: 50px;
    }

#registrationPopup:not(#after-registration-popup) #registration-popup .modal-content:not(:has(.bonus-body)) #register-container-header button.close {
    background-color: transparent !important;
    top: 10px;
}

#registration-popup .modal-body:not(:has(.bonus-body)) #register-container {
    width: 100%;
    max-width: 500px;
    border-radius: 0;
    min-height: unset;
    max-height: unset;
    margin: 0;
    padding: 25px;
    overflow: visible;
    background: transparent;
}

    #registration-popup .modal-body:not(:has(.bonus-body)) #register-container #registration-form {
        max-height: unset;
        min-height: unset;
        overflow: hidden;
    }

#city_form {
    position: relative;
}

.col-xs-7.text-left.forgot-password {
    margin: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-options-container .form-group {
    margin-bottom: 10px
}

.logon-to-registration {
    width: 100%;
    margin-top: 15px
}

.logon-to-registration .logon-to-registration_text {
    color: #000;
    font-weight: 500
}

.logon-to-registration .logon-to-registration_button {
    font-weight: 700;
    color: #015536
}

.logon-to-registration .btn-sign-up {
    line-height: 18px;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px
}

.row.registration-to-logon-row {
    align-items: center;
    background: var(--background-color6) !important;
    display: flex;
    flex-direction: row;
    height: 60px;
    justify-content: center;
    padding: 15px 0;
    position: relative;
    z-index: 1;
    margin: 0;
    width: 500px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border-top-right-radius: unset;
    border-top-left-radius: unset;
}

    .row.registration-to-logon-row .registration-to-logon {
        line-height: 18px;
        text-align: center;
        white-space: nowrap;
        font-size: 12px;
        font-weight: 400;
        color: #015536 ;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .row.registration-to-logon-row .registration-to-logon_text {
        font-weight: 700;
    }

    .row.registration-to-logon-row .registration-to-logon_button {
        font-weight: 900;
    }

.Information-block {
    padding: 15px 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.fade .modal-dialog {
    transform: none;
}

#registrationPopup .modal-dialog {
    display: block;
    width: auto;
    max-width: 900px;
    margin: 60px auto;
    transition: width 200ms;
}

.modal-body label {
    color: var(--text-color-3);
    margin-left: 2px;
    cursor: auto;
}

.select2-container {
    width: 100% !important;
}

.form-control, .select2-container--default .select2-selection--single, .form-control#dateOfBirth,
.modal-sub-body.identifications .input_name, .game-category-selector-container .ss-main .ss-multi-selected,
.form-group .ss-main .ss-single-selected {
    height: 36px;
    background-color: var(--text-color);
    border: 1px solid var(--text-color2);
}

#profilePopup .js-see-details, #profilePopup .aligned-action-btn, #sendEmailCode, #sendMobileCode {
    padding: 8px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    line-height: 36px;
}

.codeMobilePassportSection, body.mobile .row.section--captcha {
    display: flex;
    margin-bottom: 15px;
}

    .codeMobilePassportSection div:nth-child(1), body.mobile .row.section--captcha .captcha-loader {
        flex: .5;
    }

        .codeMobilePassportSection div:nth-child(1) .form-control, .wrapper--country .form-control, .province .form-control {
            cursor: pointer;
        }

    .codeMobilePassportSection > div:nth-child(2), body.mobile .row.section--captcha .wrapper_input--captcha {
        flex: 1;
        padding-right: 15px !important;
        padding-left: 55px !important;
    }

body:not(.mobile) .col-xs-6.wrapper_input--captcha, #forgotpassform .col-sm-6 {
    width: 66.5%;
    float: right;
}

.captcha-loader ~ .col-xs-6, .col-sm-4 ~ .col-sm-6 {
    padding-left: 50px;
}

.registration .form-group .row, #forgotpassform .control-label ~ .row {
    position: relative;
}

.btn--reload--captcha, #forgotpassform .row .col-sm-2 {
    width: auto;
    position: absolute;
    left: 31%;
    z-index: 1;
}

#forgotpassform .row .col-sm-4 {
    width: 33.33333333%;
    float: left;
}

.btn--reload--captcha:active i {
    color: var(--border-color2);
}

.registration.page-2 label[for^=DateOfBirth] ~ .row {
    display: flex;
    padding-right: 15px;
    padding-left: 15px;
}

.registration.page-2 #Day, .registration.page-2 #Month, .registration.page-2 #Year {
    height: 36px;
    margin: 0 2px;
    padding: 0 4px 0 6px;
    border-radius: 3px;
    background-color: var(--background-color7);
    border: 1px solid transparent;
    flex: 1;
    outline: none;
    cursor: pointer;
}

.registration.page-2 #Day {
    flex: .7;
}

#registrationPopup .modal-dialog .form-group label.checkboxes input[type="checkbox"],
.communication input[type="checkbox"], .bonus-checkbox-wrapper input[type="checkbox"],
.responsible-gambling [id^='transaction-details'] label:not(.control-label) input[type="checkbox"] {
    display: none;
}

    #registrationPopup .modal-dialog .form-group label.checkboxes .checkbox-body:before,
    .communication input[type="checkbox"] ~ span, .bonus-checkbox-wrapper input[type="checkbox"] ~ label,
    .responsible-gambling [id^='transaction-details'] label:not(.control-label) input[type="checkbox"] ~ span {
        content: "";
        width: 18px;
        height: 18px;
        border: 1px solid #538c36;
        border-radius: 3px;
        position: relative;
        left: 0;
        cursor: pointer;
        margin-bottom: 0;
    }

    #registrationPopup .modal-dialog .form-group label.checkboxes .checkbox:checked + .checkbox-body:before,
    .communication input[type="checkbox"]:checked ~ span, .bonus-checkbox-wrapper input[type="checkbox"]:checked ~ label,
    .responsible-gambling [id^='transaction-details'] label:not(.control-label) input[type="checkbox"] ~ span {
        background-image: url(/content/img/design/icons/check.svg);
        background-repeat: no-repeat;
        background-size: 18px 18px;
        background-position: center center;
    }

.communication .switch {
    display: unset;
    margin-right: 5px;
}

#registrationPopup .control-label.checkboxes {
    margin-bottom: 2px;
}

#registrationPopup .modal-dialog.expanded {
    margin: 180px auto 20px;
    width: 650px;
}

.wrapper--country {
    margin-bottom: 15px;
}

/* -------------------- Login and ForgotPassword Css -------------------------*/
.modal-dialog .modal-content .button_options,
.modal-dialog .modal-content .login-options-container .buttons {
    position: relative;
    display: flex;
    width: 100%;
    transition-timing-function: ease-out;
    transition-property: transform;
    background: #eaeaeab3;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 0 2px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
    will-change: transform;
    border-radius: 22px;
    gap: 4px;
    margin-bottom: 10px;
}

    .modal-dialog .modal-content .button_options .forgotpass-option,
    .modal-dialog .modal-content .login-options-container .login-option {
        position: relative;
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background: transparent;
        border: unset;
        width: 100%;
        height: 40px;
        font-size: 12px;
        font-weight: 700;
        color: #015536 !important;
        line-height: 16px;
        text-transform: uppercase;
        letter-spacing: .4px;
        padding: 0 16px;
    }

        .modal-dialog .modal-content .button_options .forgotpass-option:hover,
        .modal-dialog .modal-content .login-options-container .login-option:hover {
            background: #ffffffa6;
            border-radius: 20px;
        }

        .modal-dialog .modal-content .button_options .forgotpass-option.active,
        .modal-dialog .modal-content .login-options-container .login-option.active {
            background: #ffffff;
            border-radius: 20px;
        }

/*---------------Switch to History Popup Css--------------*/
#profilePopup .modal-content .modal-sub-body:has(.switch-history) {
    display: grid;
    width: 100%;
    height: auto !important;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

#profilePopup .modal-content .modal-sub-body .switch-history {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

    #profilePopup .modal-content .modal-sub-body .switch-history .text-switch-history {
        color: #000;
        margin: 10px auto;
    }
/* -------------------------------------- Security Password ----------------------------------------*/

.modal-sub-body.securitypassword .form-footer .col-md-7 .btn {
    width: auto;
    margin: 0 0 0 auto;
}

.modal-sub-body.securitypassword .row {
    margin: 0;
}

.modal-sub-body.securitypassword .form-footer .col-md-7 .btn {
    width: auto;
    margin: 0 0 0 auto;
}

.modal-sub-body.securitypassword .row {
    margin: 0;
}

.modal-sub-body.securitypassword .modal-body {
    display: flex;
    gap: 20px;
    justify-content: space-between
}

    .modal-sub-body.securitypassword .modal-body > form {
        flex: 1;
        max-width: calc(100%/3);
        margin-top: 50px;
        border-radius: 9px;
    }

        .modal-sub-body.securitypassword .modal-body > form#twofactor {
            max-width: 300px
        }

.modal-sub-body.securitypassword .modal-title-text {
    padding: 0
}

.modal-sub-body.securitypassword #changepassform {
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.04), 0 0 2px rgba(0, 0, 0, 0.06), 0 4px 8px rgb(0 0 0 / 48%);
}

.modal-sub-body.securitypassword form {
    position: relative;
}

.modal-sub-body.securitypassword .form-header {
    position: absolute;
    top: -54px;
    left: 0;
    font-size: 16px;
    border-bottom: 2px solid #538c36;
}

.modal-sub-body.securitypassword .modal-footer,
.modal-sub-body.securitypassword .modal-footer .col-md-7,
.modal-sub-body.securitypassword .modal-footer .col-xs-6,
.modal-sub-body.securitypassword .form-footer .col-xs-6,
.modal-sub-body.securitypassword .form-footer,
.modal-sub-body.securitypassword .form-footer .col-md-7 {
    padding: 0 !important
}

    .modal-sub-body.securitypassword .modal-footer .col-xs-6,
    .modal-sub-body.securitypassword .modal-footer .col-md-7,
    .modal-sub-body.securitypassword .form-footer .col-xs-6,
    .modal-sub-body.securitypassword .form-footer .col-md-7 {
        width: 100%
    }

    .modal-sub-body.securitypassword .modal-footer .col-md-7,
    .modal-sub-body.securitypassword .form-footer .col-md-7 {
        margin: 0;
    }

        .modal-sub-body.securitypassword .form-footer .col-md-7 .form-group {
            text-align: left
        }

    .modal-sub-body.securitypassword .modal-footer .btn {
        width: 100%
    }

.modal-sub-body.securitypassword #deleteaccount .btn {
    background-image: unset !important;
    border-color: unset;
    color: var(--white-color) !important;
}

.modal-sub-body.securitypassword #deleteaccount .control-label {
    display: none
}

#profilePopup .securitypassword .form-control {
    padding: 17px 13px;
}

.modal-sub-body.securitypassword #deleteaccount .form-group.mt-10 {
    margin-top: 15px;
}

#profilePopup .modal-dialog:not(.modal--payments-history, .responsible-gambling) .profile-sub-nav li:nth-child(3) {
    position: unset
}

.modal-sub-body.securitypassword .modal-text, .manual-entry-code {
    color: #000;
    font-size: 14px
}

#changepassform #NewPassword ~ .field-validation-valid,
#changepassform #NewPassword ~ .field-validation-error {
    margin-bottom: 15px;
}

.tfa-verification-code-block .input-group, #tfaConfirm > .input-group {
    display: block !important;
}

.manual-entry-code {
    font-size: 14px;
    font-weight: 900;
    padding: 10px;
    width: 100%;
    display: block;
    word-wrap: break-word;
}

.tfa-verification-code-block .input-group .form-control, #tfaConfirm .input-group .form-control {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    width: calc(100% - 40px) !important;
}

.modal-dialog#verifyPartial [class$=-verification-code-block] .btn-success, #tfaConfirm .btn-success {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* -------------------------------------------------------------------------- MY PROFILE ----------------------------------------------------------------------*/

#profilePopup .modal-dialog, #__depositPopup .modal-dialog {
    width: 90vw;
    max-width: 1400px;
}

#profilePopup .modal-content {
    display: flex;
    flex-direction: column;
}

#profilePopup .modal-content, #__depositPopup .modal-dialog, #__depositPopup .modal-content {
    height: 90vh;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--background-color6);
}

#profilePopup .modal-dialog:not(.modal--payments-history) .modal-body {
    height: calc(100% - 50px);
    overflow-y: auto;
}

body:not(.mobile) #profilePopup .modal-content .modal-header, .modal-dialog.search .modal-header,
#__depositPopup .modal-header {
    padding: 0;
    border-bottom: none;
}

    .profile-main-nav, #__depositPopup .modal-header .title {
        display: flex;
        min-height: 48px;
        margin-bottom: 0;
        overflow: auto;
    }

        .profile-main-nav li, #__depositPopup .modal-header .title {
            padding-left: 16px;
            padding-right: 16px;
            line-height: 48px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }

            .profile-main-nav li a {
                color: var(--white-color);
            }

    #profilePopup .profile-main-nav li.active, #__depositPopup .modal-header .title {
        background-color: var(--brand-color);
    }

        #profilePopup .profile-main-nav li.active i {
            background-color: var(--black-color);
        }

#profilePopup .close span, #__depositPopup .close span {
    padding: 15px;
}

#profilePopup .profile-sub-nav, #profilePopup .deposit-sub-nav {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    #profilePopup .profile-sub-nav li, #profilePopup .deposit-sub-nav li {
        margin: 10px;
        color: var(--white-color);
        cursor: pointer;
    }

        #profilePopup .profile-main-nav li.active a,
         #profilePopup .profile-sub-nav li a, #__depositPopup .modal-header .title,
        #profilePopup .deposit-sub-nav li {
            color: var(--black-color);
        }

            #profilePopup .profile-sub-nav li.active a,
            #profilePopup .deposit-sub-nav li.active {
                border-bottom: 2px solid var(--selected-color-hover);
                color: var(--selected-color-hover);
            }

            #profilePopup .profile-sub-nav li:not(.active):hover a,
            #profilePopup .deposit-sub-nav li:not(.active):hover {
                border-bottom: 2px solid var(--border-color5);
                color: var(--border-color5);
            }

#profilePopup .modal-sub-body .emutable-details .emutable-details-inner-block .em {
    color: var(--btn-color2);
    text-transform: uppercase;
}

#profilePopup .modal-sub-body .emutable-details {
    color: var(--black-color);
    padding: 24px 10px 10px 20px;
    font-size: 12px;
}

#sendMobileCode, #sendEmailCode {
    margin-right: 5px;
}

#profileForm .verification > .btn-group {
    width: 100%;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-radius: 4px;
}

#profilePopup .verification-code-email, #profilePopup .verification-code-mobile,
#verifyPartial .verification-code-email, #verifyPartial .verification-code-mobile {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 36px;
}

.profile__msg--error, .profile__msg--success {
    text-align: left;
}

#profilePopup .row-flex {
    display: flex;
    gap: 20px;
}

    #profilePopup .row-flex .col-half {
        flex: 1 2 50%;
        padding: 0;
        min-width: 90px;
    }

.modal-footer {
    margin-top: auto;
}

/* --------------------------------------------------------------------- MY PROFILE Documents -----------------------------------------------------------------*/
.modal-sub-body.identifications {
    height: calc(100% - 54px) !important;
    color: var(--black-color);
}

    .modal-sub-body.identifications > .row, .identifications-settings-wrapper, .identifications-settings-block {
        height: 100%;
    }

    .modal-sub-body.identifications .upload-file {
        display: flex;
        margin: 10px 0 !important;
        gap: 2%;
    }

.identifications .col-xs-3 {
    width: 100% !important;
}

.modal-sub-body.identifications .upload-file .btn {
    width: auto !important;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 16px !important;
    border-radius: 4px !important;
    border: 1px solid var(--grey-color) !important;
    background: var(--white-color) !important;
    color: var(--grey-color) !important;
    margin: 0 !important;
}

.modal-sub-body.identifications .input_name {
    width: 100%;
    padding: 16px;
    outline: none;
    border-radius: 4px;
}

#profilePopup .identifications-settings-wrapper .note {
    padding: 4px;
}

#profilePopup .identifications-settings-wrapper .row.submBtnBlock {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    margin: 0;
}

    #profilePopup .identifications-settings-wrapper .row.submBtnBlock .col-xs-12 {
        text-align: right;
    }

    #profilePopup .identifications-settings-wrapper .row.submBtnBlock .col-xs-12, #profilePopup .identifications-settings-wrapper .row.submBtnBlock .sbm-message {
        flex: 1;
    }

#profilePopup .identifications .col-xs-3 {
    padding: 0;
}

.modal-sub-body.identifications .upload-file section, .modal-sub-body.identifications .upload-file div {
    width: 100%;
}

.modal-sub-body.identifications .upload-file .col-xs-6 {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.identifications-settings-wrapper #formOne .col-xs-6 .row {
    display: flex;
    margin: 0;
}

.identifications-settings-wrapper #Day, .identifications-settings-wrapper #Month, .identifications-settings-wrapper #Year {
    height: 35px;
    flex: 1;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0 4px;
    background-color: var(--text-color);
    border-radius: 4px;
    text-align: center;
}

.identifications-settings-wrapper #Day, #profilePopup .modal--balance-history .table--scrollable__tr > div:nth-child(1),
#profilePopup .modal--balance-history .table--scrollable__tr > div:nth-child(2) {
    flex: .7;
}

.modal-sub-body.identifications .header-block {
    height: calc(100% - 146px);
    padding: 12px 15px;
    margin-top: 15px;
    overflow: auto;
    border: 1px solid var(--text-color-1);
    border-radius: 4px;
}

.modal-sub-body.identifications .document-head-row-title, .modal-sub-body.identifications .document-body-row-title {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
    padding: 5px;
    border-radius: 4px;
}

.modal-sub-body.identifications .document-head-row-title {
    color: var(--btn-color2);
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid var(--btn-color2);
    border-radius: 4px;
}

    .modal-sub-body.identifications .document-head-row-title div, .modal-sub-body.identifications .document-body-row-title div,
    .modal-sub-body.identifications .document-body-row-title button, .modal-sub-body.identifications .document-body-row-title i {
        flex: 1;
        margin: 4px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.modal-sub-body.identifications .document-body-row-title .document-name {
    white-space: nowrap;
    overflow: visible;
    display: flex;
    position: relative;
}

    .modal-sub-body.identifications .document-body-row-title .document-name span:nth-child(1) {
        display: inline-block;
        width: 90%;
        max-width: 240px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.tooltip, .tooltipShow {
    width: auto;
    position: absolute;
    background-color: var(--background-color1);
    opacity: 1;
    color: var(--white-color);
    padding: 5px 8px;
    border-radius: 4px;
    border-bottom-left-radius: 0;
    top: -27px;
    left: 30px;
    font-size: 14px;
    white-space: nowrap;
}

.modal-dialog.history .bonus-current-amount, .mobile [class*='player-bonus-type'] .bonus-current-amount,
.table--scrollable__tbody .table--scrollable__td:has(.wallet-current-amount-full) {
    position: relative;
    overflow: visible !important;
}

    .modal-dialog.history .bonus-current-amount:hover .tooltip, .mobile [class*='player-bonus-type'] .bonus-current-amount:hover .tooltip,
    .table--scrollable__tbody .table--scrollable__td:has(.wallet-current-amount-full):hover .tooltip {
        display: block !important;
    }

    .table--scrollable__tbody .table--scrollable__td:has(.wallet-current-amount-full) .tooltip {
        top: -20px;
        left: 50%;
    }

    .modal-dialog.history .bonus-current-amount .tooltip {
        top: -30px;
        left: 102px;
    }

.modal-sub-body.identifications .document-body-row-title button, .modal-sub-body.identifications .document-body-row-title i,
.modal-sub-body.identifications .document-head-row-title .document-action {
    max-width: 120px;
    justify-content: center;
}

.modal-sub-body.identifications .document-body-row-title button {
    padding: 8px 30px !important;
    text-align: center;
    color: var(--white-color) !important;
}

.modal-sub-body.identifications .document-body-row-title i {
    color: var(--selected-color-hover);
    font-size: 22px;
    justify-content: center;
}

.modal-sub-body.identifications .document-body-row-title .las.la-times {
    color: var(--red-color);
}

.modal-sub-body.identifications .document-body-row-title .las.la-sync-alt {
    color: var(--yellow-color2);
}

.modal-sub-body.identifications .row.profile-messages {
    margin: 0 10px;
}

/* ------------------------------------------------------------------------- Communication --------------------------------------------------------------------*/

#profilePopup .communication-settings-wrapper {
    display: flex;
}

.modal-sub-body.communication .row, .modal-sub-body.communication #notsettings, .modal-sub-body.communication .communication-settings-wrapper {
    height: 100%;
}

.communication-settings-wrapper .communication-types {
    border-right: 2px solid var(--selected-color);
    width: 30%;
}

.communication-types .comm-single-type, .thread-list .single-thread {
    padding: 10px 10px 10px 15px;
    cursor: pointer;
    transition: background-color .2s;
}

    .communication-types .comm-single-type.active {
        background-color: var(--selected-color);
        color: var(--black-color);
    }

.communication-settings-wrapper .communication-settings-block {
    padding: 10px 15px 10px 30px;
    width: 70%;
    min-height: 100% !important;
}

.modal-sub-body.communication .inner-block > .row {
    margin-bottom: 3px;
}

/* ------------------------------------------------------------------------- Wallet --------------------------------------------------------------------*/

.wallet-title {
    padding: 18px 0 8px 16px;
    color: var(--selected-color);
    text-transform: uppercase;
    text-align: start;
}

#profilePopup .modal-sub-body .wallet-table, .table--scrollable__thead {
    color: var(--black-color);
}

.table--scrollable__tr, .statedisabledforbet, .wallet-table .wallet-table tr {
    display: flex;
}

.table--scrollable__thead .table--scrollable__tr, .wallet-table thead tr, .transaction-row-outlined.column-headers,
.transaction-row-outlined.column-headers-withdrawal, [class^='modal-body player-bonus-type-'] .bonus-title-row{
    background-color: var(--border-color5);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: var(--white-color);
}

    .table--scrollable__th, .table--scrollable__tbody .table--scrollable__td, .wallet-table th, .wallet-table td,
    [class^='modal-body player-bonus-type-'] .bonus-title-row > div,
    [class^='modal-body player-bonus-type-'] .bonus-body-row-title > div{
        flex: 1;
        padding: 11.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

.table--scrollable__tbody .table--scrollable__tr:nth-child(even), .col-xs-12 .wallet-table tbody tr:nth-child(even),
.modal-sub-body.identifications .document-body-row-title:nth-child(even), .transaction-row,
.table--scrollable__tbody .table--scrollable__tr:hover, [class^='modal-body player-bonus-type-'] .bonus-body-row-title {
    background-color: var(--hover-color);
}

/* ------------------------------------------------------------------------- Payments --------------------------------------------------------------------*/

.transaction-row-outlined.column-headers, .transaction-row-outlined.column-headers-withdrawal, .transaction-row,
[class^='modal-body player-bonus-type-'] .bonus-title-row, [class^='modal-body player-bonus-type-'] .bonus-body-row-title,
.player-bonus-type-deposit .bonus-body-row-header, .player-bonus-type-deposit .bonus-body-row-title {
    padding: 10px 5px;
    display: grid;
    grid-template-areas: 'logo title procTime fee min max';
    grid-template-columns: 80px 150px 1fr 1fr 1fr 1fr;
    gap: 10px;
}

    .player-bonus-type-deposit .bonus-body-row-title > div {
        padding: 0 !important;
    }

        .player-bonus-type-deposit .bonus-body-row-title > div.bonus-checkbox-wrapper {
            position: relative;
        }

        .player-bonus-type-deposit .bonus-body-row-title > div input[type="checkbox"] ~ label {
            left: 5px;
        }

.player-bonus-type-deposit .bonus-body-row-title {
    margin: 5px 0;
    padding: 15px 0 !important;
    cursor: pointer;
    background-color: var(--text-color2);
    border-radius: 3px;
}

    .player-bonus-type-deposit .bonus-body-row-title.selected, #profilePopup [id^='bonus-content-'] .os-content {
        background-color: var(--icon-color);
    }

#profilePopup [id^='bonus-content-'] .os-content {
    padding: 10px 10px;
    border-radius: 3px;
}

[id^="transaction-details"].shown {
    background-color: var(--text-color);
    padding: 10px;
    border-radius: 3px;
}

.bonus-body-row-body b, .bonus-body-row-bold {
    color: var(--selected-color);
}

.select-expander {
    display: none;
}

.row.transaction-block {
    padding: 0 15px;
}

    .row.transaction-block > .col-xs-12 {
        padding: 0;
    }

.transaction-row, [class^='modal-body player-bonus-type-'] .bonus-body-row-title {
    margin: 10px 0;
    border-radius: 3px;
    cursor: pointer;
}

    .transaction-row:hover, [class^='modal-body player-bonus-type-'] .bonus-body-row-title:hover {
        background-color: var(--selected-color-hover);
        cursor: pointer;
    }

    .row.transaction-block.active .transaction-row:not(.mobile .row.transaction-block.active .transaction-row), [class^='modal-body player-bonus-type-'] .bonus-body-row-title.active {
        background-color: var(--selected-color);
    }

[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-auto,
[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-manual {
    line-height: 18px;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid var(--text-color-4);
    background-color: var(--text-color2);
    color: var(--black-color);
}

[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-question-mark,
[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-auto,
[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-manual {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

    [class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-auto:after {
        content: 'A';
    }

[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-icon-freebet,
[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-icon-wagering,
[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-icon-cashback {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    background-position: center center;
}

[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-icon-freebet {
    background-image: url(/content/img/utils/freebet-bonus.png);
}

[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-icon-wagering {
    background-image: url(/content/img/utils/wagering-bonus.png);
}

[class^='player-bonus-type'] .bonus-body-row-title .bonus-placeholder .b-manual:after {
    content: 'M';
}

#__depositPopup .modal-body {
    height: calc(100% - 51px);
}

.js-deposit-submit-container {
    margin-top: 5px;
}

.player-bonus-type-deposit .bonus-prop {
    font-weight: bold;
}

#paymentsystem .form-group ~ #countryId {
    margin-bottom: 15px;
}
/* 
.player-bonus-type-deposit.freespins .os-content-glue{
    height: 140px !important;
} */

.player-bonus-type-deposit .freespin-game .Item {
    min-height: 84px;
}

#paymentsystem .player-bonus-type-deposit.freespins .bonus-body-row-header,
#paymentsystem .player-bonus-type-deposit.freespins .bonus-body-row-title {
    grid-template-columns: 50px 1.5fr 1fr 1fr 1fr;
}

#profilePopup .modal-footer .paging {
    padding-right: 15px;
}
/* ------------------------------------------------------------------------- Messages --------------------------------------------------------------------*/

#profilePopup .inbox-grid {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    height: calc(90vh - 160px);
}

#profilePopup .js-custom-scrollbar-wrapper, #profilePopup .balancehistory .row.ajax-result, #profilePopup .modal-dialog.history .row.ajax-result {
    height: 100% !important;
    margin: 0;
    border-radius: 3px;
}

.row.ajax-result.bonus-state-group-simple {
    margin: 0;
}

#profilePopup .modal-content .modal-sub-body .bonus-body-row-body .row {
    margin: 0;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: var(--btn-color2);
}

    .os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
        background: var(--btn-color);
    }

.thread-list .single-thread .title {
    margin-bottom: 8px;
    color: var(--btn-color2);
}

.thread-list .single-thread .detail-row {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.detail-row span, .message-id span, .message-details span {
    font-weight: bold;
    color: var(--btn-color2);
}

.message-header {
    display: flex;
}

    .message-header .message-icon-wrapper {
        width: 80px;
        padding: 16px;
        display: flex;
        justify-content: flex-end;
        font-size: 24px;
        color: var(--brand-color);
        background-color: var(--background-color7);
    }

    .message-header .message-details {
        padding: 16px 0;
        flex: 1 1 auto;
        background-color: var(--background-color7);
    }

.message-sent-date {
    padding-bottom: 11px;
}

.message-content .detail-row {
    padding-top: 11px;
    border-top: 1px solid var(--text-color2);
    text-align: left;
}

.message-body {
    padding-top: 20px;
    padding-left: 80px;
}

.thread-list .single-thread.active {
    background-color: var(--hover-color);
}

#profilePopup .loader {
    width: 30%;
    height: 30px;
    margin-left: 5px;
    padding: 0 5px;
    position: absolute;
    bottom: 0;
    border-radius: 4px;
    background-color: var(--background-color7);
    text-align: center;
    line-height: 30px;
}

/* --------------------------------------------------------------------------- History -----------------------------------------------------------------------*/

#profilePopup #searchform .btn.js-see-details, #profilePopup #searchform .btn.js-form-search-submit {
    margin-top: 24px;
}

.modal .paging li {
    display: inline-block;
    font-size: 0;
}

.modal .paging .pi {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--text-color);
    border: 1px solid var(--brand-color);
    text-align: center;
    line-height: 18px;
    cursor: pointer;
    transition: background-color .2s;
    color: var(--black-color);
    border-radius: 5px;
}

.modal .paging div.pi {
    line-height: 26px;
}

.modal .paging .pi.paging-first, .modal .paging .pi.paging-last, .modal .paging .pi.paging-prev-ten,
.modal .paging .pi.paging-prev, .modal .paging .pi.paging-next-ten, .modal .paging .pi.paging-next {
    background: var(--text-color);
}

.modal .paging .disabled {
    opacity: .5;
}

.modal .paging li a, .modal .paging li i {
    font-size: 1.2rem;
    position: relative;
}

.modal .paging .pi.active, .modal .paging .pi:not(.disabled):hover {
    background-color: var(--brand-color);
}

#profilePopup .modal--balance-history .table--scrollable__tr > div:nth-child(4) {
    flex: 1.5;
}

.modal-dialog.history .bonus-table-body.js-sortable {
    height: unset !important;
}

/* --------------------------------------------------------------------------- Promotions -----------------------------------------------------------------------*/

.modal-dialog.history [class*=player-bonus-type] {
    height: 100%;
}

    .modal-dialog.history [class*=player-bonus-type] .modal-sub-body {
        /* height: calc(100% - 72px) !important; */
        min-height: 500px;
    }

#profilePopup .modal-dialog.history .row.ajax-result {
    height: calc(100% - 42px) !important;
}

.modal-dialog.history [class*=player-bonus-type] .col-xs-12.scrollable, .modal-dialog.history [class*=player-bonus-type] .col-xs-12 .bonus-table {
    height: 100%;
    padding: 0;
}

    .modal-dialog.history [class*=player-bonus-type] .col-xs-12 .bonus-table .js-overlay-scrollbar {
        height: calc(100% - 43px);
    }

[class*=player-bonus-type] .item-content {
    position: relative;
}

.wagering-line {
    height: 6px;
    margin-top: 7px;
    position: absolute;
    background: var(--brand-color);
    border-radius: 14px;
}

.wagering-percent {
    width: 4%;
    background-color: var(--brand-color);
    position: absolute;
    top: 2px;
    left: 0px;
    border-radius: 4px;
    text-align: center;
}

[class^='modal-body player-bonus-type-'] .bonus-title-row, [class^='modal-body player-bonus-type-'] .bonus-body-row-title {
    padding: 0;
}

[class*=player-bonus-type] .bonus-body-row-title {
    padding-top: 24px;
}

    [class*=player-bonus-type] .bonus-body-row-title > div {
        padding: 0 11.5px 11.5px;
    }

[class*=player-bonus-type] .bonus-body-row-body {
    display: none;
    padding: 10px;
    overflow: hidden;
    background: var(--text-color);
    color: var(--black-color);
    border-radius: 4px;
}

    [class*=player-bonus-type] .bonus-body-row-body h4 {
        font-size: 14px;
        color: var(--brand-color);
        font-weight: 700;
    }

    [class*=player-bonus-type] .bonus-body-row-body p {
        margin-bottom: 0;
    }

        [class*=player-bonus-type] .bonus-body-row-body p .bonus-prop {
            color: var(--selected-color);
            font-weight: 600;
        }

        [class*=player-bonus-type] .bonus-body-row-body p.button-wrapper {
            float: right;
            padding-left: 10px;
        }

.modal-body.player-bonus-type-2 .bonus-title-row, .modal-body.player-bonus-type-2 .bonus-body-row-title,
.player-bonus-type-deposit .bonus-body-row-header, .player-bonus-type-deposit .bonus-body-row-title {
    grid-template-areas: 'id title type amount state expires priority';
    grid-template-columns: 7vw 12vw 1fr 1fr 1fr 1fr 1fr;
}

.modal-dialog.modal--promotions-freespins .bonus-title-row,
.modal-dialog.modal--promotions-freespins .bonus-body-row-title,
.modal-dialog .modal-body.player-bonus-type-1 .bonus-title-row,
.modal-dialog .modal-body.player-bonus-type-1 .bonus-body-row-title {
    grid-template-columns: 7vw 1fr 1fr 1fr 1fr !important;
}

.modal-dialog.modal--promotions-freespins .player-bonus-type-1 .bonus-title-row,
.modal-dialog.modal--promotions-freespins .player-bonus-type-1 .bonus-body-row-title {
    grid-template-columns: 7vw 1fr 1fr 1fr !important;
}

.modal-body.player-bonus-type-3 .bonus-placeholder,
.modal-body.player-bonus-type-4 .bonus-placeholder,
.modal-body.player-bonus-type-6 .bonus-placeholder,
.modal-body.player-bonus-type-2 .bonus-placeholder {
    display: none;
}

.modal-body.player-bonus-type-3 .bonus-title-row, .modal-body.player-bonus-type-3 .bonus-body-row-title,
.modal-body.player-bonus-type-4 .bonus-title-row, .modal-body.player-bonus-type-4 .bonus-body-row-title {
    grid-template-columns: 80px 130px 1fr 1fr 1fr 1fr;
}

.forfeit-btn, .result-message, .btn--upgrade, .forfeit-btn:hover, .result-message:hover, .btn--upgrade:hover {
    background-color: var(--selected-color) !important;
}

.disable-btn, .btn--downgrade, .disable-btn:hover, .btn--downgrade:hover {
    background-color: var(--brand-color) !important;
}

[class^='modal-body player-bonus-type-'] .bonus-order.update-state {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.btn--upgrade, .btn--downgrade {
    height: 30px;
}

    .btn--upgrade, .btn--downgrade, .btn--upgrade.btn-success:focus, .btn--downgrade:focus {
        padding: 6px 0 !important;
        flex: .5;
    }

#__depositPopup .close {
    margin-left: auto;
}

#profilePopup .modal-body.player-bonus-type-1 .bonus-placeholder {
    display: none;
}

#profilePopup .modal-dialog.history .row.ajax-result > .col-xs-12, #profilePopup .modal-dialog.history .row.ajax-result > .col-md-12 {
    overflow-x: auto;
    overflow-y: hidden;
}

/* ---------------------------------------- Responsible Gambling ---------------------------------------------- */
.Menu--user li[data-route='responsible'] {
    text-transform: uppercase;
}

.responsible-gambling {
    color: var(--white-color);
}

    .responsible-gambling .transaction-row-outlined.column-headers {
        padding: 10px 0;
        justify-content: center;
    }

    .responsible-gambling .transaction-row-outlined .trans-proc-time {
        text-align: center;
    }

    .responsible-gambling .transaction-row .trans-proc-time,
    #profilePopup .responsible-gambling .col-xs-3,
    .responsible-gambling .transaction-row span {
        width: calc(100% / 3);
        display: flex;
        justify-content: center;
    }

#profilePopup .responsible-gambling .switch {
    left: unset;
}

.responsible-gambling h4,
.responsible-gambling h3 {
    font-size: 15px;
    padding: 0 10px 10px;
    font-weight: 400;
    grid-column-end: span 3;
}

.responsible-gambling label {
    margin: unset;
}

.responsible-gambling .form-group:not(.mt-10, .history-modal .form-group) {
    margin: 15px;
    position: relative;
}

.responsible-gambling #responsibleSystem > div:first-child > div {
    display: grid;
    grid-template-columns: 1fr 1fr 0fr;
}

.responsible-gambling .custom-radio-button, .responsible-gambling .product-select {
    display: none;
}

.responsible-gambling [id^='transaction-details'] label:not(.control-label) input[type="checkbox"] {
    content: '';
    width: 22px;
    height: 22px;
    display: flex;
    border: 2px solid var(--grey-color);
    border-radius: 4px;
    font-weight: 900;
    border-color: var(--color-green-2);
    accent-color: var(--color-green-2);
    appearance: none;
    border-radius: 6px;
}

    .responsible-gambling [id^='transaction-details'] label:not(.control-label) input[type="checkbox"]:checked {
        background: var(--color-green-2);
        appearance: auto;
        border-radius: 6px;
    }

.responsible-gambling [id^='transaction-details'] label:not(.control-label) {
    width: 100%;
    background-color: unset !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
    padding: 6px 10px 6px 10px;
    cursor: pointer;
    user-select: none;
}

.responsible-gambling .product-select.open {
    display: block;
    position: absolute;
    width: 100%;
    border: 1px solid var(--grey-color);
    border-radius: 12px;
    background-color: var(--background-color-9);
    z-index: 5;
    height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.responsible-gambling .select {
    color: var(--grey-color) !important;
    height: 36px;
    border: 1px solid var(--grey-color);
    outline: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    align-content: center;
    justify-content: space-between;
}

    .responsible-gambling .select:after {
        font-family: 'Line Awesome Free';
        font-weight: 900;
        content: '\f107';
    }

.responsible-gambling .responsible-label {
    display: none !important;
}

.responsible-types {
    padding: 10px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

    .responsible-types > div {
        padding: 5px;
        cursor: pointer;
        color: #000;
        border-bottom: 2px solid transparent
    }

        .responsible-types > div:hover, .responsible-types > div.active {
            border-color: #538c36;
        }

.responsible-settings-block:not(:has(.history-modal)) {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    color: #000;
}

.responsible-settings-block .inner-occurrences:has(.password-form-group) {
    box-shadow: 0 1rem 2rem 2px #c9c07d;
    padding: 15px;
    margin-top: 15px;
}

#profilePopup .modal-dialog .modal-footer .row .col-xs-6 .col-xs-12 {
    text-align: left;
}

.responsible-settings-block .inner-block .modal-footer.form-footer .btn-body .btn {
    padding: 5px 25px !important;
    margin-top: 10px;
    display: unset;
    width: auto;
}

.responsible-settings-block .inner-block,
.responsible-settings-block .history-modal {
    padding: 12px;
    flex: 1;
}

    .responsible-settings-block .inner-block .title {
        font-size: 22px;
        margin-bottom: 10px
    }

.responsible-settings-block .form-group:not(.history-modal .form-group) {
    width: auto;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.responsible-settings-block .history-modal label {
    margin-bottom: 5px;
    color: #000;
}

.responsible-settings-block .col-md-7.col-md-offset-5.text-right #save {
    min-width: 100px;
}

.responsible-settings-block .inner-block .inner-body:has(.notice-form-group) {
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 1rem 2rem 2px #c9c07d;
    margin-top: 25px;
}

.responsible-settings-block .inner-block .inner-body .form-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    border-radius: 0.8rem;
    box-shadow: 0 1rem 2rem 2px #538c36;
    margin: 15px;
}

.responsible-settings-block .inner-block .inner-occurrences-body .canceled-limit-reminder {
    padding: 0 0 15px 15px;
    color: #FF9800;
}

.responsible-settings-block .select2-container--default .select2-results__option span,
.responsible-settings-block .select2-container--default .select2-selection--single span:not(.select2-selection__arrow) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    width: calc(100% - 5px);
}

.form-group.notice-form-group .clear-form .form-control-feedback {
    pointer-events: auto;
    cursor: pointer;
}

.responsible-settings-block .select2-container--default .select2-results__option:has(.has-limit) {
    background: #ffdc00;
    color: #3c0078;
}

.responsible-settings-block .inner-block .inner-occurrences-body .notice-info {
    color: #538c36;
    margin-right: 10px;
}

.responsible-settings-block .row {
    margin: 0;
}

#limit-product-object-types {
    margin-top: 15px !important;
}

.responsible-settings-block .inner-block .inner-body .form-groups:has(> div:only-child) .form-group:not(.prevent-login-form-group) {
    /* width: 25%; */
}

.form-group.password-form-group .eye-icon {
    top: 51px;
}

.responsible-settings-block #parent {
    position: relative;
}

.limit-product-objects .select2-selection--single .select2-selection__rendered .select2-selection__clear {
    display: none !important;
}

.limit-product-objects, #limit-product-object-types, .form-group.password-form-group {
    width: 50% !important;
    min-width: auto;
    margin: 0 15px;
}

.form-group.password-form-group {
    width: 25% !important;
}

.modal-sub-body.responsible .limit-product-objects h5 {
    padding: 20px 0 10px 0;
}

.control-fields {
    position: relative;
}

.responsible-gambling .form-group .form-control:not(.history-modal .form-group .form-control),
.limit-product-objects .select2.select2-container.select2-container--default {
    height: 40px;
}

.limit-product-objects .select2-container--default .select2-selection--single {
    justify-content: flex-start;
}

.limit-product-objects .select2-results__option span,
.limit-product-objects .select2-selection--single .select2-selection__rendered span {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.responsible-settings-block .row select:not(.history-modal .row select) {
    height: 40px !important;
    flex: 1;
    padding: 0;
    margin: 0 4px;
    outline: none;
    cursor: pointer;
    border-radius: 12px;
    text-align: center
}

.responsible-settings-block .row select#Month {
    flex: 1.2
}

.responsible-settings-block .row select#Year {
    flex: 1.5
}

.responsible-settings-block .inner-body > div input {
    padding: 5px 15px;
    outline: none;
    border-radius: 10px
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #53189e;
}

.responsible-gambling .form-group #currency-symbol:not(#next-limit-value #currency-symbol) {
    position: absolute;
    top: 10px;
    left: 5px;
    color: #538c36;
}

.responsible-gambling .form-group #next-limit-value {
    position: relative;
}

    .responsible-gambling .form-group #value-reminder #reminder-currency-symbol,
    .responsible-gambling .form-group #next-limit-value #currency-symbol {
        color: #538c36;
    }

.responsible-gambling .form-group .form-control-feedback {
    top: 4px !important;
    height: auto !important;
    pointer-events: auto;
    cursor: pointer;
}

    .responsible-gambling .form-group .form-control-feedback .las:before {
        font-style: normal;
        font-weight: 800;
        font-size: 18px;
    }

    .responsible-gambling .form-group .form-control-feedback .la-times:before {
        color: #FF5722 !important;
    }

    .responsible-gambling .form-group .form-control-feedback .la-refresh:before {
        color: #ffdc00 !important;
    }

.reason-dropdown {
    width: 156px;
    padding: 5px;
    border-radius: 10px;
    height: 22px;
    position: relative;
    background-color: #fff;
    color: #000;
    text-align: right
}

    .reason-dropdown > span {
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 5;
        background-color: #fff;
        text-align: start;
        top: 23px;
        left: 0;
        border-radius: 12px;
        display: none
    }

    .reason-dropdown.open > span, .responsible-settings-block .row select:not(.history-modal .row select),
    .responsible-settings-block .inner-block.open .inner-body > div > div.row {
        display: flex;
        width: calc((100% / 3) - 10px);
    }

    .reason-dropdown > span span {
        padding: 6px
    }

        .reason-dropdown > span span:hover {
            background-color: var(--background-color-10);
            color: #fff
        }

.modal-sub-body.responsible h5 {
    margin: 0;
    padding: 8px 15px 15px
}

.responsible-settings-block.single {
    justify-content: start
}

    .responsible-settings-block.single .inner-block {
        width: calc((100%/5) - 10px);
        flex: unset
    }

        .responsible-settings-block.single .inner-block:nth-child(n+2),
        .responsible-settings-block.single .inner-block .title,
        .responsible-settings-block.single.self .inner-block .amount,
        .responsible-settings-block .inner-block.open .inner-body .not-set,
        .responsible-settings-block .inner-block .inner-body .form-groups:not(:has(:first-child)) {
            display: none
        }

.responsible-settings-block .inner-block .inner-body .form-groups:has(.occurrence-notice-info) .form-group .control-label:not(:has(.occurrence-notice-info)) {
    margin-bottom: 20px;
}

.responsible-settings-block .inner-block .limit-body .inner-body:has( > .label-head) {
    padding-top: 20px;
}

.responsible-settings-block .inner-block .save-btn {
    display: flex;
    justify-content: end
}

.responsible-settings-block .inner-block.open .inner-body > div > div:nth-child(3) {
    display: block
}

#end-date-checkbox {
    align-items: center;
}

    #end-date-checkbox input[type="checkbox"] {
        visibility: hidden;
        display: none;
    }

    #end-date-checkbox *,
    #end-date-checkbox ::after,
    #end-date-checkbox ::before {
        box-sizing: border-box;
    }

    #end-date-checkbox .checkbox {
        width: 60px;
        height: 30px;
        position: relative;
        display: inline-block;
    }

    #end-date-checkbox .checkbox-slider {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 30px;
        box-shadow: 0 0 0 2px #777, 0 0 4px #777;
        cursor: pointer;
        border: 4px solid transparent;
        overflow: hidden;
        transition: 0.2s;
    }

        #end-date-checkbox .checkbox-slider:before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background-color: #777;
            border-radius: 30px;
            transform: translateX(-30px);
            transition: 0.2s;
        }

    #end-date-checkbox input:checked + .checkbox-slider:before {
        transform: translateX(30px);
        background-color: #538c36;
    }

    #end-date-checkbox input:checked + .checkbox-slider {
        box-shadow: 0 0 0 2px #538c36, 0 0 8px #538c36;
    }

.responsible-settings-block .limit-set-info span {
    font-size: 15px;
    font-weight: 900;
}

.responsible-settings-block .limit-base-info {
    font-size: 15px;
}

.responsible-settings-block .limit-set-info {
    margin-bottom: 15px;
}

.responsible-settings-block .limit-revoke-info {
    display: flex;
    padding: 15px;
    gap: 15px;
    background: #fec40d;
    margin: 15px 0;
    border-radius: 8px;
}

    .responsible-settings-block .limit-revoke-info .limit-revoke-info-text-body {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        .responsible-settings-block .limit-revoke-info .limit-revoke-info-text-body .attention {
            font-weight: 900;
        }

    .responsible-settings-block .limit-revoke-info .la-warning {
        display: flex;
        align-items: center;
        padding: 25px;
        border-radius: 100%;
        box-shadow: inset 0px 0px 8px 3px #538c36;
    }


/* --------------------------------------------------------------------------- Datepicker -----------------------------------------------------------------------*/

#profilePopup ~ .daterangepicker, #registrationPopup ~ .datepicker {
    border-radius: 4px;
}

#registrationPopup ~ .datepicker {
    border-color: var(--brand-color);
    color: var(--text-color);
}

    #registrationPopup ~ .datepicker td.day:hover {
        color: var(--black-color);
    }

#profilePopup ~ .daterangepicker:before, #profilePopup ~ .daterangepicker:after {
    display: none;
}

#profilePopup ~ .daterangepicker ul li {
    background-color: var(--brand-color);
    color: var(--black-color);
    border-radius: 4px;
}

    #profilePopup ~ .daterangepicker ul li:hover,
    #profilePopup ~ .daterangepicker ul li.active,
    #registrationPopup ~ .datepicker thead tr:first-child th:hover {
        background-color: var(--btn-color2);
        color: var(--white-color);
        border-color: var(--btn-color2);
    }

#profilePopup ~ .daterangepicker .daterangepicker_input .input-mini,
#profilePopup ~ .daterangepicker .daterangepicker_input i {
    border-radius: 4px;
    color: var(--black-color);
}

    #profilePopup ~ .daterangepicker .daterangepicker_input .input-mini.active {
        border-color: var(--selected-color);
    }

#profilePopup ~ .daterangepicker td.week,
#profilePopup ~ .daterangepicker th.week {
    color: var(--text-color3);
}

#profilePopup ~ .daterangepicker td.off, #profilePopup ~ .daterangepicker td.off.in-range, #profilePopup ~ .daterangepicker td.off.start-date,
#profilePopup ~ .daterangepicker td.off.end-date {
    color: var(--text-color3);
    background-color: transparent;
}

#profilePopup ~ .daterangepicker td.available:hover, #profilePopup ~ .daterangepicker th.available:hover,
#profilePopup ~ .daterangepicker td.active, #profilePopup ~ .daterangepicker td.active:hover,
#registrationPopup ~ .datepicker td.available:hover, #registrationPopup ~ .datepicker th.available:hover,
#registrationPopup ~ .datepicker td.active, #registrationPopup ~ .datepicker td.active:hover {
    background-color: var(--brand-color) !important;
    color: var(--black-color);
    background-image: unset;
}

#profilePopup ~ .daterangepicker td.in-range {
    background-color: var(--brand-color);
}

#profilePopup ~ .daterangepicker .calendar.left .calendar-table {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#profilePopup ~ .daterangepicker .calendar.right .calendar-table {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

#registrationPopup ~ .datepicker .datepicker-days .switch, .datepicker-months .switch,
#registrationPopup ~ .datepicker .prev ~ th {
    vertical-align: middle;
}

#registrationPopup ~ .datepicker .prev, #registrationPopup ~ .datepicker .next,
#registrationPopup ~ .datepicker .prev, #registrationPopup ~ .datepicker .next {
    padding: 0px 5px 6px 5px;
}

#registrationPopup ~ .datepicker .datepicker-months .table-condensed, #registrationPopup ~ .datepicker .datepicker-years .table-condensed {
    min-width: 200px;
}

#registrationPopup ~ .datepicker .datepicker-months tbody td span, #registrationPopup ~ .datepicker .datepicker-years tbody td span {
    width: 58px;
}

/* -------------------------------------------------------------------------- eye-icon-------------------------------------------------------------------------*/
.password-group, .password_input, #changepassform .form-group {
    display: block;
    position: relative;
}

.eye-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/content/img/design/icons/eye-dark.svg");
    background-repeat: no-repeat;
    background-position: center !important;
    position: absolute;
    left: auto;
    right: 10px !important;
    top: 16%;
    opacity: 0.5;
    cursor: pointer;
}

#changepassform .eye-icon {
    top: 30px;
}

#loginPopup .eye-icon {
    top: 51%;
}

#loginPopup .form-control.input-validation-error ~ .eye-icon {
    top: 35%;
}

.eye-icon.active {
    background-size: 17px;
    background-image: url("/content/img/design/icons/eye-open-dark.svg");
}

#loginPopup input:-webkit-autofill, .password_input input:-webkit-autofill, #changepassform input:-webkit-autofill,
#loginPopup input:-webkit-autofill:hover, .password_input input:-webkit-autofill:hover, #changepassform input:-webkit-autofill:hover,
#loginPopup input:-webkit-autofill:focus, .password_input input:-webkit-autofill:focus, #changepassform input:-webkit-autofill:focus,
#loginPopup input:-webkit-autofill:active, .password_input input:-webkit-autofill:active, #changepassform input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--text-color2) inset !important;
    -webkit-text-fill-color: var(--grey-color) !important;
    caret-color: var(--grey-color);
    -webkit-background-clip: text;
}

input:-webkit-autofill ~ .eye-icon {
    background-image: url("/content/img/design/icons/eye.svg");
}

    input:-webkit-autofill ~ .eye-icon.active {
        background-image: url("/content/img/design/icons/eye-open.svg");
    }

/* ----------------------------------------------------------------------- Recent Winners ---------------------------------------------------------------------*/
.recent_winners {
    height: 100%;
    position: relative;
}

    .recent_winners .slot-banner, .big_wins .slot-banner {
        height: 540px;
        position: relative;
        overflow: hidden;
        background-color: var(--background-color8);
    }

        .recent_winners .slot-banner:before {
            content: "";
            display: block;
            width: 90%;
            height: 1px;
            background-color: var(--border-color5);
            margin: 280px auto 0;
        }

    .recent_winners .header {
        position: absolute;
        top: -60px;
        left: 60px;
        color: var(--brand-color);
        font-size: 24px;
    }

.big_wins.tp-i_big-win {
    position: relative;
}

    .recent_winners.tp-i_recent-winners:before, .big_wins.tp-i_big-win:before, .tp-i_promo-home:after,
    .recent_winners_responsive.tp-i_recent-winners:before, .big_wins_responsive.tp-i_big-win:before, .tp-i_promo-home:after {
        width: 40px;
        height: 40px;
        position: absolute;
        top: -66px;
        left: 10px;
        font-size: 32px;
        color: var(--white-color);
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--border-color4);
        border-radius: 3px;
    }

    .big_wins.tp-i_big-win:before, .tp-i_promo-home:after {
        top: 10px;
    }

.recent_winners_responsive.tp-i_recent-winners:before, .big_wins_responsive.tp-i_big-win:before {
    position: unset;
    margin: auto 10px;
    min-width: 40px;
}

.recent_winners .slot-banner .body {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: -252px;
}

.recent_winners .tab-body-inner .item, .big_wins
.tab-body-inner .item {
    height: 260px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    font-size: 18px;
}

.recent_winners .slot-banner .body .active, .recent_winners .wager-id,
.big_wins .slot-banner .body .active, .big_wins .wager-id {
    display: none;
}

.recent_winners .product-image, .big_wins .product-image {
    width: 70px;
    margin: auto;
    order: 3;
}

.recent_winners .play-now-btn, .big_wins .play-now-btn {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.recent_winners .player-id, .big_wins .player-id, .big_wins .bet-amount {
    order: 1;
    color: var(--brand-color);
}

.recent_winners .win-amount, .big_wins .win-amount {
    order: 2;
    color: var(--orange-color);
}

.recent_winners .product-name, .big_wins .product-name {
    order: 4;
    color: var(--white-color);
}

.big_wins .header {
    color: var(--brand-color);
    font-size: 24px;
    background-color: var(--background-color2);
}

.content_wrapper .big_wins .slick-prev, .content_wrapper .big_wins .slick-next,
.content_wrapper .sub-game-nav.row {
    height: 100%;
    margin: 0;
}

.big_wins .slot-banner, .big_wins .slot-banner .tab-body-inner, .big_wins .slot-banner .item {
    height: 189px;
}

/* ----------------------------------------------------------------------- responsiveTabGroup ---------------------------------------------------------------------*/
.responsiveTabGroup {
    height: 0px;
    overflow: hidden;
}

    .responsiveTabGroup > .Container__Item {
        display: flex;
        width: 100%;
    }

        .responsiveTabGroup > .Container__Item > .Container__Item,
        .responsiveTabGroup .recent_winners_responsive .slot-banner, .responsiveTabGroup .big_wins_responsive .slot-banner,
        .responsiveTabGroup .recent_winners_responsive > .header, .responsiveTabGroup .big_wins_responsive > .header,
        .mobile .responsiveTabGroup .recent_winners_responsive #winner-body-wraper, .mobile .responsiveTabGroup .big_wins_responsive #winner-body-wraper {
            width: calc(100% / 2);
        }

    .responsiveTabGroup .recent_winners .tab-body-inner .item, .responsiveTabGroup .big_wins .tab-body-inner .item {
        height: 70px;
        padding: 0 0 0 102px;
        justify-content: center;
        font-size: 12px;
        position: relative;
    }

    .responsiveTabGroup .recent_winners_responsive, .responsiveTabGroup .big_wins_responsive {
        height: 100%;
        display: flex;
        position: relative;
    }

    .responsiveTabGroup .recent_winners .product-image, .responsiveTabGroup .big_wins .product-image {
        width: 58px;
        position: absolute;
        left: 38px;
        bottom: 10px;
    }

    .responsiveTabGroup .product-name, .responsiveTabGroup .product-name {
        position: absolute;
        max-width: 100%;
        left: 38px;
        top: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body:not(.mobile) .responsiveTabGroup .recent_winners_responsive .tabs > ul, body:not(.mobile) .responsiveTabGroup .big_wins_responsive .tabs > ul,
    .responsiveTabGroup .slick-prev:before, .responsiveTabGroup .slick-next:before {
        display: none;
    }

    .responsiveTabGroup .recent_winners_responsive > .header, .responsiveTabGroup .big_wins_responsive > .header,
    .mobile .responsiveTabGroup .recent_winners_responsive .tabs > ul, .mobile .responsiveTabGroup .big_wins_responsive .tabs > ul {
        padding-right: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-color);
        font-size: 22px;
        position: relative;
    }

        .responsiveTabGroup .recent_winners_responsive > .header:before, .responsiveTabGroup .recent_winners_responsive > .header:after,
        .responsiveTabGroup .big_wins_responsive > .header:before, .responsiveTabGroup .big_wins_responsive > .header:after,
        .mobile .responsiveTabGroup .recent_winners_responsive .tabs > ul:before, .mobile .responsiveTabGroup .recent_winners_responsive .tabs > ul:after,
        .mobile .responsiveTabGroup .big_wins_responsive .tabs > ul:before, .mobile .responsiveTabGroup .big_wins_responsive .tabs > ul:after {
            content: "";
            display: block;
            width: 2px;
            height: 54%;
            background-color: var(--border-color6);
            position: absolute;
            right: 15px;
            rotate: 30deg;
        }

        .responsiveTabGroup .recent_winners_responsive > .header:before, .responsiveTabGroup .big_wins_responsive > .header:before,
        .mobile .responsiveTabGroup .recent_winners_responsive .tabs > ul:before, .mobile .responsiveTabGroup .big_wins_responsive .tabs > ul:before {
            top: 0;
            rotate: -30deg;
        }

        .responsiveTabGroup .recent_winners_responsive > .header:after, .responsiveTabGroup .big_wins_responsive > .header:after,
        .mobile .responsiveTabGroup .recent_winners_responsive .tabs > ul:after, .mobile .responsiveTabGroup .big_wins_responsive .tabs > ul:after {
            bottom: 0;
        }

.mobile .responsiveTabGroup .recent_winners_responsive .tabs, .mobile .responsiveTabGroup .big_wins_responsive .tabs {
    display: flex;
}

    .mobile .responsiveTabGroup .recent_winners_responsive .tabs > ul, .mobile .responsiveTabGroup .big_wins_responsive .tabs > ul {
        height: 70px;
    }

.mobile .responsiveTabGroup .recent_winners_responsive .slot-banner, .mobile .responsiveTabGroup .big_wins_responsive .slot-banner {
    width: calc(100% - 60px);
}

/* -------------------------------------------------------------------------- Content -------------------------------------------------------------------------*/
.content-page, .promo-tabs-wrapper, .Availability {
    min-height: calc(100vh - 261px);
}

#contentText {
    padding: 10px;
    margin: auto;
    max-width: 1590px;
    color: var(--text-color);
}

hr {
    border-color: var(--brand-color);
}

/* -------------------------------------------------------------------------- FAQ -------------------------------------------------------------------------*/
.content-page.faq #contentText {
    max-width: 1200px;
    padding: 10px 40px;
}

.question_wrapper {
    position: relative;
}

    .question_wrapper > div.las.la-angle-down, .terms_wrapper > span {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 18px;
        transition: .5s all ease;
    }

    .question_wrapper > div.las.la-angle-down {
        z-index: -1;
    }

        .question_wrapper > div.las.la-angle-down:before, .question_wrapper > div.las.la-angle-down:after {
            content: '';
            height: 3px;
            width: 12px;
            display: block;
            position: absolute;
            right: 0;
            background-color: var(--white-color);
            border-radius: 10px;
            transition: all .6s;
            transform: translate(-11px, 3px);
            rotate: -45deg;
        }

        .question_wrapper > div.las.la-angle-down:before {
            transform: translate(-2px, 17px);
            rotate: 45deg;
        }

    .question_wrapper .open_answer ~ .las.la-angle-down:before, .question_wrapper .open_answer ~ .las.la-angle-down:after {
        background-color: var(--brand-color);
        transform: translate(-16px, -2px);
    }

    .question_wrapper .open_answer ~ .las.la-angle-down:before {
        transform: translate(3px, 11px);
    }

.content-page.faq .question_wrapper > h4 > p {
    display: flex;
    gap: 4px;
}

.question_wrapper > h4 {
    display: block;
    padding-right: 40px !important;
    cursor: pointer;
}

.question_wrapper > p, .cookies-policy .question_wrapper > div {
    padding: 15px;
    border-radius: 4px;
}

.question_wrapper ~ h3, .content-page.faq .header, .question_wrapper a {
    color: var(--brand-color);
}

.question_wrapper a {
    display: inline-block;
}

.content-page .header {
    color: var(--btn-color2);
}

.open_answer ~ p {
    background-color: var(--hover-color);
}
/* -------------------------------------------------------------------------- Contact US -------------------------------------------------------------------------*/

.contact-us-container {
    display: flex;
    margin: 100px 0;
    justify-content: center;
    gap: 60px;
}

    .contact-us-container > div {
        flex: 1;
        max-width: 400px;
    }

.contact-us-images {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: var(--brand-color);
    border-radius: 4px;
}

    .contact-us-images > div {
        flex: 1;
        min-height: 296px;
        background: url(../img/design/icons/contact-us1.svg) no-repeat;
        background-size: contain;
    }

    .contact-us-images .second-img {
        background: url(../img/design/icons/contact-us2.svg) no-repeat;
        background-size: contain;
    }

.contact-us-content {
    border: 2px solid var(--brand-color);
    border-radius: 4px;
    padding: 20px;
}

/* -------------------------------------------------------------------------- Promotions -------------------------------------------------------------------------*/

.promotion_content_wrapper .header {
    color: var(--yellow-color);
}

#tabGroupPromo .tabs ul {
    margin: 5px 0 30px;
    padding: 0 40px 0;
    display: flex;
    gap: 30px;
    background-color: var(--background-color1);
    border-radius: 3px;
}

    #tabGroupPromo .tabs ul li {
        height: 46px;
        line-height: 46px;
        cursor: pointer;
        color: var(--white-color);
        position: relative;
    }

        #tabGroupPromo .tabs ul li.active {
            color: var(--brand-color);
            border-bottom: 2px solid var(--brand-color);
        }

.promo-tabs .tab-body-inner {
    max-width: 1680px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .promo-tabs .tab-body-inner > div {
        min-width: calc(100% / 4.5);
        border: 20px solid #846608;
        border: 20px solid #762d32;
        border: 20px solid var(--text-color3);
        border-radius: 3px;
    }

    .promo-tabs .tab-body-inner .front img {
        width: 100%;
    }

.promo-tabs .card.flipper {
    position: relative;
    overflow: hidden;
}

.promo-tabs .front .card-title, .promo-tabs .front .card-date, .promo-tabs .front .card-info, .promo-tabs .back .close-info {
    display: none;
}

.promo-tabs .card.flipper .back {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    left: -20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.952941) 0%, rgba(22, 23, 26, 0.7) 75%, rgba(22, 23, 26, 0.5) 100%);
    border: 20px solid var(--white-color);
    border-radius: 3px;
    color: var(--white-color);
    display: none;
}

.promo-tabs .card.flipper:hover {
    overflow: visible;
}

    .promo-tabs .card.flipper:hover .back {
        display: flex;
    }

.promo-tabs .card.flipper .back a {
    height: 30px;
    margin-top: 10px;
}

.promo-tabs .card.flipper .back .card-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

    .promo-tabs .card.flipper .back .card-title:after {
        content: "";
        display: block;
        width: 90%;
        height: 2px;
        margin: 6px auto;
        background-color: var(--white-color);
    }

.promo-tabs .card.flipper .back .content {
    padding: 0 8px;
}

    .promo-tabs .card.flipper .back .content, .promo-tabs .card.flipper .back .content span {
        font-size: 18px;
        text-align: center;
    }

/* ---------------------------------------------------------------------- Promotion FREEBET ----------------------------------------------------------------------*/
.promotion_content_wrapper {
    padding: 0 20px;
    min-height: calc(100vh + 235px);
    background-image: url(../img/banners/Promotions-img/casino-promo-background.webp);
    background-size: cover;
    background-position: 0% 28%;
}

    .promotion_content_wrapper.sport, .promotion_content_wrapper.welcome-bonus, .promotion_content_wrapper.happy-friday {
        min-height: calc(100vh - 18px);
    }

    .promotion_content_wrapper.sport {
        background-image: url(../img/banners/Promotions-img/sport-promo-background.webp);
    }

        .promotion_content_wrapper.sport .header, .promotion_content_wrapper.sport .steps_wrapper .step {
            color: var(--green-color);
        }

            .promotion_content_wrapper.sport .steps_wrapper .step ~ p, .promotion_content_wrapper.sport #contentText .header ~ p {
                box-shadow: 0 5px 15px var(--blue-color);
                border-color: var(--green-color);
            }

        .promotion_content_wrapper.sport .terms_wrapper > h4 {
            background-color: var(--blue-color);
        }

    .promotion_content_wrapper #contentText {
        max-width: 990px;
        padding-top: 40px;
        font: 16px sans-serif;
        color: var(--black-color);
    }

    .promotion_content_wrapper.sport #contentText {
        color: var(--white-color);
    }

    .promotion_content_wrapper #contentText .header {
        margin: 40px 0;
        font: 40px sans-serif;
    }

    .promotion_content_wrapper .steps_wrapper {
        max-width: 700px;
        margin: 30px auto;
        display: flex;
        gap: 25px;
    }

        .promotion_content_wrapper .steps_wrapper .step {
            text-align: center;
            color: var(--yellow-color);
            font-weight: 700;
            font-size: 6rem;
            margin-bottom: 1.5rem;
        }

        .promotion_content_wrapper .steps_wrapper > div {
            width: calc(100% / 3);
            height: 250px;
        }

        .promotion_content_wrapper .steps_wrapper .step ~ p, .promotion_content_wrapper #contentText .header ~ p {
            padding: 15px;
            text-align: center;
            background-color: var(--background-color6);
            border-radius: 4px;
            color: var(--black-color);
            border: 1px solid var(--brand-color);
            box-shadow: 0 5px 15px var(--green-color2);
        }

        .promotion_content_wrapper .steps_wrapper .step ~ p {
            height: 50%;
            display: flex;
            align-items: center;
        }

.terms_wrapper {
    max-width: 900px;
    margin: auto;
    position: relative;
    color: var(--white-color);
}

    .terms_wrapper > h4 {
        height: 55px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--green-color2);
        border-radius: 4px;
        cursor: pointer;
    }

    .terms_wrapper > span {
        top: 17px;
        right: 15px;
        color: var(--white-color) !important;
        cursor: pointer;
    }

    .terms_wrapper > div {
        padding: 20px;
        max-height: 250px;
        background-color: var(--background-color6);
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        color: var(--black-color);
        overflow: auto;
    }

        .terms_wrapper > div > p {
            display: flex;
            gap: 2px;
        }

.promotion_content_wrapper .game-nav, .mobile .promotion_content_wrapper .game-nav ~ .search-wrapper {
    display: none;
}

.promotion_content_wrapper #contentText {
    padding-bottom: 30px;
}

/* ----------------------------------------------------------------- Promotion GAME OF THE WEEK -----------------------------------------------------------------*/

.promotion_content_wrapper .product-wrapper {
    display: flex !important;
}

    .promotion_content_wrapper .product-wrapper .product-card {
        width: 250px;
        margin: auto;
    }

.promotion_content_wrapper .game-list-normal.placeholder article:not(:first-child) {
    display: none;
}

/* ----------------------------------------------------------------- Promotion SLOT CASHBACK-----------------------------------------------------------------*/

.promotion_content_wrapper.slot-cashback .header, .promotion_content_wrapper.slot-cashback .steps_wrapper .step {
    color: var(--btn-color2);
}

.promotion_content_wrapper.slot-cashback .terms_wrapper > h4 {
    background-color: var(--blue-color2);
}

.promotion_content_wrapper.slot-cashback .steps_wrapper .step ~ p, .promotion_content_wrapper.slot-cashback #contentText .header ~ p {
    border-color: var(--blue-color2);
    box-shadow: 0 5px 15px var(--btn-color2);
}

.promotion_content_wrapper.slot-cashback {
    background-image: url(../img/banners/Promotions-img/mermaid.webp);
}

/* --------------------------------------------------------------------------- GamePage ------------------------------------------------------------------------*/

.Container--GamePage .game-page {
    width: 90%;
    height: calc(100vh - 188px);
    display: grid;
    gap: 70px;
    row-gap: 20px;
    margin-top: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    transition: all .3s ease;
}

    .Container--GamePage.twoFrame .game-page .game-container, .Container--GamePage .game-page.single .game-container,
    .Container--GamePage .game-page .game-container .btn-real-game:not(.play-full) ~ .game-holder,
    body:not(.LoggedIn) .Container--GamePage .game-page .game-container .game-holder {
        height: 100% !important;
    }

    .Container--GamePage .game-page .game-container {
        margin: 0 auto;
        min-width: calc((100%/2) - 50px);
        min-height: calc((100%/2) - 50px);
        flex: 1;
        border: 2px solid var(--background-color-8) !important;
        box-shadow: 0 0 12px 1px var(--brand-color) !important;
    }

        .Container--GamePage .game-page .game-container .game-holder {
            width: 100% !important;
            height: calc(100% - 50px);
            color: var(--white-color);
            font-size: 15px;
            justify-content: center;
            align-items: center;
        }

[class^=game-container-type-], #sport_div_iframe {
    width: 100%;
    height: 100%;
}

.Container--GamePage .game-page .game-container .game-controls [class^='btn-'] {
    width: 35px;
    height: 35px;
    line-height: 42px;
    margin: 8px 6px;
    border: none;
    background-color: var(--background-color3);
    transition: background-color 0.5s ease-out;
    cursor: pointer;
}

    .Container--GamePage .game-page .game-container .game-controls [class^='btn-'] i,
    .gameLaunchFull .Game--Balance .btn-bonus i {
        color: var(--brand-color);
        font-size: 24px;
    }

.Container--GamePage .game-page .game-container .played-games {
    border-color: var(--brand-color);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--background-color4);
    z-index: 9;
}

.Container--GamePage .game-page .played-games span.arrow {
    background: var(--brand-color);
}

.Container--GamePage .game-page .game-container .game-controls [class^='btn-']:hover {
    background-color: var(--background-color9);
}

.game-page.played-games-open .slick-next, .game-page.played-games-open .slick-prev {
    top: 50px;
    z-index: 1;
}

.game-page.played-games-open .slick-next {
    right: 12px;
}

.game-page.played-games-open .slick-prev {
    left: 12px;
}

    .game-page.played-games-open .slick-prev:before {
        content: '\f104';
    }

.game-page.played-games-open .slick-next:before {
    content: '\f105';
}

.game-page.played-games-open .slick-prev:before, .game-page.played-games-open .slick-next:before {
    font-family: line awesome free;
    font-weight: bolder;
    color: var(--brand-color);
}

.promotion_content_wrapper .game-list-normal .product-card {
    max-width: 270px;
}

.identifier-menu-new:not(.loading):after, .identifier-menu-hot:not(.loading):after {
    content: 'NEW';
    width: 90px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 5px;
    left: -26px;
    background-color: var(--red-color);
    color: var(--white-color);
    transform: rotate(-45deg);
    letter-spacing: .6px;
}

.identifier-menu-hot:not(.loading):after {
    content: 'HOT';
}

.Iframe--full, .Iframe--full iframe {
    width: 100%;
    height: calc(100vh - 135px);
    margin: 0 auto;
    position: relative;
    color: var(--white-color);
}

#gameModal .gameImgContainer {
    text-align: center;
}

    #gameModal .gameImgContainer img {
        max-height: 50vh;
    }

.Container--GamePage .game-page .played-games .game-wrapper img {
    border-radius: 4px;
}

.Container--GamePage .game-page .game-container .btn-real-game {
    cursor: pointer;
}

/* game balance */

.Container--GamePage .Balance--items, .gameLaunchFull .Balance--items {
    width: 100%;
    height: 50px;
    color: var(--brand-color);
}

    .Container--GamePage .Balance--items > ul, .gameLaunchFull .Balance--items > ul {
        display: flex;
        height: 100%;
        max-width: 60vw;
        margin: auto;
        padding: 5px;
        gap: 15px;
        font-size: 14px;
        justify-content: center;
    }

        .Container--GamePage .Balance--items > ul > li, .gameLaunchFull .Balance--items > ul > li {
            padding: 0 10px;
            background-color: var(--background-color1);
            border-radius: 4px;
            position: relative;
        }

.tp-i_cash, .tp-i_bonus, .tp-i_total, .tp-i_award {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.Container--GamePage .game-page .game-container .game-controls {
    height: 100%;
    top: 0;
    /* right: -40px; */
}

    .Container--GamePage .game-page .game-container .game-controls .game-controls-btn {
        height: 150px;
        position: relative;
        top: -10px;
    }

.game-page .player-bonus-table, .gameLaunchFull .Game--Balance {
    color: var(--white-color);
}

    .game-page .player-bonus-table .btn-bonus, .gameLaunchFull .Game--Balance .btn-bonus {
        width: unset !important;
        height: unset !important;
        line-height: unset !important;
        padding: 4px 8px;
        margin: 0 !important;
        position: absolute;
        /* z-index: 5; */
        left: -3px;
        font-size: 15px;
        background: var(--border-gradient1);
        border-radius: 3px;
        /* border-top-right-radius: 8px;
    border-bottom-right-radius: 8px; */
        cursor: pointer;
    }

        .game-page .player-bonus-table .btn-bonus ~ .bonus-body-wrapper,
        body:not(.mobile) .gameLaunchFull .Game--Balance .player-bonus-table .btn-bonus ~ .bonus-body-wrapper {
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
            transform: translateX(-50px);
        }

body:not(.mobile) .gameLaunchFull .Game--Balance .player-bonus-table .btn-bonus ~ .bonus-body-wrapper {
    width: 100%;
    margin: 0;
    max-height: unset;
    position: absolute;
    right: 0;
    transform: translateY(50px);
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
}

.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row-title > div.bonus-title-row,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row-title {
    display: flex;
    /* min-width: 250px !important; */
    text-align: center;
}

.game-page .player-bonus-table .btn-bonus.open ~ .bonus-body-wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

body:not(.mobile) .gameLaunchFull .Game--Balance .player-bonus-table .btn-bonus.open ~ .bonus-body-wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

body:not(.mobile) .gameLaunchFull .Game--Balance .btn-bonus {
    margin-top: 0px !important;
    position: unset;
    display: inline-block;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8px;
}

.game-page .forfeit-btn, .game-page .disable-btn, .game-page .enable-btn,
.gameLaunchFull .Game--Balance .forfeit-btn, .gameLaunchFull .Game--Balance .disable-btn, .gameLaunchFull .Game--Balance .enable-btn {
    display: inline-block;
    padding: 4px 14px;
    transition: all 0.3s;
    background-color: var(--brand-color) !important;
}

.game-page .disable-btn, .gameLaunchFull .Game--Balance .disable-btn {
    background-color: var(--red-color) !important;
}

.game-page .enable-btn, .gameLaunchFull .Game--Balance .enable-btn {
    background-color: var(--green-color2) !important;
}

    .game-page .forfeit-btn:active, .game-page .disable-btn:active, .game-page .enable-btn:active {
        opacity: .5;
    }

.game-controls .bonus-body-row.item .row, .Game--Balance .bonus-body-row.item .row {
    padding: 8px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.Wrapper--Header.Header--secondary.gameLaunchFull .Container__Item {
    grid-template-areas:
        'logo gameSection langTime'
        'logo availabilityWrapper gameBalanceWrapper';
    grid-template-columns: 296px 1fr 1fr;
}

.Wrapper--Header.Header--secondary.gameLaunchFull .Game--Balance--Wrapper {
    height: 30px;
    grid-area: gameBalanceWrapper;
}

.gameLaunchFull .Balance--items {
    height: 30px;
    flex: 2;
}

.gameLaunchFull .player-bonus-table {
    flex: 1;
    min-width: 270px;
    position: relative;
}








.tp-i_cash:before, .tp-i_bonus:before, .tp-i_total:before, .tp-i_award:before, .tp-ic-gifts:before {
    font-size: 23px;
}

.game-page .player-bonus-table .bonus-title-row, .game-page .player-bonus-table .bonus-body-row-title {
    display: flex;
    min-width: 280px;
}

.game-page .player-bonus-table .bonus-body-row.item .bonus-body-row-title,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row.item .bonus-body-row-title {
    cursor: pointer;
}

    .game-page .player-bonus-table .bonus-body-row.item .bonus-body-row-title.open,
    .gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row.item .bonus-body-row-title.open {
        background-color: var(--background-color4);
        border-radius: 8px;
    }

.game-page .player-bonus-table .bonus-body-row.item.disabled > .bonus-body-row-title,
.gameLaunchFull .Game--Balance .bonus-body-row.item.disabled > .bonus-body-row-title {
    opacity: .5;
}

.game-page .player-bonus-table .bonus-body-wrapper > .bonus-body-row-title, .game-page .player-bonus-table .bonus-body-row.item,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-wrapper > .bonus-body-row-title,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row.item {
    border: 1px solid var(--text-color);
    border-radius: 4px;
}

.game-page .player-bonus-table .bonus-body-wrapper > .bonus-body-row-title,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-wrapper > .bonus-body-row-title {
    border-color: var(--brand-color);
    margin-bottom: 10px;
}

.gameLaunchFull .Game--Balance {
    display: flex;
    height: 100%;
}

.nmbrUpdate {
    color: #00ff83;
}

.nmbrDown {
    color: red;
}

.nmbrUp {
    color: #00ff83;
}

.game-page .player-bonus-table .bonus-title-row > div, .game-page .player-bonus-table .bonus-body-row-title > div,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-title-row > div,
.gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row-title > div {
    padding: 5px;
    flex: 1;
}

.game-page .player-bonus-table .bonus-body-wrapper, .gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-wrapper {
    max-height: calc(100% - 150px);
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    z-index: 4;
    right: 50px;
    background-color: var(--background-color3);
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.game-page .player-bonus-table .bonus-body-row.item, .gameLaunchFull .Game--Balance .player-bonus-table .bonus-body-row.item {
    margin-bottom: 10px;
}

.Container--GamePage ~ .Item {
    position: absolute;
    right: 2%;
    bottom: 50%;
}

.Wrapper--Single.play-section .Item i.active {
    color: var(--brand-color);
    box-shadow: 0 0 50px 1px #000 !important;
    font-size: 40px;
}

.Container--GamePage, .Container--GamePage .Container__Item {
    height: 100%;
    background: 0 0;
}

.tooltipShow {
    background-color: var(--text-color);
    color: var(--black-color);
    left: 40%;
}

.Container--GamePage .Balance--items > ul > li:hover .tooltipShow, .gameLaunchFull .Balance--items > ul > li:hover .tooltipShow,
.game-page .player-bonus-table .bonus-body-row-title > .bonus-current-amount:hover ~ .tooltipShow,
.gameLaunchFull .player-bonus-table .bonus-body-row-title > .bonus-current-amount:hover ~ .tooltipShow {
    display: block !important;
    z-index: 999;
}

.header-secondary.gameLaunchFull:hover {
    z-index: 999 !important;
}

.game-page .player-bonus-table .bonus-body-row-title > .bonus-current-amount ~ .tooltipShow,
.gameLaunchFull .player-bonus-table .bonus-body-row-title > .bonus-current-amount:hover ~ .tooltipShow {
    right: 0;
    left: unset;
}

.Container--GamePage.threeFrame .game-page .game-container, .Container--GamePage.fourFrame .game-page .game-container {
    max-width: calc((100% - 50px)/2);
    height: calc((100% - 20px )/2);
}

.Container--GamePage.threeFrame ~ .Item {
    right: 14%;
    bottom: 24%;
}

.Container--GamePage .game-page.played-games-open .game-container .game-holder {
    height: calc(100% - 50px) !important;
}

.Container--GamePage .game-page.played-games-open {
    height: calc(100vh - 275px) !important;
}

.Container--GamePage.threeFrame .game-page.played-games-open, .Container--GamePage.fourFrame .game-page.played-games-open {
    width: 80%;
}

#popupSearchItems .Item .info-container {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 5px 15px 5px 5px;
    top: 0;
    opacity: 0;
    text-align: center;
}

    #popupSearchItems .Item .info-container.open {
        background-color: var(--background-color4);
    }

    #popupSearchItems .Item .info-container .la.la-warning, #popupSearchItems .Item .info-container .la.la-times {
        font-size: 20px;
        color: var(--red-color);
        position: absolute;
        right: 3px;
        cursor: pointer;
    }

        #popupSearchItems .Item .info-container .la.la-warning:before, #popupSearchItems .Item .info-container .la.la-times:before {
            background-color: var(--white-color);
            border-radius: 3px;
        }

        #popupSearchItems .Item .info-container .la.la-times:before {
            background-color: transparent;
            color: var(--white-color);
        }

    #popupSearchItems .Item .info-container .info-text {
        max-width: calc(100% - 10px);
        max-height: calc(100% - 45px);
        overflow-y: auto;
        overflow-x: hidden;
    }

#popupSearchItems .Item .game-info .close-info {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: absolute;
    bottom: 5%;
}

body:not(.mobile) #popupSearchItems .Item:hover .play-now-btn a,
body:not(.mobile) #popupSearchItems .Item:hover .product-description, body:not(.mobile) #popupSearchItems .Item:hover .info-container {
    opacity: 1;
}

#betgames_div_iframe, #betgames_load, #sport_div_iframe #bt-inner-page {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.Wrapper--Header.header--responsive {
    display: none;
}
/* ---------------------------------------------------------------------------- game slidable ---------------------------------------------------------------------------*/

.Container__Item.game-list-slidable {
    max-width: 1500px;
    margin: auto;
}

.Container__Item.casino-game-list.row.casino-game-list-item .casino-categories {
    display: none;
}

    .Container__Item.casino-game-list.row.casino-game-list-item .casino-categories:nth-of-type(1) {
        display: block;
    }

.game-list-slidable .casino-game-list-item .lazyLoadSliderContainer.swiper {
    display: flex;
    position: relative;
    overflow: hidden;
}

.game-list-slidable .casino-game-list-item .product-wrapper.sliderWithLazyLoad {
    display: flex;
    flex-wrap: nowrap;
    width: initial;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.swiper-button-prev, .swiper-button-next {
    height: 100%;
    margin: 0;
    cursor: pointer;
}

    .swiper-button-prev.disabled, .swiper-button-next.disabled {
        display: none;
        opacity: .5;
    }

.casino-categories .name-cat-title {
    display: none;
}

/* -------------------------------------------------------------------------- Live Casino-------------------------------------------------------------------------*/

.content_wrapper.live-casino {
    grid-template-rows: 81px;
    grid-template-areas:
        'nav  nav  nav'
        'tag  game game'
        'load load load'
}

.content_wrapper .sub-game-nav {
    background-color: var(--even-color);
}

    .content_wrapper .sub-game-nav ul {
        float: none;
    }

    .content_wrapper .sub-game-nav li {
        display: block;
        padding: 0;
        text-align: start;
    }

        .content_wrapper .sub-game-nav li a {
            height: 100%;
            padding: 1px 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

[class^="identifier-tp-i_"]:before {
    display: inline-flex;
    font-family: 'template7' !important;
}

.casino-game-list-item .product-wrapper:not(.hero) {
    padding: 20px;
}

.content_wrapper .sub-game-nav-block {
    padding-right: 0;
}
/* ---------------------------------------------------------------------------- Error ---------------------------------------------------------------------------*/

.inner-content.error-page:before {
    content: '';
    height: 37vh;
    margin: auto;
    display: block;
    background: url(../img/banners/error-not-found.webp) 50% no-repeat;
    background-size: contain;
}

#sub-header, #sub-header a {
    margin: auto;
    text-align: center;
    color: var(--brand-color);
    text-decoration: none;
}

    #sub-header a {
        width: 141px;
        height: 56px;
        margin-top: 20px;
        display: flex;
        border-radius: 50px;
        border: 2px solid var(--brand-color);
        background-color: var(--brand-color);
        color: var(--white-color);
        justify-content: center;
        align-items: center;
    }

/* ---------------------------------------------------------------------------- Footer ---------------------------------------------------------------------------*/

.footer_group_container {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--background-color2);
}

.footer_providers_group, .footer_payments_group {
    max-width: 1590px;
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto auto 5px;
    gap: 15px;
    opacity: .5;
}

    .footer_providers_group div svg {
        width: 90px;
        height: 40px;
    }

    .footer_payments_group > div {
        max-width: 110px;
    }

.footer_info {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer_info #contentText {
        text-align: center;
    }

/* ----------------------------------------------------------------------------------------Cookie-------------------------------------------------------------------- */

.Wrapper--Single.Wrapper--CookiePolicy {
    width: 100%;
    height: 100vh;
    display: block !important;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 9999;
    font-size: 14px;
    overflow-x: hidden;
}

    .Wrapper--Single.Wrapper--CookiePolicy .cookies-policy#contentText {
        display: none;
        min-height: 100%;
        max-width: unset;
        padding: 15px;
        margin: 0 auto 86px;
        border-radius: 3px;
        background-color: var(--background-color1);
        line-height: 21px;
    }

    .Wrapper--Single.Wrapper--CookiePolicy .Container__Item {
        margin: 0;
        min-width: 100%;
        padding: 10px 10px 0;
    }

    .Wrapper--Single.Wrapper--CookiePolicy .Confirm--policy {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        max-height: 100px;
        z-index: 20;
        background-color: var(--background-color2);
        padding: 10px 40px;
        color: var(--white-color);
    }

        .Wrapper--Single.Wrapper--CookiePolicy .Confirm--policy .text-content {
            max-height: 300px;
            overflow-y: scroll;
        }

        .Wrapper--Single.Wrapper--CookiePolicy .Confirm--policy .button-group {
            display: flex;
            flex-direction: column;
        }

            .Wrapper--Single.Wrapper--CookiePolicy .Confirm--policy .button-group .Button--accept {
                margin: 0 0 5px 0;
            }

            .Wrapper--Single.Wrapper--CookiePolicy .Confirm--policy .button-group .Button--read-less {
                display: none;
            }

        .Wrapper--Single.Wrapper--CookiePolicy .Confirm--policy .button-group {
            margin-left: 5px;
        }

.button-group button {
    min-width: 107px;
}

.Wrapper--CookiePolicy[style^='overflow-y: scroll'] .Confirm--policy {
    width: calc(100% - 6px);
}

.Confirm--policy .Button--read-more, .Confirm--policy .Button--read-less {
    background-color: var(--btn-color);
}

.Wrapper--CookiePolicy .question_wrapper > div.las.la-angle-down {
    padding: 7px 15px;
    z-index: 2;
    cursor: pointer;
    color: var(--white-color) !important;
    font-size: 22px;
}

.Wrapper--CookiePolicy .question_wrapper > h4 {
    background-color: var(--grey-color2);
    color: var(--white-color);
    padding: 10px;
    border-radius: 3px;
}

.Wrapper--CookiePolicy .question_wrapper div ul {
    margin-left: 17px;
    list-style: initial;
}

/* ----------------------------------------------------------------------------------------------Freespin Games-------------------------------------------------------------- */

.freespin-gamescontainer {
    display: flex;
    flex-direction: column;
}

.freespin-games {
    display: flex;
    align-items: center;
    flex: 1;
    border-radius: 4px;
}

.freespin-game .Item {
    display: flex;
    align-items: center;
}

.no-wrap.table--scrollable__th.games-info-titles {
    padding: 0;
    display: flex;
}

.freespin-games > div:not(.freespin-game), .freespin-game .Item > *, .games-info-titles .table--scrollable__th {
    margin: 10px 15px;
    flex: 1;
    padding: 0;
    text-align: center;
}

.freespin-game, .no-wrap.table--scrollable__th.games-info-titles {
    flex: 2;
}

.games-box .play-now.btn {
    padding: 0 !important;
    background-color: unset !important;
    background-image: unset !important;
}

.games-box .btn a {
    display: block;
    width: 100%;
    padding: 8px 36px !important;
    color: var(--white-color) !important;
    background-color: var(--btn-color2);
    border-radius: 4px;
}

.games-box .dont-pl-btn {
    background: var(--grey-color) !important;
    cursor: not-allowed;
    padding: 8px 0px !important;
    margin: 10px 13px !important;
    color: var(--white-color) !important;
}

.freespin-game .Item .product-vendore-img, .games-info-titles .brand {
    min-width: 40px;
    max-width: 40px;
}

.games-info-titles .button, .player-bonus-type-2 .freespin-game .Item .play-now.btn {
    flex: .3;
}

body.mobile .freespin-games.expired {
    position: relative;
}

    body.mobile .freespin-games.expired > div {
        opacity: .5;
    }

    body.mobile .freespin-games.expired .expired {
        display: block;
        position: absolute;
        z-index: 5;
        background-color: var(--red-color);
        color: var(--white-color);
        padding: 2px 6px;
        border-radius: 12px;
        border-bottom-left-radius: 0;
        top: 10px;
        left: 10px;
        font-size: 12px;
    }

.freespin-games .Item img:not(.product-vendore-img), .games-info-titles .game {
    max-width: 100px;
    min-width: 100px;
}

.table--scrollable__tr > *:not(.games-info-titles) {
    padding: 10px 15px;
}

.player-bonus-type-2 .freespin-game, .player-bonus-type-2 .no-wrap.table--scrollable__th.games-info-titles {
    flex: 3;
}

    .player-bonus-type-2 .freespin-game .Item .product-name, .player-bonus-type-2 .games-info-titles .table--scrollable__th.name {
        max-width: 135px;
        min-width: 135px;
    }

body.mobile [class*='player-bonus-type']:not(.player-bonus-type-deposit) .bonus-body-row-title .bonus-placeholder {
    display: none;
}

/*#profilePopup .wallet-table.table--scrollable, #profilePopup .modal-dialog.history [class*=player-bonus-type] .scrollable .bonus-table {
    min-width: 1360px;
}*/

#profilePopup .row.ajax-result > .col-xs-12, #profilePopup .row.ajax-result > .col-md-12 {
    overflow-x: auto;
    margin-bottom: 10px;
}

.modal-dialog.modal--promotions-freespins .row.ajax-result > .col-xs-12 {
    overflow-x: auto;
    overflow-y: hidden;
}

/* --------------------------------------------------------------------------------Header searchSettings------------------------------------------------------------- */


#searchPopup {
    overflow-y: hidden;
}

    #searchPopup .modal-title-text {
        min-height: auto;
        border: none;
        font-weight: 600;
        line-height: unset;
    }

    
        #searchPopup .searchLoading{
            color: transparent !important;
            pointer-events: none;
        }

        #searchPopup .searchLoading:after {
            width: 50px !important;
            height: 50px;
            left: calc(50% - (50px / 2)) !important;
            top: calc(50% - (50px / 2)) !important;
        }

    #searchPopup .modal-header .logo-img {
        width: 88px;
        margin: 0;
    }

    #searchPopup .glyphicon-search {
        top: 22px;
        right: 22px;
        left: unset;
    }

    #searchPopup .search-wrapper {
        padding: 20px;
        display: flex;
        gap: 8px;
        background-color: var(--background-color2);
        border-radius: 4px;
        flex-direction: row-reverse;
    }

        #searchPopup .search-wrapper .ss-content:not(.ss-open) {
            display: none;
        }

        #searchPopup .search-wrapper .ss-content {
            width: calc(100vw - 155px);
            max-width: 1330px;
        }

    #searchPopup .game-category-selector-container .ss-main .ss-multi-selected {
        height: 36px !important;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    #searchPopup .search-wrapper .view-category-filter-form {
        flex: 1;
    }

.Wrapper--Header #searchSettings ~ a {
    color: var(--white-color);
    font-size: 18px;
}

    .Wrapper--Header #searchSettings ~ a i {
        transition: all 0.3s;
    }

.modal-dialog.search {
    width: 96vw;
    height: 90vh;
    max-width: 1433px;
    overflow: auto;
    padding-right: 6px;
}

    .modal-dialog.search.vendorListOpen {
        padding-right: 0px;
    }

    .modal-dialog.search .modal-content {
        height: 100%;
        min-height: 100%;
        padding: 0 10px 6px;
        background-color: var(--background-color3);
    }

        .modal-dialog.search .modal-content .modal-body {
            height: calc(100% - 72px);
            padding: 0px 15px 34px;
        }

    .modal-dialog.search.vendorListOpen .modal-content .modal-body, .modal-dialog.search.vendorListOpen .modal-content {
        height: auto;
    }

    .modal-dialog.search.vendorListOpen #popupSearchItems {
        min-height: 350px;
    }

    .modal-dialog.search .modal-content .modal-body > .form-group {
        height: 100%;
    }

#searchPopup .search-wrapper .ss-content {
    position: unset;
    height: 0px;
}

#searchPopup .search-wrapper .ss-list {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
    grid-auto-rows: minmax(50px, auto);
    max-height: unset;
    grid-gap: 10px;
    background-color: var(--background-color2);
}

#searchPopup .search-wrapper .ss-content.ss-open {
    height: auto;
    margin-top: 0px !important;
}

#popupSearchItems {
    max-height: calc(100% - 78px);
    padding: 20px 6px 0px 0px;
    display: grid;
    display: -webkit-grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-gap: 20px;
    color: var(--white-color);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

    #popupSearchItems.no-games-found-container {
        height: 100%;
    }

    #popupSearchItems .Item {
        position: relative;
        display: flex;
        justify-content: center;
        border-radius: 4px;
        aspect-ratio: 533/337;
    }

        #popupSearchItems .Item .product-image img {
            border-radius: 4px;
        }

        #popupSearchItems .Item .play-now-btn {
            width: 100%;
            height: 30px;
            padding: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            position: absolute;
            bottom: 5%;
            z-index: 5;
        }

    #popupSearchItems .play-now-btn a {
        flex: 1;
        height: 100%;
        padding: 0 !important;
        line-height: 28px;
        text-align: center;
        opacity: 0;
        cursor: pointer;
    }

    #popupSearchItems .Item .product-description {
        position: absolute;
        top: 30%;
        opacity: 0;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 700;
    }

    #popupSearchItems .demo {
        display: block;
    }

body:not(.mobile) #popupSearchItems .Item:hover {
    background-color: var(--black-color);
}

    body:not(.mobile) #popupSearchItems .Item:hover .product-image {
        opacity: .3;
        transition: opacity 0.3s linear;
    }

    body:not(.mobile) #popupSearchItems .Item:hover .play-now-btn a, body:not(.mobile) #popupSearchItems .Item:hover .product-description {
        opacity: 1;
    }

.modal-dialog.search .ss-content .ss-list .ss-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
    border-bottom: 2px solid var(--grey-color);
}

    .modal-dialog.search .ss-content .ss-list .ss-option:hover,
    .modal-dialog.search .ss-content .ss-list .ss-option.ss-highlighted,
    .modal-dialog.search .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
        background-color: unset !important;
        color: var(--brand-color) !important;
        border-bottom: 2px solid var(--brand-color);
    }

    .modal-dialog.search .ss-content .ss-list .ss-option:after {
        content: '';
        width: 22px;
        min-width: 22px;
        height: 22px;
        display: flex;
        justify-content: center;
        border: 1px solid var(--background-color6);
        box-shadow: 0 0px 3px var(--text-color2);
        border-radius: 4px;
    }

.modal-dialog.search .ss-content .ss-list .ss-option-selected:after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    border-color: var(--brand-color);
}

.modal-dialog.search .ss-content .ss-list .ss-option img {
    display: none;
}

#searchPopup #popupSearchItems #load-more-container {
    padding: 5px 15px 8px 15px;
    position: absolute;
    bottom: -25px;
    left: 0;
}

.modal-dialog.search:not(.vendorListOpen)::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.modal-dialog.search.vendorListOpen .modal-content #popupSearchItems #load-more-container {
    bottom: -8px !important;
}

#searchPopup #popupSearchItems #load-more-container #loadMoreBtn {
    padding: 11px 35px !important;
}

    #searchPopup #popupSearchItems #load-more-container #loadMoreBtn:hover {
        opacity: 1 !important;
    }

.Wrapper--Header.Header--primary > .Container__Item > .Item, .Wrapper--Header.Header--secondary .Container__Item > .Item {
    height: 30px;
    margin: 5px auto 0 20px;
    border-radius: 4px;
    background-color: var(--btn-color);
    min-width: 150px;
}

    .Wrapper--Header.Header--primary > .Container__Item > .Item #searchSettings ~ a,
    .Wrapper--Header.Header--secondary .Container__Item > .Item #searchSettings ~ a {
        padding: 0 8px;
    }

    .Wrapper--Header.Header--primary > .Container__Item > .Item:hover, .Wrapper--Header.Header--secondary .Container__Item > .Item:hover {
        opacity: .9;
    }

    .Wrapper--Header.Header--primary > .Container__Item > .Item a, .Wrapper--Header.Header--secondary .Container__Item > .Item a {
        display: flex;
        height: 100%;
        line-height: 30px;
    }

.Wrapper--Header #searchSettings ~ a i {
    display: flex;
    align-items: center;
}

    .Wrapper--Header #searchSettings ~ a i ~ span {
        font-family: sans-serif;
        font-weight: 100;
        font-size: 12px;
        margin-left: 10px;
    }

#searchPopup[aria-modal^='true'] ~ #loginPopup {
    background-color: rgba(0, 0, 0, .5);
}

.modal-dialog.search .modal-header {
    padding: 12px 15px;
    display: flex;
    align-items: end;
}

/* --------------------------------------------------------------------------------Coming Soon------------------------------------------------------------- */
.Container--full.content-page.comingsoon {
    background-image: radial-gradient( #494949 0%, #0f1010 56%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming_soon_wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cs-section {
    display: block;
    color: var(--white-color);
    font-size: 40px;
    display: flex;
    gap: 20px;
}

    .cs-section div {
        width: 150px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

        .cs-section div:before {
            width: 126px;
            height: 126px;
            position: absolute;
            content: '';
            border: 1px solid var(--white-color);
            border-radius: 8px;
            transform: rotate(45deg);
        }

    .cs-section .days:after {
        content: 'days';
    }

    .cs-section .hours:after {
        content: 'hours';
    }

    .cs-section .minutes:after {
        content: 'minutes';
    }

    .cs-section .seconds:after {
        content: 'seconds';
    }

    .cs-section div:after {
        width: 100%;
        left: 0;
        font-size: 12px;
        position: absolute;
        bottom: 25px;
    }

.coming-soon-header {
    text-align: center;
}

/* --------------------------------------------------------------------------------Game Availability------------------------------------------------------------- */

#chartdiv {
    width: 100%;
    height: 500px;
}

.availabilityPage, .gameAvailabilityPage.reg {
    padding-top: 50px;
    /* display: grid;
    grid-template-columns: auto;
    grid-template-rows: 40px 0 457px 144px;
    grid-template-areas:
        'title map'
        'vendor map';
        gap: 20px; */
}

/* .availabilityPage.reg, .gameAvailabilityPage.reg{
    grid-template-areas:
    'map map'
    'info info';
    grid-template-rows:457px 144px;
} */

.availabilityPageInfo {
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    color: var(--white-color);
}

    .availabilityPageInfo div {
        display: flex;
        /* align-items: center; */
        gap: 5px;
    }

        .availabilityPageInfo div:before {
            content: '';
            width: 10px;
            height: 10px;
            margin-top: 5px;
            background-color: #677935;
            display: block;
        }

        .availabilityPageInfo div.Grey:before {
            background-color: var(--grey-color);
        }

        .availabilityPageInfo div.Red:before {
            background-color: #a23e48;
        }

/* .availabilityPage > .Container__Item.nav-simple{
    grid-area: title;
} */

/* .availabilityPage > .sub-game-nav-block{
    grid-area: vendor;
} */

/* .availabilityPage > .Container__Item:last-of-type{
    grid-area: map;
}  */

/* .availabilityPage .nav-simple .game-nav, .availabilityPage  .game-nav-tab.selected{
    width: 100%;
    height: 41px;
    margin: 0;
    background-color: var(--brand-color);
    background-image: none;
    border-radius: 0;
    border: none;
    text-align: start;
}

.availabilityPage .sub-game-nav li.selected a{
    color: var(--brand-color);
}

.availabilityPage .nav-simple .game-nav ul li a{
    background-color: var(--brand-color);
    color: var(--background-color4);
    font-weight: bold;
    font-size: 18px;
}

.availabilityPage > .sub-game-nav-block .sub-game-nav.row{
    margin: 0;
    background-color: unset;
}

.availabilityPage > .sub-game-nav-block .sub-game-nav.row ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.availabilityPage > .sub-game-nav-block .sub-game-nav.row ul li{
    height: 41px;
    cursor: pointer;
    text-align: start;
    position: relative;
}

.availabilityPage  .openGamePopUp{
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--background-color7);
    right: -15px;
    top: 15px;
}

.availabilityPage  .openGamePopUp.active{
    border-color: var(--brand-color);
}

.availabilityPage > .sub-game-nav-block .sub-game-nav.row ul li a{
    font-size: 18px;
    text-transform: uppercase;
}

.availabilityPage > .sub-game-nav-block .sub-game-nav.row ul li:nth-child(odd) {
    background-color: rgba(255,255,255,0.1);
}

.availabilityPage > .sub-game-nav-block .sub-game-nav.row ul li:nth-child(even) {
    background-color: #1c1d1d;
}

.availabilityPage .Container__Item.game-list-normal, .availabilityPage  .Container__Item.hidden-loadmore,
.availabilityPage .Container__Item.game-nav.row .search-wrapper, .page-wrapper ~ .Container__Item.game-list-normal{
    display: none;
} */

.gameAvailability .vendors_list {
    position: absolute;
    width: 17%;
    max-height: 480px;
    overflow: auto;
    z-index: 3;
    color: var(--white-color);
    text-transform: uppercase;
}

    /* .gameAvailabilityPage.reg{
    width: ;
    display: flex;
    flex-direction: row;
} */

    .gameAvailability .vendors_list li {
        padding: 10px 15px;
        cursor: pointer;
    }

        .gameAvailability .vendors_list li:nth-child(odd) {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .gameAvailability .vendors_list li:nth-child(even) {
            background-color: #1c1d1d;
        }

    .gameAvailability .vendors_list .title {
        background-color: #fec40d !important;
        color: #121212;
        font-weight: bold;
        position: sticky;
        top: 0;
    }

.gameAvailabilityPage.reg #chartdiv {
    width: 83%;
    margin-left: 17%;
}

.gameAvailability .vendors_list li.selected, .gameAvailability .vendors_list li:not(.title):hover {
    color: var(--brand-color);
}

.page-wrapper ~ .Container__Item.game-list-normal {
    position: absolute;
    top: 30px;
    left: 16%;
    z-index: 999;
    max-width: 1200px;
    max-height: 90vh;
    background-color: var(--background-color2);
    box-shadow: 0 0 5px var(--background-color6);
    border-radius: 4px;
    overflow: auto;
}

    .page-wrapper ~ .Container__Item.game-list-normal .close {
        position: absolute;
        top: 2px;
        right: 12px;
        color: var(--brand-color);
        opacity: 1;
        text-shadow: 0 1px 0 var(--brand-color);
    }





.load-more-container {
    display: flex;
    justify-content: center;
}

    .load-more-container .gamePaging.selected {
        background-color: var(--brand-color);
        color: #424343;
        pointer-events: none;
    }

    .load-more-container .gamePaging, .load-more-container .prev, .load-more-container .next, .go-pagenumber, .go-button,
    .load-more-container .start, .load-more-container .end {
        display: inline-block;
        width: 40px !important;
        height: 40px;
        margin: 7px;
        padding: 0;
        border-radius: 3px;
        background: #424343;
        color: var(--brand-color);
        border: 1px solid transparent;
        font-size: 18px;
    }

        .load-more-container .gamePaging:focus-visible, .load-more-container .prev:focus-visible, .load-more-container .next:focus-visible,
        .go-pagenumber:focus-visible, .go-pagenumber ~ .go-button:focus-visible, .load-more-container .start:focus-visible,
        .load-more-container .end:focus-visible {
            outline: none
        }

body:not(.mobile) .load-more-container .gamePaging:hover, body:not(.mobile) .load-more-container .prev:hover,
body:not(.mobile) .load-more-container .next:hover, body:not(.mobile) .load-more-container .start:hover,
body:not(.mobile) .load-more-container .end:hover {
    border-color: var(--brand-color);
}

.load-more-container .next {
    background: var(--even-color) url(../img/design/icons/arrow-next.png) center center no-repeat;
    background-size: 6px;
}

.load-more-container .prev {
    background: var(--even-color) url('../img/design/icons/arrow-prev.png') center center no-repeat;
    background-size: 6px;
}

    .load-more-container .prev.disabled, .load-more-container .next.disabled,
    .load-more-container .start.disabled, .load-more-container .end.disabled {
        opacity: .5;
        pointer-events: none;
    }

.load-more-container .start {
    background: var(--even-color) url(../img/design/icons/arrow-start.png) center center no-repeat;
    background-size: 12px;
}

.load-more-container .end {
    background: var(--even-color) url(../img/design/icons/arrow-end.png) center center no-repeat;
    background-size: 12px;
}

.go-pagenumber {
    width: 60px !important;
    text-align: center;
    background-color: var(--border-color7);
    color: var(--even-color);
}

    .go-pagenumber::placeholder, .load-more-container .start, .load-more-container .end {
        font-size: 12px;
    }

    .go-pagenumber.error {
        border-color: var(--red-color);
        background-color: var(--red-color);
        color: var(--black-color);
    }

        .go-pagenumber.error::placeholder {
            color: var(--black-color);
        }

        .go-pagenumber.error ~ .go-button {
            border-color: var(--red-color);
            color: var(--red-color);
        }

/* ---------------------------------------------------------------------------- APPS ---------------------------------------------------------------------------*/

.mobile-apps-info .promo-banner {
    display: flex;
    justify-content: center;
}

    .mobile-apps-info .promo-banner .body .tabs {
        width: 1056px;
        max-width: 1056px;
        height: 644px;
        position: relative;
    }

.mobile-apps-info #promo-body-wraper .card {
    min-height: 600px;
    display: flex;
    color: var(--black-color);
    border-radius: 8px;
    background-color: var(--text-color);
    overflow: hidden;
}

    .mobile-apps-info #promo-body-wraper .card > div {
        flex: 1;
    }

    .mobile-apps-info #promo-body-wraper .card .front img {
        height: 100%;
        pointer-events: none;
    }

    .mobile-apps-info #promo-body-wraper .card .back {
        margin-top: 68px;
    }

        .mobile-apps-info #promo-body-wraper .card .back .content {
            padding: 32px 40px;
        }

            .mobile-apps-info #promo-body-wraper .card .back .content h1 {
                margin: 0;
                padding: 0;
                display: flex;
                font-size: 30px;
                gap: 12px;
                font-weight: bolder;
                align-items: center;
            }

                .mobile-apps-info #promo-body-wraper .card .back .content h1 img {
                    margin: 5px 0;
                }

.app-view__description {
    margin-top: 12px;
    font-size: 16px;
}

.app-download-instructions {
    margin-top: 32px;
}

    .app-download-instructions ol {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        counter-reset: li;
        list-style: none;
    }

        .app-download-instructions ol li:before {
            margin-right: 20px;
            font-size: 30px;
            color: var(--brand-color);
            content: counter(li);
            counter-increment: li;
        }

        .app-download-instructions ol li {
            display: flex;
            align-items: flex-start;
            font-size: 16px;
        }

            .app-download-instructions ol li:nth-child(n+2) {
                margin-top: 20px;
            }

.app-view__qr {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.app-view__qr-picture-section {
    width: 108px;
    height: 108px;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
}

.app-view__qr-description {
    flex-grow: 1;
    font-size: 16px;
    color: #5e6a78;
}

.Container--full .read-more {
    display: none;
}

.mobile-apps-info ul, .apps-install_Wrapper__Mobile ul {
    width: 100%;
    max-width: 450px;
    height: 36px;
    padding: 4px !important;
    display: flex;
    gap: 0 !important;
    position: absolute;
    border-radius: 4px;
    right: 50px;
    top: 5%;
    cursor: pointer;
    background: rgba(223,228,235,.64);
}

    .mobile-apps-info ul li, .mobile-apps-os ul li {
        height: 100% !important;
        margin: 0;
        padding: 4px 12px;
        display: flex;
        justify-content: center;
        flex: 1 1 0;
        flex-grow: 1;
        font-size: 13px;
        font-weight: 500;
        line-height: 16px;
        -webkit-tap-highlight-color: transparent;
        align-items: center;
        color: #5e6a78;
        outline: none;
        text-decoration: none;
        user-select: none;
    }

        .mobile-apps-info ul li.active, .mobile-apps-os ul li.active {
            border-radius: 4px;
            background: var(--selected-color);
            box-shadow: 0 7px 14px rgba(217,221,227,.4);
            border: none !important;
            color: var(--black-color) !important;
        }

.app-view__requirements {
    margin-top: 24px;
    color: #5e6a78;
}

.Container--full.container_info {
    color: var(--white-color);
}

.tab-body-inner .scene .card .front .card-date, .tab-body-inner .scene .close-info, .tab-body-inner .scene .card-info, .tab-body-inner .scene .back .card-title {
    display: none;
}

/* -------------------------------------------------------------------------------------Toast ---------------------------------------------------------------------------- */

.toast {
    margin: auto;
    width: 100%;
    max-width: 100%;
    font-size: 1.2rem;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    border-radius: 0.25rem;
}

.toast-container {
    position: absolute !important;
    top: 20px;
    right: 118px;
    padding: 1rem !important;
    z-index: 5;
    width: max-content;
    max-width: 100%;
    pointer-events: none;
    z-index: 9999;
}

.toast-body {
    background-color: var(--background-color-toast-info);
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

    .toast-body.Info {
        background-color: var(--background-color-toast-info);
    }

    .toast-body.Success {
        background-color: var(--background-color-toast-success);
    }

    .toast-body.Yield {
        background-color: var(--background-color-toast-yield);
    }

    .toast-body.Warning {
        background-color: var(--background-color-toast-warning);
    }

/* ------------------ notif limit message css --------------------*/

.notify-limit {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 55555;
    background: #1d211f4a;
    display: flex;
    justify-content: center;
    align-items: center
}

.notify-message-group {
    width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background: var(--background-color6);
    border-radius: 20px;
    padding: 15px;
}

    .notify-message-group button {
        width: 100%;
    }

    .notify-message-group .notify-message {
        font-weight: 700;
        font-size: x-large;
        color: #000;
    }


/* realityCheck */
.REALITY_CHECK .popup-content {
    padding: 15px;
    display: flex;
    min-width: 390px;
    min-height: 330px;
    flex-direction: column;
    background: var(--background-color6);
    border-radius: 12px;
    color: #000;
}

    .REALITY_CHECK .popup-content button {
        order: 5;
        margin: 0 0 0 auto;
    }

    .REALITY_CHECK .popup-content .eye-icon {
        top: 40px;
    }

body.LoggedIn.notify {
    overflow: hidden;
}

.LoggedIn:has(.notify-limit) .fade.show {
    visibility: hidden;
    opacity: 0
}

.REALITY_CHECK .popup-content #barcode {
    width: 180px;
    height: 180px;
}

.REALITY_CHECK .popup-content .form-group {
    display: flex;
    flex-direction: column;
}

.REALITY_CHECK .popup-content .section--captcha {
    position: relative;
}

/* ---- Deposit  ----*/
.mobile #profilePopup .modal-sub-body-inner .transaction-block .col-md-12 {
    width: 100%;
}

.mobile .modal-dialog .transaction-row {
    display: flex;
    background: transparent;
    border: unset;
    width: 100%;
    padding-left: 35%;
    position: relative;
}

.mobile #profilePopup .modal-sub-body-inner .transaction-block,
.mobile #paymentsystem .bonus-body-row-title {
    position: relative;
    background-color: #2a2a2a;
    border: 1px solid #ffc300;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
}

    .mobile #profilePopup .modal-sub-body-inner .transaction-block .transaction-block-head > div,
    .mobile #profilePopup .modal-sub-body-inner .transaction-block .transaction-block-main > div:not(.trans-logo, .trans-title) {
        width: 100%;
        font-size: 11px;
    }

    .mobile #profilePopup .modal-sub-body-inner .transaction-block .transaction-block-head,
    .mobile #profilePopup .modal-sub-body-inner .transaction-block .transaction-block-main,
    .mobile #paymentsystem .bonus-body-row-title .bonus-content-header,
    .mobile #paymentsystem .bonus-body-row-title .bonus-content-main {
        width: 100%;
        display: flex;
        align-items: start;
        row-gap: 5px;
        padding: 10px 0;
        background-color: #2a2a2a;
        color: #ffffff;
        flex-direction: column;
        border: unset;
    }

        .mobile #profilePopup .modal-sub-body-inner .transaction-block .transaction-block-main > div:not(.trans-title),
        .mobile #paymentsystem .bonus-body-row-title .bonus-content-main > div:not(.trans-title) {
            font-weight: bold;
            color: #ffc300;
        }

.mobile #profilePopup .transaction-block .transaction-block-main .trans-title {
    right: 70%;
    position: absolute;
    left: 0;
    top: 90%;
    transform: translate(0%, -50%);
}

.mobile #profilePopup .transaction-block .transaction-block-main .trans-logo {
    position: absolute;
    left: 15px;
    top: 40%;
    transform: translate(0%, -50%);
    width: 90px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ffc300;
}


.mobile .player-bonus-type-deposit {
    min-width: auto;
    overflow: hidden;
}

.grid-info-section {
    margin-bottom: 20px;
}

    .grid-info-section .trans-title {
        width: 100%;
        text-align: left;
        font-size: 1.8em;
        margin-bottom: 5px;
        color: #ffc300;
        padding: 0 10px;
    }

    .grid-info-section .info-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #444444;
        font-size: 15px;
    }

        .grid-info-section .info-row .label {
            color: #000;
        }

        .grid-info-section .info-row > div {
            color: #ffc300;
            font-weight: bold;
        }

.mobile [id^=transaction-details].shown {
    border-top: 2px solid #ffc300;
    border-bottom: 2px solid #ffc300;
    border-right: unset;
    border-left: unset;
    margin: 15px 0;
    padding: 15px;
}

.mobile #paymentsystem .bonus-body-row-title {
    justify-content: space-between;
    padding: 15px !important;
    position: relative;
    border-top: 2px solid #ffc300;
    border-bottom: 2px solid #ffc300;
    border-right: unset;
    border-left: unset;
    margin: 5px 0;
}

    .mobile #paymentsystem .bonus-body-row-title .bonus-content-header > div {
        flex: unset;
        padding: 0;
    }

        .mobile #paymentsystem .bonus-body-row-title .bonus-content-header > div:last-child {
            font-size: 8px;
            line-height: 1rem;
            padding: 10px !important;
            position: relative;
            height: auto;
        }

.mobile #profilePopup [id^='bonus-content-'] .os-content {
    color: #fff;
}

.mobile .bonus-button-wrapper,
.mobile #paymentsystem .bonus-body-row-title .bonus-content-header > div:last-child {
    margin: 10px 0;
}

.mobile #paymentsystem > div:nth-child(2) > div:nth-child(1) {
    overflow: hidden;
}

.mobile .bonus-body-fixed-header,
.mobile .fixed-transaction-block-head,
.mobile .bonus-col-title-wrapper.fixed-bonus-header,
.mobile .fixed-freespin-header {
    display: none;
}

.mobile .freespin-games .table--scrollable__tr {
    position: relative;
    display: flex;
    width: auto;
    min-width: auto !important;
    background-color: transparent;
    flex-direction: column;
    align-items: flex-start;
}

    .mobile .freespin-games .table--scrollable__tr .no-wrap.table--scrollable__th.games-info-titles {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

body.mobile .freespin-games > .freespin-games-main:not(.freespin-game) {
    position: relative;
    display: flex;
    width: auto;
    min-width: auto !important;
    background-color: transparent;
    flex-direction: column;
    align-items: center;
    flex: unset;
    margin: 0 !important;
}

.mobile .games-box .table--scrollable__tr {
    display: none;
}

.mobile #profilePopup [id^=bonus-content-] .os-content:has(.games-box) {
    color: #000;
    width: 100%;
    min-width: 550px;
    overflow-y: hidden;
    overflow-x: scroll;
}

body.mobile .modal-dialog.deposit .modal-content,
body.mobile .modal-dialog.withdrawal .modal-content {
    overflow-x: hidden;
}

.mobile .games-box .fixed-freespin-header,
.mobile .freespin-games .freespin-games-main {
    display: grid !important;
    grid-template-columns: 3fr 1fr 2fr 2fr;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 12px;
    min-width: 100% !important;
}

body.mobile .freespin-gamescontainer {
    min-width: auto !important;
}

body.mobile #profilePopup .modal-dialog.withdrawal .modal-sub-body,
body.mobile #profilePopup .modal-dialog.deposit .modal-sub-body {
    overflow-x: hidden !important;
}

.bonus-body-row-title.not-allowed, #profilePopup [id^='bonus-content-'].not-allowed .os-content {
    opacity: 0.3;
    background: #000000;
    color: #fff !important;
}

#profilePopup #paymentsystem .bonus-body-row-title:not(.not-allowed) {
    border: 1px solid #3affa9;
}

#popup-blocked-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    background: var(--background-color6);
    color: #000;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    font-family: sans-serif;
    box-shadow: 0 4px 20px rgb(92 147 64);
    max-width: max-content;
    max-height: max-content;
    margin: auto;
}

#popup-blocked-modal p {
    line-height: 25px;
}

#popup-blocked-modal h3 {
    font-size: 18px;
}

* {
    box-sizing: border-box;
}

body#telegram-auth-body, html:has(#telegram-auth-body) {
    width: 100%;
    height: 100%;
    margin: 0;
}

#telegram-auth::before {
    content: "";
    display: block;
    position: absolute;
    width: 320px;
    height: 320px;
    top: 0;
    left: 50%;
    opacity: 40%;
    border-radius: 100%;
    transform: translateX(-50%);
    background: var(--blue-violete);
    background-position: 50% 50%;
    filter: blur(75px);
    z-index: 0;
}

#telegram-auth {
    padding: 48px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.telegram-auth__head {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-position: center bottom;
    background-size: cover;
    min-height: 260px;
    position: relative;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--green-color2) !important;
    border-radius: 20px;
}

.telegram-auth__title {
    margin-block: 0 12px;
    font-size: 56px;
    line-height: 68px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
    z-index: 2;
}

.telegram-auth__subtitle {
    margin: 0 auto;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    z-index: 2;
}

#telegram-auth__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 48px 16px;
}

.telegram-auth__text {
    margin-block: 0 12px;
    font-size: 50px;
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 12px;
    color: var(--brand-color);
    text-align: center;
}

.telegram-auth__description {
    font-size: 20px;
    line-height: 30px;
    max-width: 460px;
    margin-bottom: 35px;
    color: var(--brand-color);
    text-align: center;
}

.social-network  .social-continue {
    padding: 8px 15px !important;
    display: flex;
    width: auto;
    font-size: 14px;
    background: transparent;
    border: 2px solid var(--green-color2);
}

.social-continue span{
    color: var(--green-color2) !important;
}