@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    font-size: 15px;
    margin: 0 auto;
    color: #ffffff;
    background-color: #0e131b;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
{
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

select:focus-visible {
    outline: unset;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
}

    a:hover,
    a:focus {
        text-decoration: none;
        color: unset;
    }

img {
    max-width: 100%;
}

ul,
ol,
li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
    color: #fff;
    width: 100%;
}

button:focus {
    outline: unset
}

.container {
    max-width: 1040px;
}

body.body_main_wrap {
    padding-left: 0;
    padding-top: 64px;
    transition: padding .1s ease-in-out;
}

    body.body_main_wrap.body_main_container {
        padding-left: 232px;
        transition: padding .1s ease-in-out;
    }

header {
    background-color: #161f2c;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
    z-index: 104;
}

    header:after {
        /* content: ''; */
        background-image: url(../images/header/shape.png);
        position: absolute;
        width: 304px;
        height: 78px;
        left: 0;
        top: 0;
        background-size: contain;
        pointer-events: none;
        background-repeat: no-repeat;
    }

.header_left {
    display: flex;
    align-items: center;
    z-index: 1;
}

.logo_desktop {
    display: flex;
    align-items: center;
    /* grid-gap: 15px; */
}

.logo img {
    width: 25%;
}

.header_hamburger {
    background-color: transparent;
    border: none;
}

.ham_close {
    display: block;
}

.ham_open {
    display: none;
}

.header_hamburger.close_menu .ham_close {
    display: none;
}

.header_hamburger.close_menu .ham_open {
    display: block;
}

.login_btn_container {
    display: flex;
    align-items: center;
    grid-gap: 0px;
}

.btn_container {
    border-radius: 10px;
    font-size: 12px;
    padding: 9px 12px;
    color: #fff;
    font-weight: 600;
    border: none;
    margin: 0 3px;
}

.btn_log {
    background-color: #2283f6;
}

.btn_reg {
    background-color: #ed1d49;
    white-space: nowrap;
}

.header_right {
    display: flex;
    align-items: center;
}

.chat_btn {
    background-color: transparent;
    border: none;
    margin-left: 20px;
}

/*index*/
.main_wrapper {
}

.intro {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 308px;
}

.intro_inner {
    margin-top: 0;
    z-index: 1;
    max-width: 550px;
}

.intro_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

    .intro_title span {
        color: #ed1d49;
    }

.intro_subtitle {
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    color: #55657e;
    margin-bottom: 23px;
}

.intro_actions {
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

.btn_action {
    border-radius: 14px;
    font-size: 18px;
    padding: 20px;
    border: none;
    font-weight: 500;
}

.btn_action_left {
    background-color: #ed1d49;
    color: #fff;
}

.btn_action_right {
    background-color: #2a3546;
    color: #93acd3;
}

.btn_action_left:hover {
    background-color: #eb3b60;
}

.btn_action_right:hover {
    background-color: #42526a;
}

.intro_img {
    position: absolute;
    right: -118px;
    top: 0;
    bottom: 0;
    height: 100%;
    cursor: pointer;
}

.wrapper_inner {
    overflow: hidden;
}

.intro_promo {
    /* background-color: #171f2b; */
    /* display: grid; */
    grid-template-columns: repeat(3, 1fr);
    border-radius: 10px;
    padding: 10px 0;
    grid-gap: 10px 30px;
    margin-top: 20px;
}

.intro_promo_inn {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    /* background-color: #202a39; */
}

    .intro_promo_inn img {
        border-radius: 5px;
        width: 100%;
    }

    .intro_promo_inn span {
        position: absolute;
        font-weight: 700;
        font-size: 24px;
        line-height: 1.2;
        margin-left: 20px;
    }

/*leftmenu*/
.left_menu_container_wrap {
    position: fixed;
    z-index: 103;
    left: 0;
    top: 0;
    bottom: 0;
    width: 232px;
    background-color: #111923;
    padding-top: 75px;
    transition: transform 0.01s ease-in-out;
    transform: translateX(0%);
}

    .left_menu_container_wrap.close_menu_container {
        transform: translateX(-100%);
    }

.left_menu_container {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.left_menu_container_inner {
    padding: 15px;
}

.left_container_bonus {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin-bottom: 20px;
}

.left_container_bonus_box {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

.left_container_bonus_txt {
    position: absolute;
    flex-direction: column;
    display: flex;
    padding: 10px;
}

.left_container_bonus_txt_top {
    font-weight: 700;
}

.left_container_bonus_txt_btm {
    font-weight: 400;
    font-size: 11px;
}

.accordion_left_container {
    width: 100%;
    max-width: 584px;
    margin: 30px auto 20px;
    background: #fff0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #93acd3;
    padding-bottom: 13px;
}

    .accordion_left_container .link {
        cursor: pointer;
        display: flex;
        padding: 15px 15px 15px 15px;
        color: #93acd3;
        font-size: 14px;
        font-weight: 700;
        border-bottom: 1px solid #CCC;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        align-items: center;
    }

        .accordion_left_container .link img {
            width: 25px;
            margin-right: 10px;
        }

    .accordion_left_container li:last-child .link {
        border-bottom: 0
    }

    .accordion_left_container li .submenu li:last-child a {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .accordion_left_container li i {
        position: absolute;
        top: 22px;
        left: 12px;
        font-size: 18px;
        color: #93acd3;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease
    }

        .accordion_left_container li i.fa-chevron-down {
            right: 12px;
            left: auto;
            font-size: 16px
        }

    .accordion_left_container li.open .link {
        color: #93acd3;
        background-color: #202a39;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .accordion_left_container li.open i {
        color: #93acd3;
    }

        .accordion_left_container li.open i.fa-chevron-down {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg)
        }

.submenu {
    display: none;
    background: #202a39;
    font-size: 14px;
    list-style-type: none;
    padding: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .submenu li {
        /* border-bottom: 1px solid #4b4a5e;
     */
        border-radius: 20px;
    }

    .submenu a {
        display: block;
        text-decoration: none;
        color: #d9d9d9;
        padding: 7px;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        text-align: center;
    }

        .submenu a:hover {
            background: #2a3b50;
            color: #FFF
        }

.side_menu_content {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #93acd3;
    padding-bottom: 10px;
    padding-top: 10px;
}

.side_menu_content_btm {
    border-bottom: unset;
    padding-bottom: 0;
}

.side_menu_content_top {
    padding-top: 5px;
}

    .side_menu_content_top li,
    .side_menu_content_btm li {
        margin-bottom: 10px;
    }

.side_menu_content li a {
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 10px;
    color: #93acd3;
    font-weight: 500;
    text-transform: uppercase;
}

    .side_menu_content li a:hover {
        color: #fff;
    }

    .side_menu_content li a img {
        width: 21px;
        margin-right: 10px;
    }

.chat_ser {
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #ffffff;
    margin: 9px 0 10px 0;
    background-color: #1c2532;
    border-radius: 10px;
}

    .chat_ser:hover {
        color: #fff;
    }

.chat_ser_custom {
    border: 1px solid #154fa0;
    background-color: transparent;
}

.chat_ser img {
    width: 16px;
    margin-right: 11px;
}

}

.btn_dropup_lang {
    width: 100%;
}

    .btn_dropup_lang button {
        background-color: #1c2532;
        border: none;
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding-left: 19px;
        border: 1px solid #ffffff47;
        min-width: 150px;
        margin-right: 10px;
    }

        .btn_dropup_lang button img {
            margin-right: 12px;
        }

.dropup.btn_dropup_lang .dropdown-toggle::after {
    right: 9px;
    position: absolute;
    border-bottom: 0;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.btn_dropup_lang.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: unset;
}

.btn_dropup_lang .dropdown-menu.show {
    display: block;
    width: 100%;
    background-color: #1c2532;
}

.btn_dropup_lang .dropdown-menu a {
    color: #fff;
    padding: 5px 17px;
    display: block;
}

    .btn_dropup_lang .dropdown-menu a:hover {
        background-color: #36383e;
    }

.btn_dropup_lang .btn-secondary:focus {
    box-shadow: unset;
}

.sidebar_contact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    margin: 20px 0;
    grid-gap: 10px;
}

    .sidebar_contact a {
        display: block;
    }

        .sidebar_contact a i {
            color: #55657e;
            font-size: 19px;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.filter-button {
    cursor: pointer;
    padding: 4px 11px;
    background-color: #171f2b;
    border: none;
    color: #93acd3;
    font-weight: 500;
    border-radius: 10px;
    font-size: 13px;
}

    .filter-button.active,
    .filter-button:hover {
        background-color: #2283f6;
        color: #fff;
    }

    .filter-button img {
        width: 23px;
        margin-right: 5px;
    }

.tabs_product {
    margin: 20px 0;
}

.tab_wrapper {
    display: flex;
    align-items: center;
    background-color: #171f2b;
    border-radius: 10px;
    padding: 10px;
    justify-content: space-between;
}

.tab_wrapper_inn {
}

.searchinput {
    background-color: #171f2b;
    border: 1px solid #475c72;
    border-radius: 10px;
    padding: 4px 10px;
}

.hotgame-main-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.top_icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
}

.arrow_slider {
    display: flex;
    grid-gap: 6px;
    margin: 10px 0;
}

    .arrow_slider .slide-arrow {
        cursor: pointer;
        background-color: #17202b;
        padding: 6px 13px;
        border-radius: 8px;
        color: #93acd3;
        display: block;
    }

.slider_title {
    color: #93acd3;
    display: flex;
    align-items: center;
    font-weight: 600;
}

    .slider_title i {
        margin-right: 10px;
    }

.arrow_slider_wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.view_btn {
    color: #93acd3;
    display: flex;
    align-items: center;
    font-weight: 600;
    background-color: #171f2b;
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 12px;
}

.hotgame-main-img_pro {
    background-color: #1c2532;
    border-radius: 10px;
    text-align: center;
}

.daily_icon {
    width: 25px;
    margin-right: 10px;
}

.tournament_sec {
    margin: 15px 0;
}

.daily_wrap {
    /* background-color: #1c2532;
    */
    padding: 0;
}

.daily_wrap_img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: -10px;
    position: relative;
}

.daily_table_wrap {
    background-color: #1c2532;
    padding: 20px 10px 10px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.battle_card_title {
    font-size: 20px;
    max-height: 52px;
    max-width: 160px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 17px;
}

.daily_wrap_img_inn {
    padding: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.battle_card_timer {
    padding: 9px 15px;
    width: 160px;
    height: 51px;
    background: hsla(0, 0%, 100%, .18);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.battle_card_label {
    position: absolute;
    left: -1px;
    top: -2px;
    transform: translateY(-50%);
    font-weight: 800;
    font-size: 9px;
    line-height: 120%;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #000;
    opacity: .9;
    background: #fed700;
    border-radius: 8px 8px 8px 0;
    padding: 2px 6px;
    white-space: nowrap;
}

.battle_card_timer_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.battle_card_block_value {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -.02em;
    font-feature-settings: "tnum" on, "lnum" on;
    color: #fff;
}

.battle_card_block_name {
    color: #ffffffb8;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
}

.battle_card_timer_dot {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.02em;
    font-feature-settings: "tnum" on, "lnum" on;
    color: #fff;
    align-self: flex-start;
}

.battle_card_prize {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: #fed700;
    box-shadow: 0 6.88237px 13.1093px -6.88237px rgba(0, 0, 0, .08);
    border-radius: 8px;
    font-weight: 800;
    color: #000;
    height: 36px;
    width: fit-content;
}

.battle_card_prize_title {
    font-size: 9px;
    line-height: 120%;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .9;
    width: 32px;
    margin-right: 6px;
    white-space: pre-line;
    flex-shrink: 0;
}

.battle_card_prize_amount {
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -.02em;
    font-feature-settings: "tnum" on, "lnum" on;
    font-weight: 800;
}

.daily_table_wrap table thead tr {
    color: #55657e;
    font-size: 11px;
    font-weight: 600;
}

.daily_table_wrap table img {
    width: 27px;
}

.table_user {
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
}

.table_user_content {
    display: flex;
    flex-direction: column;
}

    .table_user_content span {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -.02em;
        color: #93acd3;
        font-weight: 500;
    }

        .table_user_content span.name {
            color: #fff;
        }

.daily_table_wrap table tr th {
    padding: 5px;
}

.daily_table_wrap table tr {
    border-bottom: 1px solid #93acd3;
}

.daily_view {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px 5px 5px;
}

    .daily_view a {
        color: #2177dd;
        font-weight: 600;
    }

.desktop_footer {
    margin-top: 20px;
    background-color: #161f2c;
    padding: 40px 10px 10px 10px;
}

.footer_grid {
    display: grid;
    grid-gap: 15px;
    gap: 15px;
    grid-template-columns: auto 500px;
    align-items: flex-start;
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(85, 101, 126, .15);
}

.footer_submenu p {
    color: #93acd3;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 16px;
    display: block;
    font-size: 11px;
}

.footer_submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer_submenu ul a {
        padding: 0;
        border: none;
        background-color: transparent;
        display: block;
        width: fit-content;
        text-align: left;
        color: #55657e;
        font-weight: 600;
        text-decoration: none;
        transition: color .3s;
        font-size: 11px;
        line-height: 2.2;
        cursor: pointer;
    }

        .footer_submenu ul a:hover {
            color: #93acd3;
        }

.footer_submenu_lic {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 8px;
}

    .footer_submenu_lic img {
        width: 35px;
        margin-right: 5px;
    }

.footer_submenu_con {
    color: #55657e;
    font-size: 11px;
    line-height: 1.5;
}

.footer_lic_logo {
    padding-bottom: 20px;
    margin-bottom: 18px;
    /* border-bottom: 1px solid rgba(85,101,126,.15); */
    /* display: flex; */
    justify-content: center;
}

.footer_lic_logo_wrap {
    text-align: center;
}

.footer_social_logo {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(85, 101, 126, .15);
    display: flex;
    justify-content: left;
    grid-gap: 7px;
}

    .footer_social_logo img {
        width: 28px;
    }

.footer_copyright {
    font-size: 11px;
    color: #55657e;
    font-weight: 600;
}

/*mobilefooter*/
.mobile_footer {
    display: none;
    margin-top: 20px;
    background-color: #161f2c;
    padding: 18px 10px 60px 10px;
}

.footer-card p {
    color: #93acd3;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 16px;
    display: block;
    font-size: 11px;
}

.footer-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button.btn-footer::after {
    content: '\f054';
    font-size: 10px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 10px;
    transform: rotate(270deg);
    transition: all 0.3s;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}

button.btn-footer.collapsed::after {
    content: '\f054';
    transform: rotate(90deg);
    transition: all 0.3s;
    font-weight: 900;
}

button.btn-footer {
    background: #161f2c;
    width: 100%;
    text-align: left;
    font-size: 11px;
    padding: 6px 0;
    color: #93acd3;
    border: none;
    border-radius: 5px;
    position: relative;
    font-weight: 500;
}

    button.btn-footer.collapsed {
        background: #161f2c;
        color: #93acd3;
    }

.footer-card ul li a {
    padding: 0;
    border: none;
    background-color: transparent;
    display: block;
    width: 100%;
    text-align: left;
    color: #55657e;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
    font-size: 11px;
    line-height: 2.2;
    cursor: pointer;
}

.mobile_footer .footer_submenu_lic {
    justify-content: center;
}

.mobile_footer .footer_lic_logo img {
    margin: 0 auto;
}

.mobile_footer .footer_lic_logo_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
    justify-content: center;
    align-items: center;
}

.mobile_footer .footer_social_logo {
    display: flex;
    flex-flow: wrap;
}

.footer-menu {
    position: fixed;
    bottom: 0px;
    background: #161f2c;
    border-top: 1px solid #93acd33b;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-in ul {
    display: flex;
    padding: 5px 0px;
    justify-content: center;
}

    .footer-in ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: #93acd3;
        font-weight: 600;
    }

        .footer-in ul li a img {
            width: 30%;
        }

.footer-menu {
    display: none;
}

.footer-in ul li a:not([href]):not([tabindex]) {
    color: #93acd3;
    text-decoration: none;
}

.modalbackdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: black;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modal-transition {
    transition: all 0.4s ease;
}

.tab_wrapper_inn_mobile {
}

.mobile_dropdown {
    background-color: #171f2b;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    border-radius: 10px;
    display: none;
    position: relative;
}

    .mobile_dropdown img {
        width: 33px;
    }

.tab_wrapper_inn_mobile ul {
    padding: 10px;
    /* background-color: #303a48; */
    border-radius: 10px;
}

    .tab_wrapper_inn_mobile ul li .filter-button {
        width: 100%;
        text-align: left;
        padding: 10px;
        background-color: #303a48;
    }

        .tab_wrapper_inn_mobile ul li .filter-button.active {
            background-color: #2283f6;
        }

.mobile_dropdown:after {
    content: '\f078';
    font-size: 13px;
    line-height: 1;
    position: absolute;
    right: 17px;
    /* top: 10px;
     */
    transition: all 0.3s;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    color: #93acb6;
}

/*modal*/
.share_modal .modal-body {
    background-color: #161f2c;
    padding: 0;
    border-radius: 17px;
}

.share_modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: #007bff;
    text-shadow: 0 1px 0 #007bff;
    opacity: .5;
    top: 0;
    position: absolute;
    right: 8px;
}

.modal_body_share {
    display: flex;
}

.share_modal .modal-dialog {
    max-width: 700px;
    /* margin: 1.75rem auto;
     */
}

.modal_head {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.modal_body_share_left {
    width: 50%;
}

.modal_body_right {
    padding: 32px;
    width: 50%;
}

.modalhead_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
    justify-content: flex-start;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
    border: 2px solid transparent;
    color: #93acd3;
    background-color: transparent;
    font-size: 12px;
    border-radius: 10px;
    padding: 5px 10px;
    border-radius: 3rem;
}

    .modalhead_btn.active {
        background-color: #2283f6;
        color: #fff;
    }

.share_modal .modal-content {
    background-color: transparent;
    border: none;
}

.input_inner {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #475c72;
    transition: color .1s ease-in-out, border-color .1s ease-in-out;
    height: 44px;
    border-radius: 10px;
    padding: 0 14px;
    margin-bottom: 10px;
    width: 100%;
}

    .input_inner i {
        color: #2283f6;
        margin-right: 10px;
    }

.input_custom {
    width: 0;
    flex: 1 1;
    display: block;
    font-weight: 600;
    color: #fff;
    outline: none;
    line-height: 20px;
    font-size: 14px;
    padding: 0;
    border: none;
    height: auto;
    max-width: 100%;
    background-color: transparent;
}

.input_inner_forgot a {
    border-bottom: 1px solid #007bff;
    font-size: 12px;
}

.btn_login_modal {
    background-color: #2283f6;
    color: #fff;
    padding: 7px;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin: 20px 0;
}

.inn_slider_wrp {
    margin: 15px 0 0px;
}

.inn_product_wrap {
    display: grid;
    grid-gap: 20px;
    margin: 10px 0 0 0;
    flex-flow: wrap;
    grid-template-columns: repeat(6, 1fr);
}

    .inn_product_wrap a {
        display: block;
        position: relative;
    }

        .inn_product_wrap a img {
            width: 100%;
            border-radius: 8px;
        }

.game-preview__hover {
    background-color: rgba(27, 34, 51, .8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 19px 10px 13px;
    transition: opacity .1s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    transform: translateZ(1px);
    border-radius: 8px;
}

.game-preview__btn-play {
    width: calc(35% + 15px);
    min-width: 42px;
    background-color: red;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.9);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inn_product_wrap a:hover .game-preview__btn-play,
.inn_product_wrap a:hover .game-preview__hover {
    opacity: 1;
}

.game-preview__btn-play:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.game-preview__btn-play i {
    color: #fff;
    font-size: 20px;
}

.content_header {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

.content_header_txt {
    color: #55657e;
    max-width: 400px;
    font-size: 15px;
    line-height: 1.3;
    margin: auto;
    position: absolute;
    bottom: 18px;
    font-weight: 500;
}


/*promotion*/
.intro_promotion {
    min-height: 0;
    margin-top: 30px;
}

.intro_promotion_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

.intro_promotion_subtitle {
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    color: #55657e;
    margin-bottom: 5px;
}

.mobile_promo {
    display: none;
}

.filter-list li {
    position: relative;
    display: inline-block;
    padding: 6px 20px;
    margin: 0 2px;
    margin-bottom: 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.filter-list li {
    color: #93acd3;
}

    .filter-list li:hover {
        background-color: #2283f6;
        color: #fff;
    }

    .filter-list li.mixitup-control-active {
        background-color: #2283f6;
        color: #fff;
    }

.select-menu select {
    width: 100%;
    height: 40px;
    line-height: 35px;
    background-color: #171f2b;
    border: solid 1px #252a32;
    border-radius: 9px;
    color: #fff;
}

.promo_filter_wrap {
    display: flex;
    align-items: center;
    background-color: #171f2b;
    border-radius: 10px;
    padding: 8px;
    justify-content: space-between;
}

.promo_box_wrap {
    background-color: #161f2c;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

    .promo_box_wrap img {
        width: 100%;
    }

.promo_box_wrap_inn {
    padding: 15px;
    /* background-color: #161f2c; */
    /* height: 100%; */

    display: flex;
    flex-direction: column;
}

    .promo_box_wrap_inn p {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 13px;
        line-height: 1.5;
    }

    .promo_box_wrap_inn span {
        color: #ffffff;
        font-size: 12px;
        display: block;
        line-height: 1.3;
        min-height: 50px;
    }

.promo_box_wrap_a {
    text-align: center;
}

    .promo_box_wrap_a a {
        color: #478fff;
        /* border: 1px solid #93acd3; */

        padding: 5px 10px;
        border-radius: 26px;
        font-size: 13px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-top: 11px;
        margin-right: auto;
        font-weight: 600;
    }

.filt-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    margin: 30px 0;
}

.modal-dialog.promo {
    max-width: 800px !important;
    border-radius: 20px;
}

.modal-content.promo {
    border: none;
    background: #191b1e;
    border-radius: 20px;
    /* border: 1px solid #d9353d; */
}

button.close-promo {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
}

.grlist {
    color: var(--text-color);
}

.pm-title-wrapper {
    font-size: 16px;
    font-weight: 700;
    background: #ed1d49;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 20px 20px 0px 0px;
}

.pmtable-wrapper {
}

table.promo-table tr th {
    color: #fff;
    background: #d9353d;
    padding: 4px;
    text-align: center;
    border: 1px solid var(--text-color);
}

table.promo-table tr td {
    border: 1px solid var(--text-color);
    padding: 5px;
    color: var(--text-color);
    text-align: center;
}

.gr-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #d9353d;
}

.grlist ul {
    padding-left: 20px;
    margin-top: 5px;
}

    .grlist ul li {
        padding-bottom: 8px;
        font-size: 14px;
        list-style: disc;
    }

.promo-pop-cont {
    padding: 15px;
    border: 1px solid #d9353d;
    border-radius: 0px 0px 20px 20px;
}

.promo-nav button {
    background: #1e2024;
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
}

.promo-modal-tnc {
    font-size: 14px;
    font-family: Calibri;
    color: #ffffff;
    list-style: none !important;
}

    .promo-modal-tnc li span {
        color: orangered;
        margin-right: 10px;
    }

.promo_table tr th {
    background: #ed1d49;
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.promo_table tr td {
    font-size: 12px;
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    background: #d7d7d7;
    text-align: center;
}

.basic-text {
    font-size: 12px;
    color: #fff;
}

.promo_table {
    width: 100%;
}

.promo-text {
    padding: 20px;
}

.contact_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.contact_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact_wrapper_inn {
    position: absolute;
    margin-top: 37px;
}

    .contact_wrapper_inn p {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 5px;
    }

    .contact_wrapper_inn span {
        font-size: 14px;
        font-weight: 600;
    }

.info-wrapper h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.info-wrapper p {
    margin-bottom: 25px;
    font-size: 12px;
}

.info-wrapper {
    min-height: 400px;
}

button.btn-tnc {
    background: #161f2c;
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: #fff;
    border: none;
    border-radius: 5px;
    position: relative;
}

    button.btn-tnc.collapsed {
        background: #161f2c;
        color: #fff;
    }

    button.btn-tnc:focus {
        outline: none;
    }

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: rgb(225 225 225 / 30%);
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}

    .tnc-body ol {
        padding-left: 15px;
    }

        .tnc-body ol li {
            padding-bottom: 8px;
            list-style: auto;
        }

    .tnc-body p {
        margin-bottom: 10px;
    }

.bank-table tr.trans td {
    background: rgb(255 255 255 / 50%);
    color: #fff;
    border: 1px solid #0d131c;
    padding: 2px;
}

.bank-table tr.trans1 td {
    background: rgb(151 151 151);
    color: #fff;
    border: 1px solid #0d131c;
    padding: 2px;
}

.bank-table tr.dwbox td {
    background: #161f2c;
    color: #fff;
    font-weight: 600;
    padding: 2px;
}

button.btn-tnc::after {
    content: '>';
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 10px;
    transform: rotate(270deg);
    transition: all 0.3s;
}

button.btn-tnc.collapsed::after {
    content: '>';
    transform: rotate(90deg);
    transition: all 0.3s;
}

.info-wrapper h3 {
    color: #f93;
    margin-bottom: 30px;
}

.info-wrapper2 {
    margin-bottom: 30px;
    min-height: 500px;
    border: 1px solid #f93;
    border-radius: 10px;
}

.info-wrapper ul li {
    list-style: disc;
}

.info-wrapper ol li {
    list-style: decimal;
}

.info-wrapper ol,
.info-wrapper ul {
    padding-left: 18px;
}

/*afterlogin*/
.afterlogin_main_bg .container {
    max-width: 1200px;
}

.afterlogin_inn_wrap {
    display: grid;
    grid-template-columns: 752px minmax(260px, 368px);
    gap: 1rem;
}

    .afterlogin_inn_wrap.afterlogin_inn_wrap_custom {
        display: grid;
        grid-template-columns: 100%;
        gap: 1rem;
    }

.afterlogin_wrap {
    padding: 32px 0;
}

    .afterlogin_wrap h3 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
    }

.depwith_wrapbtn {
    background-color: #0000004d;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-color: #dee3f026;
}

    .depwith_wrapbtn a {
        padding: 15px;
        font-size: 14px;
        line-height: 14px;
        background-color: #dee3f026;
        color: #ecf1ffb3;
        border-color: #0000004d;
        width: 100%;
        font-weight: bold;
        border: none;
        border-radius: 3px;
        text-align: center;
    }

        .depwith_wrapbtn a.active {
            color: #02db7f;
            background-color: #1cc9804d;
        }

.depwith_wrapbtn_left {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-right: 3px;
}

.depwith_wrapbtn_right {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.afterlogin_dep_head {
    background-color: #2c2e34;
    padding: 1.25rem 2.25rem;
}

.afterlogin_dep_headbody_wrap {
    overflow: hidden;
    border-radius: 1rem;
    margin-top: 20px;
}

    .afterlogin_dep_headbody_wrap.afterlogin_dep_headbody_wrap_custom {
        overflow: hidden;
        border-radius: 1rem;
        margin-top: 0;
    }

.head_col_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .head_col_1 span {
        font-weight: 600;
    }

.trans_btn {
    background-color: #35383d;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 12px;
}

.head_bal {
    font-size: 30px;
    font-weight: 700;
}

    .head_bal span {
        color: #02db7f;
    }

.afterlogin_dep_body {
    background-color: #24262b;
    padding: 2.25rem;
}

.afterloginbody_step_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.afterloginbody_step_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

    .afterloginbody_step_bottom span {
        flex: 1 1 0%;
        font-size: 13px;
    }

        .afterloginbody_step_bottom span:first-child {
            text-align: left;
        }

        .afterloginbody_step_bottom span:nth-child(2) {
            text-align: center;
        }

        .afterloginbody_step_bottom span:nth-child(3) {
            text-align: right;
        }

        .afterloginbody_step_bottom span.stepcus {
            text-align: right;
        }

.step_bullet {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: #dee3f026;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step_bullet.active {
        background-color: #1cc980;
    }

.step_line {
    height: 3px;
    background-image: linear-gradient(269.99deg, #383a40 1.25%, rgba(46, 49, 54, 0) 101.67%);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    flex: auto;
}

    .step_line.active {
        background-image: linear-gradient(270deg, #1cc980 29.61%, rgba(28, 201, 128, 0) 101.68%);
    }

.deposit_body_notis {
    background-color: #2c2e34;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 8px;
    margin-top: 20px;
    padding: 6px;
}

.deposit_body_notis_leftcolor {
    width: 170px;
    position: absolute;
    background-image: linear-gradient(89.78deg, #1f5999 4.36%, rgba(41, 106, 173, 0) 99.77%);
    left: 0;
    top: 0;
    border-radius: 8px;
    height: 100%;
}

.dep_notisicon {
    width: 32px;
    height: 32px;
    margin-right: 4px;
}

.deposit_body_notis_content {
    display: flex;
    align-items: center;
    font-size: 12px;
    position: relative;
}

.dep_content_warning {
    color: #f4ba00;
}

.deposit_bank_choose_box {
    display: flex;
    background-color: #2c2e34;
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    align-items: center;
}

    .deposit_bank_choose_box:hover {
        background-color: #36383e;
    }

    .deposit_bank_choose_box img {
        width: 84px;
        border-radius: 5px;
        margin-right: 10px;
    }

    .deposit_bank_choose_box span {
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
    }

    .deposit_bank_choose_box i {
        margin-left: auto;
    }

.deposit_bank_choose_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 25px;
    margin-top: 25px;
}

.afterlogin_inn_wrap_faqbody {
    padding: 1rem;
    background-color: #24262b;
    border-radius: 1rem;
    height: 100%;
}

.dep_faq_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mb-0 > a {
    display: block;
    position: relative;
}

    .mb-0 > a:after {
        content: "\f054";
        /* fa-chevron-down */
        position: absolute;
        right: -23px;
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    }

    .mb-0 > a[aria-expanded="true"]:after {
        content: "\f078";
        /* fa-chevron-up */
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    }

.afterlogin_inn_wrap_faqaccor .card-header {
    padding: 14px 1.25rem;
    margin-bottom: 0;
    background-color: #2c2e34;
    border-bottom: #2c2e34;
}

    .afterlogin_inn_wrap_faqaccor .card-header:hover {
        background-color: #36383e;
    }

    .afterlogin_inn_wrap_faqaccor .card-header a {
        color: #fff;
        font-size: 14px;
        display: flex;
        width: 90%;
        align-items: center;
    }

.afterlogin_inn_wrap_faqaccor .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #1a1c21;
    background-clip: border-box;
    border: none;
    border-radius: 10px;
}

    .afterlogin_inn_wrap_faqaccor .card:first-child .card-header {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .afterlogin_inn_wrap_faqaccor .card:last-child .card-header {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

.btn_dep {
    background-color: #1cc980;
    margin-right: 0;
}

.header_btn_dep {
    display: flex;
    align-items: center;
    background-color: #1a1c21;
    border-radius: 0.5rem;
    padding: 0px 0px 0 10px;
}

.headusericon {
    width: 25px;
    border-radius: 50px;
}

.head_afterlogin_custom .btn_dropup_lang button {
    background-color: #0000004d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 19px;
    border-bottom: 1px solid #dee3f026;
}

.head_afterlogin_custom .btn_dropup_lang {
    width: 152px;
    margin: 0 0px 0 20px;
}

    .head_afterlogin_custom .btn_dropup_lang .dropdown-menu.show {
        display: block;
        width: 100%;
        background-color: #2c2e34;
    }

.head_afterlogin_custom .btn-secondary:not(:disabled):not(.disabled).active,
.head_afterlogin_custom .btn-secondary:not(:disabled):not(.disabled):active,
.head_afterlogin_custom .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #0000004d;
    border-color: #4e555b;
}

.head_afterlogin_custom .btn_dropup_lang .dropdown-menu a {
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 7px 11px;
    justify-content: left;
    grid-gap: 0 10px;
}

    .head_afterlogin_custom .btn_dropup_lang .dropdown-menu a i {
        display: block;
        /* margin-right: 8px; */
        font-size: 12px;
        width: 20px;
    }

.head_afterlogin_custom .dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
}

.head_afterlogin_custom_mobile {
    display: none;
}

.btn_tr {
    background-color: #2d3035;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 7px;
}

.afterlogin_btn_back {
    color: #fff;
    margin-right: 20px;
}

.header_mobile_show {
    display: none;
}

.deposit_select_showbank {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.bank_display {
    width: 82px;
    border-radius: 5px;
    margin-right: 10px;
}

.bank_display_name {
    font-weight: 700;
}

.form-control {
    background-color: rgba(0, 0, 0, .3);
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #fff;
    text-align: center;
}

.form_label {
    margin-bottom: 2px;
    font-weight: 700;
}

.form-control:focus {
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    border: 1px solid #1cc980;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #1cc980;
}

.form_wrap {
    margin-top: 22px;
}

.label_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_label_notis {
    font-size: 12px;
    margin-bottom: 0px;
}

.bank_amount_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    margin-top: 8px;
}

    .bank_amount_grid button {
        width: 100%;
        color: #fff;
        background-color: rgba(222, 227, 240, .15);
        border-radius: 5px;
        padding: 10px;
        border: none;
        font-size: 13px;
        font-weight: 700;
    }

        .bank_amount_grid button:hover {
            background-color: rgba(222, 227, 240, .3);
        }

.form_bonus_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text_bonus_amt_top {
    color: #f4ba00;
}

.text_bonus_amt {
    font-size: 17px;
    font-weight: 700;
}

.form_bonus_wrap {
    font-size: 13px;
}

.submit_btn_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 50px;
}

    .submit_btn_wrap button.backbtn {
        background-color: rgba(222, 227, 240, .15);
        height: 52px;
        border-radius: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, .3);
        color: #fff;
        border: none;
        font-weight: 700;
    }

    .submit_btn_wrap button.paybtn {
        background-color: #1cc980;
        height: 52px;
        border-radius: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, .3);
        color: #fff;
        border: none;
        font-weight: 700;
    }

.submit_btn_wrap_with {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 50px;
}

.footer_pay {
    display: none;
    position: fixed;
    bottom: 0;
    background-color: #2c2e34;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    width: 100%;
}

    .footer_pay .submit_btn_wrap button.backbtn {
        background-color: rgba(222, 227, 240, .15);
        height: 44px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, .3);
        color: #fff;
        border: none;
        font-weight: 700;
    }

    .footer_pay .submit_btn_wrap button.paybtn {
        background-color: #1cc980;
        height: 44px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, .3);
        color: #fff;
        border: none;
        font-weight: 700;
    }

    .footer_pay .submit_btn_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        align-items: center;
        margin-top: 10px;
    }

    .footer_pay .form_wrap {
        margin-top: 0;
    }

body[data-singlepage="afterlogin"] .mobile_footer {
    padding: 18px 10px 155px 10px;
}

.add_bank_with_wrap {
    color: #02db7f;
    display: flex;
    flex-direction: column;
    height: 112px;
    background-color: #dee3f00d;
    border-radius: 0.75rem;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

    .add_bank_with_wrap p {
        margin-bottom: 0;
    }

    .add_bank_with_wrap i {
        font-size: 24px;
        margin-bottom: 10px;
    }

.table-share tr th {
    background-color: rgba(0, 0, 0, .3);
    padding: 5px;
}

.table-share tr td {
    padding: 5px;
    border-bottom: 1px solid #636363;
}

.add_bank_with_wrap:hover {
    background-color: rgba(222, 227, 240, .15);
}

.addbankdropdown .btn {
    width: 100%;
    color: #fff;
    background-color: #191b1e;
    height: 52px;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    text-align: left;
}

.addbankdropdown .dropdown-menu {
    width: 100%;
    background-color: #2c2e34;
}

    .addbankdropdown .dropdown-menu a {
        color: #fff;
        padding: 10px 20px;
        background-color: #2c2e34;
    }

        .addbankdropdown .dropdown-menu a:hover {
            background-color: #36383e;
        }

.addbankdropdown img {
    width: 83px;
    margin-right: 10px;
    border-radius: 5px;
}

.afterlogin_dep_body select {
    -webkit-appearance: none;
    appearance: none;
}

.afterlogin_dep_body .select_custom {
    position: relative;
}

    .afterlogin_dep_body .select_custom::after {
        content: "\f054";
        font-weight: 900;
        font-size: 0.8rem;
        top: 29%;
        right: 17px;
        position: absolute;
        font-family: 'Font Awesome 5 Free';
    }

.history_typebtn a {
    padding: 15px;
    font-size: 14px;
    line-height: 14px;
    background-color: #dee3f026;
    color: #ecf1ffb3;
    border-color: #0000004d;
    width: 100%;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    text-align: center;
}

    .history_typebtn a.active {
        color: #02db7f;
        background-color: #1cc9804d;
    }

.history_typebtn {
    background-color: #0000004d;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-color: #dee3f026;
    grid-gap: 4px;
}

.select_form_history {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    grid-gap: 15px;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.history_table_wrap {
    background-color: #24262b;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 40px;
}

.history_table {
    color: #ecf1ff80;
}

    .history_table tr th {
        padding: 0 5px;
    }

    .history_table tr td {
        padding: 3px 5px;
    }

    .history_table tr th:last-child {
        text-align: right;
    }

    .history_table tr td:last-child {
        color: #f4ba00;
        text-align: right;
    }

.msg_user {
    cursor: pointer;
}

    .msg_user:hover {
        color: #fff;
    }

.history_table_wrap.history_table_wrap_inbox {
    background-color: #24262b;
    padding: 0;
    border-radius: 10px;
    margin-top: 0;
}

.profile_userimg_wrap {
    background-color: #24262b;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 24px;
    border-radius: 16px;
    display: flex;
    padding-left: 45px;
    grid-gap: 20px;
}

.profile_userimg img {
    border-radius: 100%;
    width: 80px;
    border: 5px solid #dee3f026;
}

.profile_userinfo {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.profileuserinfo_badge {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

    .profileuserinfo_badge img {
        width: 28px;
    }

    .profileuserinfo_badge p {
        margin: 0;
        position: absolute;
    }

.profile_user_num {
    margin: 0;
    font-size: 21px;
}

.profile_vip_row {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    z-index: 0;
    background: linear-gradient(294.54deg, rgb(72, 84, 99) 10.77%, rgb(157, 167, 177) 108.33%);
    padding: 5px 12px;
    min-height: 85px;
}

.main-vip {
    /* position: absolute; */
    top: 0;
    left: 7px;
    font-size: 33px;
    background-image: linear-gradient(179.01deg, rgb(229, 240, 254) 8.85%, rgb(171, 182, 196) 85.43%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    font-style: italic;
    width: 100%;
    margin: 0;
}

.vip-process {
    position: relative;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.15);
    width: 70%;
}

.vip-process-bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    border-radius: 2px;
    background: white;
}

.vipprofile_text {
    font-size: 13px;
}

.profile_vip_row::after {
    background-image: url('../images/icon/vipbadge_big.png');
    content: "";
    width: 133px;
    height: 160px;
    position: absolute;
    background-size: contain;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.profile_content_wrap {
    padding: 1.5rem;
    background-color: #24262b;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.profile_content_wrap_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.profile_content_wrap_rowleft_con {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

    .profile_content_wrap_rowleft_con p,
    .profile_content_wrap_rowleft_con i {
        margin: 0;
        font-weight: 700;
        color: #ecf1ffb3;
    }

.profile_content_wrap_rowright_con {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

    .profile_content_wrap_rowright_con p,
    .profile_content_wrap_rowright_con i {
        margin: 0;
        font-weight: 700;
        color: #ecf1ffb3;
    }

.hr_profile_line {
    border-top: 1px solid #dee3f00d;
    margin: 2px;
}

.profile_chgpas {
    background-color: #dee3f00d;
    border-radius: 8px;
    color: #ecf1fff0;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

    .profile_chgpas:hover {
        background-color: #dee3f029;
    }

.profile_navimenu {
    padding: 1.5rem;
    background-color: #24262b;
    border-radius: 16px;
    margin-top: 1rem;
}

.profile_navimenu_inn {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

    .profile_navimenu_inn a {
        display: grid;
        text-align: center;
        grid-gap: 3px;
        line-height: 1.2;
        align-items: end;
    }

        .profile_navimenu_inn a i {
            font-size: 23px;
        }

.profile_navimenu {
    display: none;
}

button.logout {
    display: none;
}

/*slots*/
.slots_sec_btnwrap {
    display: flex;
    max-width: 400px;
    margin: 20px 0 20px auto;
    grid-gap: 20px;
    justify-content: right;
}

.checkbox-label {
    color: #fff;
}

.slots_sec_btnwrap .checkbox {
    padding: 0 10px;
}

.span_count {
    background-color: #959595;
    border-radius: 100px;
    margin-left: 10px;
    padding: 0 10px;
}

.slider_title_img img {
    width: 20px;
    margin-right: 10px;
}

.more_wrapper {
    text-align: center;
    padding: 20px 0;
}

    .more_wrapper a {
        background-color: #1c2532;
        border-radius: 5px;
        color: #627491;
        padding: 5px 10px;
        font-size: 13px;
    }

.btnmore_bar {
    background: #1a242d;
    border-radius: 1px;
    height: 2px;
    min-width: 180px;
    position: relative;
}

.btnmore_bar_progress {
    background: #f12c4c;
    border-radius: 1px;
    height: 1px;
    position: absolute;
    width: 23%;
}

.footer_inn_btmmore {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 50px;
}

.footer_inn_btmmore_wrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .footer_inn_btmmore_wrap h4 {
        color: #fff;
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
    }

.loadmore_btn {
    align-items: center;
    background: #ffcc29;
    border-radius: 3px;
    color: #000;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    padding: 16px 30px;
    text-transform: capitalize;
    transition: background .2s;
    width: 180px;
    border: none;
}

.recom_menu_box {
    align-items: center;
    background: #151c26;
    border-radius: 14px;
    display: flex;
    width: 100%;
    padding: 15px;
    grid-gap: 15px;
}

.recom_menu_a {
    display: block;
    padding: 5px;
    border-radius: 5px;
    min-width: 78px;
    text-align: center;
    background-color: transparent;
}

    .recom_menu_a.active,
    .recom_menu_a:hover {
        background-color: #1a55ef;
    }

.recom_menu_box_txt {
    font-weight: 600;
    text-transform: uppercase;
}

.bonus_box {
    background: #1c2532;
    border-radius: 0.75rem;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    margin: 10px auto;
    min-height: 260px;
    padding: 0;
    position: relative;
    width: 100%;
}

.bonus_box_custom {
    grid-template-columns: 275px 1fr;
}

.bonus_left_box {
    background: linear-gradient(180deg, #151c26, #003a8d);
    border-radius: 0.75rem;
    float: left;
    margin: 10px;
    min-height: 250px;
    position: relative;
}

.copy_overview_inner {
    padding: 10px;
}

.copy_title {
    color: #fce90b;
    font-size: 24px;
    min-height: 68px;
    padding: 10px 10px 0;
    font-weight: 700;
}

.copy_value_title {
    color: #fff;
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.copy_value {
    align-items: center;
    border-radius: 0.25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    height: 34px;
    justify-content: space-between;
    letter-spacing: -.02em;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 0 0 0 0px;
    text-align: left;
}

.copybtn {
    background-color: #1a55ef;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    font-size: 15px;
    border-radius: 4px;
}

.copy_value input {
    height: 34px;
    background-color: #151c26;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
}

.bonus_right_box_top {
    background: #151c26;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 108px;
    padding: 10px 16px;
    border-radius: 0.75rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bonus_data_block {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

    .bonus_data_block h4 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -.02em;
        line-height: 20px;
        margin-top: 18px;
        text-align: center;
    }

    .bonus_data_block span {
        line-height: 40px;
        font-weight: 600;
    }

.bonus_right_box_bottom {
    background: linear-gradient(95deg, #151c26, #003a8d);
    display: grid;
    justify-items: flex-start;
    margin-bottom: 10px;
    margin-top: 15px;
    min-height: 140px;
    position: relative;
    border-radius: 0.75rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    grid-template-columns: minmax(120px, 240px) 90px 2fr;
    align-items: center;
    grid-gap: 30px;
}

.bonus_plan_title {
    align-items: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-style: italic;
    margin: 0 auto;
    padding-left: 30px;
    max-width: 240px;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
}

.bonus_plan_txt {
    min-width: 150px;
    display: flex;
    grid-column-end: auto;
    grid-column-start: auto;
    align-items: center;
    color: #ffaa17;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    justify-content: left;
    padding-left: 20px;
    text-align: left;
    font-weight: 700;
    position: relative;
}

.trophy_m {
    display: none;
}

.bonus_plan_txt_tooltit,
.bonus_plan_txt_tooltit2 {
    display: none;
    position: absolute;
    font-size: 10px;
    color: #fff;
    width: 260px;
    font-weight: 500;
    top: 33px;
    z-index: 999;
    background-color: #0e2649c2;
    padding: 5px;
    border-radius: 10px;
}

.bonus_ques,
.bonus_ques2 {
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
}

.bonus_card_overview_title {
    margin: 0 auto;
    padding: 0;
}

    .bonus_card_overview_title h2 {
        color: #fff;
        display: block;
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 22px;
        margin-top: 22px;
        text-align: center;
        font-weight: 700;
    }

.bonus_card_overview_inner {
    display: flex;
    color: #fff;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 98px;
    position: relative;
}

.bonus_card_item {
    align-items: center;
    background: #151c26;
    border-radius: 8px;
    display: flex;
    width: 32%;
}

.bonus_card_item_icon {
    margin: 0 10px;
    position: relative;
    width: 80px;
}

.bonus_card_item_div {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}

.bonus_card_item_title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}

.bonus_card_item_number {
    color: #ffaa17;
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 0;
}

.bonus_card_item_people {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
}

.bonus_invite_box_title {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 400;
}

.bonus_content_box {
    background: linear-gradient(90deg, #001f4e, #0062ff);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
}

.bonus_left_content_box {
    padding: 30px 0 30px 30px;
    width: 45%;
}

.bonus_left_title {
    color: #ffe32a;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
}

.bonus_left_text {
    color: #55657e;
    font-size: 9px;
    font-weight: 500;
    line-height: 20px;
}

.bonus_left_money {
    color: #fce90b;
    font-size: 16px;
    font-weight: 900;
}

.bonus_right_content_box {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
}

    .bonus_right_content_box img {
        width: 270px;
        padding: 10px;
    }

.bonus_invite_list {
    background: linear-gradient(180deg, #127ff9, #051f4e);
    border-radius: 18px 18px 18px 18px;
    margin-top: 24px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 24px;
}

.bonus_table_title {
    color: #ffe32a;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
}

.bonus_invite_list .bonus_table_ul {
    display: flex;
    flex-direction: column;
    padding: 0 36px;
}

    .bonus_invite_list .bonus_table_ul .bonus_table_li {
        cursor: pointer;
        display: flex;
        width: 100%;
    }

    .bonus_invite_list .bonus_table_ul .bonus_table_list_li {
        background: hsla(0, 0%, 100%, .7);
        border-radius: 8px;
        height: 32px;
        line-height: 32px;
        margin-bottom: 8px;
    }

.bonus_table_text {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.bonus_table_invite_nav {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    min-height: 40px;
    text-align: center;
    width: 190px;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(3) {
    background: #fff4ac;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #ffeb68;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: #ffe32a;
}

.bonus_box .bonus_card_overview {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bonus_card_overview_title h2 {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.questiontool_wrap {
    position: relative;
}

.bonus_bets_box {
    background-image: linear-gradient(90deg, rgba(0, 23, 84, .6), rgba(0, 73, 183, .8));
    border-radius: 8px;
    margin-top: 20px;
    min-height: 620px;
    padding-bottom: 20px;
    width: 100%;
}

.bonus_bets_top {
    display: flex;
    justify-content: space-around;
}

.bonus_bets_top_left {
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    padding-left: 35px;
    width: 49%;
}

.bonus_bets_bgc {
    background-color: hsla(0, 0%, 100%, .1);
    border-radius: 10px;
    padding: 20px 20px 25px 25px;
    font-weight: 600;
}

.bonus_bets_desc {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.bonus_bets_top_example {
    color: #fff;
    line-height: 26px;
    margin-top: 10px;
    padding-right: 12px;
    width: 100%;
    margin-bottom: 0;
}

.bonus_bets_top_example_title {
    font-size: 16px;
    margin-bottom: 0;
}

.bonus_bets_top_example_desc {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 0;
}

.bonus_bets_top_right {
    align-items: center;
    justify-content: center;
    position: relative;
    width: 49%;
    display: flex;
}

.bonus_card_overview_desc {
    color: #adb6c4;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px auto;
}

.bonus_bets_top_right img {
    width: 75%;
    padding: 10px;
}

.bonus_bets_bottom {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding: 20px;
    flex-wrap: nowrap;
}

.bonus_bets_bottom_box {
    background-color: rgba(0, 29, 71, .8);
    border-radius: 15px 15px 15px 15px;
    box-sizing: border-box;
    padding: 20px
}

.bonus_bets_bottom_left {
    width: 48%;
}

.bonus_bets_bottom_right {
    width: 48%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

    .bonus_bets_bottom_right h2 {
        align-items: center;
        display: flex;
        font-size: 18px;
        font-weight: 500;
        height: 30px;
        justify-content: center;
    }

.bonus_bets_number {
    position: relative;
    align-items: center;
    color: #ffaa17;
    display: flex;
    font-size: 30px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    position: relative;
}

.bonus_bets_number_text {
    color: #adb6c4;
    font-weight: 600;
    height: 30px;
    text-align: center;
    margin-bottom: 0;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: #383c4e;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #4a72f6;
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #4a72f6;
        cursor: pointer;
    }

.bonus_ranking_overview {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    position: relative;
    width: 100%;
}

.bonus_ranking_inner {
    grid-column-gap: 10px;
    color: #fff;
    display: grid;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
}

.bonus_ranking_item {
    background: #151c26;
    border-radius: 0.75rem;
    display: grid;
    min-height: 110px;
    padding: 10px;
}

.bonus_item_title {
    color: #fff;
    font-size: 22px;
    height: 42px;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

.bonus_ranking_data {
    background: linear-gradient(1turn, #0d1016, #003a8d);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    margin: 0 auto;
    min-height: 280px;
    width: 100%;
}

.bonus_ranking_level2 {
    padding-top: 80px;
}

.bonus_ranking_level1 {
    padding-top: 20px;
}

.bonus_ranking_level3 {
    padding-top: 80px;
}

.bonus_userinfo_body {
    display: grid;
    font-size: 10px;
    grid-template-rows: 30px 100px 20px 20px;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.bonus_userinfo_ranking_level {
    font-size: 12px;
    padding-top: 15px;
}

.bonus_ranking_level2 .bonus_userinfo_ranking_level {
    background: linear-gradient(180deg, #f39d42, #9ea8ba);
    -webkit-background-clip: text;
    color: transparent;
}

.bonus_userinfo_avatar_bg {
    border: 1px solid #f39d42;
    border-radius: 50%;
    display: block;
    height: 80px;
    margin: 10px auto;
    overflow: hidden;
    padding: 3px;
    position: relative;
    width: 80px;
}

.bonus_userinfo_body .bonus_userinfo_score,
.bonus_userinfo_body .bonus_userinfo_username {
    align-items: center;
    color: #fff;
    display: block;
    justify-content: center;
    margin: 10px auto;
    text-align: center;
    transform: scale(.8);
}

.bonus_userinfo_body .bonus_userinfo_score {
    color: #ffaa17;
}

.bonus_ranking_lottery {
    grid-gap: 10px;
    display: grid;
    margin: 0 auto;
    min-height: 280px;
    padding: 0 8px;
    width: 100%;
}

.bonus_lottery_item {
    background-color: #1c2532;
    border-radius: 0.25rem;
    color: #3f526e;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    font-size: 10px;
    grid-template-columns: minmax(60px, 100px) 1fr 100px;
    margin: 0 auto;
    min-height: 50px;
    padding: 0 10px;
    position: relative;
    width: 100%;
}

    .bonus_lottery_item div {
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 12px 3px;
        text-align: center;
    }

.bonus_username {
    color: #3f526e;
}

.bonus_yellow {
    color: #ffaa17;
}

.bonus_footer_overview {
    background: #151c26;
    border-radius: 15px;
    display: flex;
    margin-bottom: 30px;
    opacity: 1;
    padding: 15px 15px 15px 24px;
    flex-direction: row;
}

.bonus_footer_left {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 315px;
}

.bonus_footer_right {
    flex: 1 1;
    width: 100%;
    margin-left: 25px;
}

    .bonus_footer_right .bonus_footer_right_content {
        background: linear-gradient(-45deg, #1a4fe4, #1e2c44);
        border-radius: 15px;
        height: 100%;
        opacity: 1;
        padding: 26px 23px 18px 29px;
        width: 100%;
    }

.bonus_footer_right_content .bonus_footer_right_text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.bonus_footer_last_text {
    margin-bottom: 0;
}

.bonus_footer_right_href {
    color: #fce90b;
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.announcementpopupimg img {
    width: 400px;
    margin: auto;
}

#announcementpopup .carousel-control-prev {
    left: -22px;
}

#announcementpopup .carousel-control-next {
    right: -22px;
}

.announcementmodal.modal {
    z-index: 999999;
}

.announcementmodal .modal-content {
    position: relative;
}

.announcementmodal .close {
    right: 0;
    bottom: -35px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcementmodal.detectannouncementmodal02 .close {
    position: absolute;
    right: 55px;
    top: 20px;
}

.announcementmodal .modal-content {
    background-color: transparent;
    border: none;
}

.announcementmodal .modal-dialog {
    max-width: 500px;
}

.acc_wrap {
    display: flex;
    width: 100%;
    align-items: center;
    background-color: #161f2c;
    border-radius: 5px;
    padding: 3px 10px;
    margin: 10px 0 0 0;
}

.speaker-icon {
    color: #99abd0;
    font-size: 18px;
}

.annuuce-wrapper {
    width: 100%;
    overflow: hidden;
}

.anouce-msg {
    align-self: center;
    color: #93acd3;
    font-size: 12px;
    -moz-animation: scroll-left 15s linear infinite;
    -webkit-animation: scroll-left 15s linear infinite;
    animation: scroll-left 15s linear infinite;
    white-space: nowrap;
    margin: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.promo-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

    .promo-img img {
        border-radius: 10px;
    }

.hotgame-main-img_pro img {
    width: 85%;
}

.desktop_view {
    display: block;
}

.mobile_view {
    display: none;
}

.scrollMenuSection ul.tab {
    margin: 0;
}

    .scrollMenuSection ul.tab li {
        font-size: 0.85em;
        color: #fff;
        float: left;
        flex: 0 0 20%;
    }

        .scrollMenuSection ul.tab li:last-child a {
            -webkit-border-top-right-radius: 5px;
            -webkit-border-bottom-right-radius: 5px;
            -moz-border-radius-topright: 5px;
            -moz-border-radius-bottomright: 5px;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }

.scrollMenuSection .tab a {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    /* padding: 10px 0 12px; */
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9em;
    white-space: nowrap;
}

    .scrollMenuSection .tab a.active,
    .tab a:hover {
        color: #00aeef;
    }

    .scrollMenuSection .tab a img {
        max-width: 50%;
        display: block;
        margin: 0 auto 5px;
    }

    .scrollMenuSection .tab a i {
        max-width: 70%;
        height: 39px;
        width: 39px;
        display: block;
    }

.scrollMenuSection #navbar.tab {
    z-index: 100;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    /* background: #1e2128; */
    border-radius: 5px;
    gap: 10px;
}

    .scrollMenuSection #navbar.tab li {
        background: #1b1e2f;
        padding: 10px 5px;
        border-radius: 10px;
    }

.feature-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin: auto;
    padding: 20px 0px;
}

.video-mp4 {
    text-align: center;
}

#upcoming-matches {
    color: #93acd3;
}

.iframe-upcoming {
    background: #93acd3;
    border-radius: 10px;
}

.bottom-space {
    margin-bottom: 30px;
}

/* 26092024 */
.mission-bg ul {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px 20px;
    padding-bottom: 100px;
}

    .mission-bg ul li a {
        display: block;
        position: relative;
    }

.ms-wrap {
    position: absolute;
    top: 0px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.ms-ttl {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
}

.ms-amt {
    font-weight: bold;
    color: #b2fb29;
    text-transform: uppercase;
    font-size: 20px;
}

.ms-btn {
    position: absolute;
    bottom: 7px;
    left: 30%;
    transform: translate(-20%, 50%);
}

.mission_modal .modal-content {
    background: linear-gradient(180deg, rgba(8, 16, 66, 1) 0%, rgba(9, 34, 156, 1) 100%);
}

.mission_modal .modal-dialog {
    max-width: 800px;
}

.mission_modal .close {
    position: absolute;
    right: 0px;
    color: #fff;
}

.mission_modal ul,
.mission_modal ol {
    padding-left: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #787878;
    font-size: 12px;
}

    .mission_modal ul li {
        list-style: circle;
        margin-bottom: 15px;
    }

    .mission_modal ol li {
        list-style: auto;
        margin-bottom: 10px;
    }

.mission_modal .modal-body {
    padding: 20px 30px;
}

.mission_modal h4 {
    border-bottom: 1px solid #105e9a;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #fff;
}

.mission_modal table tr td {
}

.mission_modal table tr td,
.mission_modal table tr th {
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.mission_modal .close {
    color: #fff;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}

.blog_banner img {
    width: 100%;
}

/* 27092024 */

.verification-code-img {
    height: 100%;
    vertical-align: middle;
    cursor: pointer;
    width: 74px;
    border-radius: 0 10px 10px 0;
}

.v-code-position {
    height: 100%;
    position: absolute;
    right: 0;
}

.country-code {
    width: 35%;
    background: #161f2c;
    color: #757575;
    margin-right: 5px;
}

.rd-color {
    font-size: 25px;
    background: none;
    border: none;
    color: #ed1d49;
}

button.btn-cpy {
    position: absolute;
    right: 16px;
    top: 14px;
    border: none;
    padding: 0px;
    color: #2c2e34;
    background: transparent;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 150px;
    margin-top: 20px;
}

.amt-box {
    position: relative;
}

.header_btn_dep .rd-color {
    font-size: 13px;
    background: none;
    border: none;
    color: #ed1d49;
}

.header_btn_dep a {
    white-space: nowrap;
}


/* 08102024 */
.tour-wrap-all {
    background: url("../images/checkin/bg.jpg") no-repeat center top;
    background-size: cover;
}

.tour-wrap {
    /* padding-top: 600px; */
}

.token {
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
}

button.btn-token {
    background: url(../images/checkin/btn-token.png) no-repeat top center;
    background-size: 100% 100%;
    border-radius: 8px;
    padding: 9px 0px;
    width: 230px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-shadow: -1px 4px #a41919;
    border: 0px;
}

.wrap-btn {
    /* background: linear-gradient(to bottom, rgba(217,161,57,1) 0%, rgba(246,219,113,1) 53%, rgba(215,160,59,1) 100%); */
    /* border-radius: 10px; */
    /* padding: 4px; */
    border: 0px;
}

.check-in {
    background: url("../images/checkin/line-bg.png")no-repeat center top;
    /* margin-top: 120px; */
    background-size: 100% 87%;
}

.check-iteam ul {
    display: flex;
    justify-content: center;
    position: relative;
    top: -60px;
    gap: 40px;
}

    .check-iteam ul li a {
        display: flex;
        flex-direction: column;
    }

    .check-iteam ul img {
        height: 145px;
    }

.check-iteam {
    position: relative;
    margin-bottom: 25px;
}

    .check-iteam ul li a p {
        color: #585555;
        font-weight: bold;
        text-align: center;
        padding-top: 12px;
    }

.tour-logo img {
    /* height: 200px; */
    margin: 0px auto;
    display: block;
}

.btn-reward {
    display: flex;
    justify-content: center;
}

.reward-btn {
    /* background: linear-gradient(to bottom, rgba(176, 143, 115, 1) 0%, rgba(255, 221, 187, 1) 31%, rgba(115, 48, 6, 1) 75%, rgba(188, 150, 121, 1) 100%); */
    padding: 3px;
    border-radius: 8px;
    border: 0px;
}

button.btn-wrad {
    background: url(../images/checkin/btn-tnc.png) no-repeat top center;
    color: #fff;
    font-size: 26px;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: 0px;
    background-size: 100% 100%;
}

.check-iteam ul li.active a p {
    color: #b73e1e;
}

.modal-dialog.tour-pop {
    max-width: 380px;
    margin-top: 200px;
}


.tour-btn {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 67px;
}

button.btn-how {
    color: #fff;
    background: url(../images/checkin/btn-tnc.png) no-repeat top center;
    border-style: solid;
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-weight: bold;
    border-radius: 10px;
    font-size: 18px;
    border: 0px;
}

.modal-dialog.tnc-pop {
    padding: 2px;
    border-radius: 10px;
    max-width: 685px;
    border: 1px solid #ed1d49;
}

.tnc-pop .modal-body {
    background: #260e0f;
    color: #fff;
    border-radius: 10px;
    padding: 25px 50px;
}

.tnc-ttl {
    text-align: center;
    font-size: 26px;
}

.tnc-content {
    margin-top: 20px;
}

.tnc-tour button.close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.tnc-pop .modal-content {
    background: #191b1e;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
}

.tour-pop .modal-content {
    background: none;
    border: none;
}

.bd-out {
    /* background: linear-gradient(to bottom, rgba(161,113,80,1) 0%, rgba(255,221,196,1) 32%, rgba(115,48,6,1) 74%, rgba(193,156,128,1) 100%); */
    padding: 1px;
    border-radius: 10px;
    border: 0px;
}

.checkin-banner img {
    width: 100%;
}

/* 12112024 */

.input_inner_forgot {
    display: flex;
    justify-content: space-between;
}

.code {
    max-width: 102px;
    overflow: hidden;
}

.verification-code {
    padding-right: 0;
    overflow: hidden;
}

    .verification-code img {
        height: 50px;
    }

.form_wrap.otp {
    flex-direction: column;
    text-align: left;
    align-items: baseline;
}

.otp .form_label {
    width: auto !important;
    gap: 10px;
    justify-content: flex-start !important;
}

.otp-wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
}

.reg_form h4 {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.reg_form p {
    text-align: center;
    color: #979797;
    font-size: 12px;
}

.btn-jn button {
    margin: inherit !important;
}

.form_wrap.btn-jn {
    display: flex;
    justify-content: flex-start;
    position: relative;
    left: 155px;
}

.reg-wrap .slider_title {
    margin: 20px 0px;
    font-size: 20px;
    color: #0c81ac;
    font-style: italic;
}

.reg_form i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: #ed1d49;
    margin-bottom: 10px;
}

/* 11122024 */
.validation-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 10;
    width: 215px;
    padding: 10px;
    border: 1px solid #2283f6;
    background: #161f2c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    color: #fff;
}

.pass-level {
    display: block;
    position: absolute;
    right: 5px;
    z-index: 10;
    width: 80px;
    padding: 5px;
    border: 1px solid #2283f6;
    background: #161f2c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    color: #fff;
    text-align: center;
}

    .pass-level p {
        margin-bottom: 0px;
    }

.validation-message.invalid {
    color: #ff0000;
}

.validation-message.valid {
    color: #72ff41;
}

.validation-message i {
    margin-right: 5px;
}

.reg-form {
    display: flex;
    align-items: center;
    gap: 0px;
}

    .reg-form label {
        width: 100px;
    }

/* 18122024 */
.tab-pay ul {
    display: grid;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
    grid-template-columns: repeat(3,1fr);
}

    .tab-pay ul li a {
        background: #2a2d34;
        color: #fff;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px;
        border-radius: 5px;
        border: none;
        align-items: center;
        text-align: left;
        height: 100%;
    }

        .tab-pay ul li a.active, .tab-pay ul li a:hover {
            background: #0f4634;
            color: #02db7f;
        }

.deposit_bank_choose_box img {
    height: 25px;
    width: 25px;
    border-radius: 5px;
    margin-right: 10px;
}

.amt-qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.qr-ttl {
    font-weight: bold;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    font-size: 14px;
}

.qr-img {
    margin: 10px 0px;
}

.qr-nm {
    color: #2283f6;
    font-size: 12px;
}

.qr-info {
    font-size: 12px;
    width: 50%;
}

.atten {
    border: 1px solid #5f5f5f;
    border-radius: 5px;
    padding: 10px;
}

    .atten img {
        height: 20px;
    }

.qr-num {
    background-color: rgba(0, 0, 0, .3);
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
}

button.btn-copy {
    /* position: absolute; */
    /* right: 10px; */
    background: #1cc980;
    border: none;
    color: #fff;
    font-size: 18px;
    /* top: -35px; */
    border-radius: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    min-width: 39px;
}

.deposit-reminder {
    padding: 15px;
    border-radius: 8px;
    background: #0000008a;
    color: #fff;
    border: 1px solid #1cc980;
    margin-bottom: 30px;
    margin-top: 30px;
}

    .deposit-reminder ol {
        padding: 18px;
        list-style: decimal;
    }

        .deposit-reminder ol li {
            list-style: decimal;
        }

.nm-qr {
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 17122024 */
.marqueefy.marqueefy_custom {
    padding: 0px;
    background-color: #00000000 !important;
    !i;
    !;
}

.marqueefy .content {
    color: #fff !important;
}

@media (max-width: 999px) {


    /*header*/
    header:after {
        content: '';
        background-image: url(../images/header/shape.png);
        position: absolute;
        width: 304px;
        height: 78px;
        left: 0;
        top: 0;
        background-size: contain;
        pointer-events: none;
        background-repeat: no-repeat;
        display: none;
    }

    header {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header_hamburger {
        /* display: none; */
    }

    .logo {
        width: 136px;
    }

    .chat_btn {
        /* display: none; */
    }

    /*headerEND*/
    /*index*/
    .intro_promo {
        /* background-color: #171f2b; */
        /* display: grid; */
        grid-template-columns: repeat(1, 1fr);
        border-radius: 5px;
        padding: 0;
        grid-gap: 10px;
    }

    body.body_main_wrap {
        padding-left: 0;
        padding-top: 64px;
        transition: padding .1s ease-in-out;
    }

        body.body_main_wrap.body_main_container {
            padding-left: 0;
            transition: padding .1s ease-in-out;
        }

    .intro_img {
        display: none;
    }

    .desktop_footer {
        display: none;
    }

    .mobile_footer {
        display: block;
    }

    .footer-menu {
        display: block;
    }

    .mobile_dropdown {
        display: flex;
    }

    .tab_search {
        display: none;
    }

    .tab_wrapper_inn {
        flex-flow: column;
        display: flex;
        width: 100%;
    }

    .filter-button {
        width: 100%;
        text-align: left;
        padding: 10px;
    }

    .tab_wrapper {
        display: none;
    }

    .modal_body_share_left {
        display: none;
    }

    .modal_body_right {
        width: 100%;
    }

    .inn_product_wrap {
        display: grid;
        grid-gap: 20px;
        margin: 10px 0 0;
        flex-flow: wrap;
        grid-template-columns: repeat(3, 1fr);
    }

    .content_header_txt {
        color: #55657e;
        max-width: 400px;
        font-size: 11px;
        line-height: 1.3;
        margin: auto;
        position: absolute;
        bottom: -2px;
        font-weight: 500;
    }

    .mobile_promo {
        display: block;
    }

    .desktop_promo {
        display: none;
    }

    .promo_filter_wrap {
        display: none;
    }

    .filt-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        margin: 30px 0;
    }

    .contact_wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .afterlogin_inn_wrap {
        display: grid;
        grid-template-columns: minmax(260px, 1fr);
        gap: 0;
    }

    .head_afterlogin_custom {
        display: none;
    }

    .deposit_bank_choose_wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 3px 0px;
        margin-top: 25px;
    }

    .afterlogin_inn_wrap_faqbody {
        display: none;
    }

    .head_afterlogin_custom_mobile {
        display: block;
    }

    .header_web_show {
        display: none;
    }

    .header_mobile_show {
        display: block;
    }

    .footer_pay {
        display: block;
    }

    .afterlogin_dep_body {
        background-color: #24262b;
        padding: 1.25rem;
    }

    .afterlogin_dep_head {
        background-color: #2c2e34;
        padding: 0.7rem 1.25rem;
    }

    .head_bal {
        font-size: 24px;
        font-weight: 700;
    }

    .select_form_history {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: end;
        grid-gap: 0;
    }

        .select_form_history .submit_btn_wrap_with {
            margin-top: 0;
        }

    .history_table_wrap.history_table_wrap_inbox {
        background-color: #24262b;
        padding: 0;
        border-radius: 10px;
        margin-top: 0;
    }

    .profile_userimg_wrap {
        background-color: #24262b00;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0;
        margin-top: 0;
        border-radius: 16px;
        display: grid;
        padding-left: 0;
        grid-gap: 10px;
        justify-content: center;
    }

    .profile_userimg {
        text-align: center;
    }

    .profile_content_wrap {
        padding: 1.5rem;
        background-color: #24262b;
        border-radius: 16px;
        margin-top: 1.2rem;
    }

    .profile_navimenu {
        display: block;
    }

    button.logout {
        background-color: transparent;
        height: 52px;
        border-radius: 10px;
        border: 1px solid #ed474b;
        color: #ed474b;
        font-weight: 700;
        width: 100%;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        button.logout i {
            color: #ed474b;
            margin-left: 10px;
            font-size: 20px;
        }

    .lang_words {
        display: none;
    }

    .btn_dropup_lang button {
        min-width: 50px;
        padding: 10px;
        margin-right: 5px;
    }

    .left_menu_container_wrap_mobile {
        transform: translateX(-100%);
    }

    .bonus_box_custom {
        grid-template-columns: 1fr;
    }

    .bonus_right_box_top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top-left-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
    }

    .trophy_m {
        display: block;
        width: 90px;
        margin: auto;
    }

    .trophy_w {
        display: none;
    }

    .bonus_right_box_bottom {
        grid-gap: 0;
        border-bottom-right-radius: 0.75rem;
        border-top-right-radius: 0.75rem;
        grid-template-columns: 110px 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        padding: 10px;
    }

    .bonus_right_box {
        padding: 10px;
    }

    .bonus_card_overview_inner {
        display: grid;
        justify-content: initial;
        grid-gap: 15px;
    }

    .bonus_card_item {
        width: 100%;
    }

    .bonus_content_box {
        display: grid;
    }

    .bonus_left_content_box {
        padding: 30px;
        width: 100%;
    }

    .bonus_bets_top {
        display: grid;
    }

    .bonus_bets_top_left {
        width: 100%;
        padding: 30px;
    }

    .bonus_bets_top_right {
        width: 100%;
    }

    .bonus_bets_bottom {
        display: grid;
        grid-gap: 15px;
    }

    .bonus_bets_bottom_left {
        width: 100%;
    }

    .bonus_bets_bottom_right {
        width: 100%;
    }

    .bonus_ranking_inner {
        grid-template-columns: 100%;
        grid-gap: 20px;
    }

    .bonus_footer_overview {
        display: grid;
        padding: 15px;
    }

    .bonus_footer_right {
        margin-left: 0;
    }

    .bonus_footer_left {
        margin: auto;
        padding-bottom: 20px;
    }

    .footer_submenu_lic img {
        width: 28px;
        margin-right: 5px;
    }

    .footer_grid {
        display: grid;
        grid-gap: 15px;
        gap: 15px;
        grid-template-columns: auto auto;
        align-items: flex-start;
        padding-bottom: 40px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(85, 101, 126, .15);
    }

    .mobile_footer .footer_submenu_lic {
        justify-content: left;
        flex-flow: wrap;
        grid-gap: 5px;
        width: 140px;
    }

    .announcementpopupimg img {
        width: 250px;
        margin: auto;
    }

    #announcementpopup .carousel-control-next {
        right: 0;
        top: 0;
    }

    .logo img {
        width: 100%;
    }

    .desktop_view {
        display: none;
    }

    .mobile_view {
        display: block;
    }

    .promo-img {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-bg ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .ms-ttl {
        font-size: 17px;
    }

    .ms-amt {
        font-size: 17px;
    }

    .tour-btn {
        flex-direction: column;
        gap: 20px;
    }

    .check-in ul img {
        height: 80px;
    }

    .check-in ul {
        display: grid;
        justify-content: center;
        position: relative;
        grid-template-columns: repeat(3,1fr);
        /* top: -60px; */
        gap: 10px;
        align-items: center;
        justify-items: center;
    }

    .check-iteam {
        position: relative;
        margin-bottom: 0px;
    }

    .check-in {
        background: none;
    }

    .token {
        margin-bottom: 40px;
    }

    .check-in p {
        text-align: center;
    }

    .btn-token {
        font-size: 18px !important;
    }

    .tab-pay ul {
        grid-template-columns: repeat(3,1fr);
        gap: 5px;
    }

        .tab-pay ul a {
            font-size: 13px;
            min-height: 60px;
        }

    .amt-qr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-direction: column;
    }

    .qr-info {
        font-size: 12px;
        width: 100%;
    }

    .add-btn {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        flex-direction: column-reverse;
    }

    .transfer-btn {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .trans_btn {
        width: 100%;
        white-space: nowrap;
    }

}

@media (max-width: 600px) {
    .filt-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
        margin: 30px 0;
    }

    .contact_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

@media (max-width: 400px) {
    .trans_btn {
        padding: 10px;
    }
}


/* afterlogin */
/* afterlogin */
.after_login_indexbtn {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 15px 0;
    background-color: #161f2c;
    border-radius: 8px;
}

.after_login_indexbtn_left {
    padding: 8px 5px;
    width: 50%;
    padding-right: 0;
}

    .after_login_indexbtn_left .top {
        display: flex;
        align-items: center;
        color: #f9a51a;
        border: 1px solid #6c757d;
        padding: 2px 4px;
        border-radius: 80px;
        gap: 7px;
        width: fit-content;
        position: relative;
    }

        .after_login_indexbtn_left .top img {
            width: 19px;
        }

.top_text {
    text-decoration: underline;
    font-size: 13px;
}

.after_login_indexbtn_left .top i {
    font-size: 14px;
}

.after_login_indexbtn_left .bottom {
    display: flex;
    align-items: center;
    margin-top: 7px;
}

.bottom_txt {
    display: flex;
    align-items: center;
    color: var(--masFont);
    font-size: 11px;
    line-height: 2;
}

    .bottom_txt span {
        color: #f9a51a;
        padding: 0 7px;
        font-size: 12px;
    }

.after_login_indexbtn_right {
    background-color: #462fcd;
    padding: 0 5px;
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    width: 50%;
    align-items: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.after_login_indexbtn_right_img {
    width: 35px;
}

.after_login_indexbtn_right_txt {
    color: #fff;
    font-size: 11px;
}

.amt_pop_wrapper {
    opacity: 0;
    visibility: hidden;
}

    .amt_pop_wrapper.show {
        opacity: 1;
        visibility: visible;
    }

.amt_pop {
    z-index: 10;
    position: absolute;
    padding: 13px;
    background-color: #29374b;
    border-radius: 10px;
    border: 1px solid rgb(39, 43, 55);
    box-shadow: rgba(39, 43, 55, 0.79) 0px 2px 3px;
    top: 113%;
    left: 0px;
    min-width: 260px;
}

.wallet_list {
    max-height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-right: 0;
    /* width: 320px; */
}

    .wallet_list .main-wallet {
        height: 35px;
        display: flex;
        justify-content: space-between;
        background-color: #523fbe;
        border-radius: 4px;
        padding: 5px 10px;
        align-items: center;
    }

        .wallet_list .main-wallet span, .wallet_list .main_alllisting span {
            font-size: 13px;
            color: #fff;
        }

    .wallet_list .main_alllisting {
        height: 35px;
        display: flex;
        justify-content: space-between;
        background-color: #51698d;
        border-radius: 4px;
        padding: 5px 10px;
        align-items: center;
    }

.btn_in {
    border: none;
    background-color: greenyellow;
    border-radius: 4px;
    color: #000;
}

.btn_out {
    border: none;
    background-color: rgb(255, 47, 47);
    border-radius: 4px;
    color: #fff;
}

.main_alllistingspan {
    display: flex;
    gap: 6px;
    align-items: center;
}

.after_login_indexbtn_right_box {
    position: relative;
}

.more_body {
    padding: 15px;
    background-color: #25293e;
    position: absolute;
    z-index: 10;
    border-radius: 10px;
    right: 0;
}

.more_body_wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

    .more_body_wrapper a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .more_body_wrapper a img {
            width: 25px;
        }

        .more_body_wrapper a .more_body_txt {
            color: #fff;
            font-size: 10px;
            text-align: center;
        }

.account_head {
    padding: 12px;
    border-radius: 0 0 16px 16px;
    background-image: url(../images/afterlogin/vip_card.png), linear-gradient(129deg, #1b1e2f 4%, #1b1e2f 96%);
    background-position: center;
    background-size: cover;
}

.account_head_top {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
}

.account_head_top_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account_head_top_logo {
    width: 70px;
}

.account_head_top_left_wrap {
    display: flex;
    flex-direction: column;
}

    .account_head_top_left_wrap span {
        color: #fff;
        font-size: 13px;
    }

.acc_right_flex_a {
    position: relative;
    width: fit-content;
    padding-right: 12px;
}

    .acc_right_flex_a i {
        color: #969ab4;
        font-size: 18px;
    }

.account_head_top_logo_wrap {
    border: 1px solid #6c7ba8;
    border-radius: 100px;
}

.acc_right_flex_a .badge {
    position: absolute;
    top: -40%;
    right: 0px;
    padding: 3px;
    border-radius: 50%;
    background: red;
    color: white;
    width: 17px;
    height: 17px;
}

.profile_icon {
    border: 1px solid rgb(70, 74, 97);
    background-color: #2d3041;
    color: #fff;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 32px;
    border-radius: 80px;
    padding: 2px 8px;
    gap: 6px;
}

.acc_right_flex {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding-right: 10px;
    gap: 7px;
}

.account_head_btm {
    margin-top: 15px;
}

.account_head_btmgrid {
    display: grid;
    grid-template-columns: 50% 50%;
}

.account_head_btmgrid_left {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.account_head_btmgrid .top {
    color: #fff;
    font-size: 12px;
}

.account_head_btmgrid .btm {
    display: flex;
    align-items: center;
    color: #fad017;
    position: relative;
}

    .account_head_btmgrid .btm img {
        width: 19px;
    }

    .account_head_btmgrid .btm span.btmspan {
        margin-right: 14px;
        font-weight: 600;
    }

.border_head {
    border: 1px solid rgb(94, 105, 157);
    height: 20px;
    margin: 0 10px;
}

.account_head_btmgrid_right_grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    text-align: center;
}

    .account_head_btmgrid_right_grid a {
        color: #fff;
        font-size: 10px;
        display: flex;
        flex-direction: column;
        gap: 7px;
        justify-content: center;
        text-align: center;
    }

        .account_head_btmgrid_right_grid a img {
            width: 36px;
            margin: auto;
        }

.account_body {
    padding: 10px;
}

.account_vip_bg {
    background-image: url(../images/afterlogin/vip_card.png), linear-gradient(129deg, rgb(50, 39, 151) 4%, rgb(43, 0, 146) 96%);
    padding: 15px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 9; /* Ensure it is below the .amt_pop */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .backdrop.show {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

.body_main {
    padding-top: 55px;
    padding-bottom: 80px;
}

.account_bodymain {
    padding-bottom: 80px;
    /* background-color: #131524; */
}

.after_login_indexbtn {
    display: none;
}

@media (max-width: 999px) {
    .after_login_indexbtn {
        display: flex;
    }
}
