@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

@font-face {
    font-family: "digitalnumber";
    src: url("../webfonts/digitalnumbers-regular.ttf");
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    font-size: 15px;
    margin: 0 auto;
    color: #ffffff;
    background: #000 url(../images/theme-1/index/PC-Background-d2a73e39.jpg) no-repeat center top;
    background-size: 100%;
}

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: 180px;
    transition: padding 0.1s ease-in-out;
    overflow-x: hidden;
}

    body.body_main_wrap.body_main_container {
        /* padding-left: 232px; */
        transition: padding 0.1s ease-in-out;
    }

.logo img {
    width: 215px;
}

.t-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
    z-index: 105;
    padding: 0 10px;
    background: #00000024;
    transition: background-color 0.3s ease;
}

    .t-header.scrolled {
        background-color: #000000e6;
        /* Darker background color */
    }

.head_top_wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
}

.pen-img img {
    max-height: 30px;
}

header {
    background-color: #24262b;
    background-image: linear-gradient(#002395, #007a4d);
    height: 95px;
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 0;
    z-index: 104;
    border-bottom: 1px solid #008aff;
}

    header:after {
        content: "";
        /* background-image: url(../images/theme-1/header/shape.png); */
        position: absolute;
        width: 304px;
        height: 100%;
        left: 0;
        top: 0;
        background-size: contain;
        pointer-events: none;
        background-repeat: no-repeat;
        background-image: linear-gradient(to right, black, transparent);
    }

.header_left {
    display: flex;
    align-items: center;
    z-index: 1;
}

.head_top_wrap ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    justify-content: end;
}

    .head_top_wrap ul li a {
        font-size: 12px;
        position: relative;
    }

.logo_desktop {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    justify-content: center;
}

.header_hamburger {
    background-color: transparent;
    border: none;
    display: 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;
    height: 100%;
    padding-right: 0;
    grid-gap: 15px;
}

.btn_container {
    border-radius: 25px;
    font-size: 15px;
    padding: 10px 17px;
    color: #000;
    font-weight: 600;
    border: none;
    margin: 0 0px;
    height: 100%;
    width: 105px;
}

.btn_log {
    background: #ffffff;
}

.btn_reg {
    position: relative;
    background: #faca46;
    overflow: hidden;
    animation: glow 1.5s infinite;
    box-shadow: 0 0 5px #faca46;
}

@keyframes glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px #faca46;
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 10px #faca46, 0 0 40px #faca46;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px #faca46;
    }
}

.header_right {
    display: flex;
    align-items: center;
}

.chat_btn {
    background-color: transparent;
    border: none;
    margin-left: 20px;
}

.headermenu_mobile {
    display: none;
}

.headermenu_desktop {
    padding: 15px 0;
}

    .headermenu_desktop ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        grid-gap: 15px;
        justify-content: center;
    }

        .headermenu_desktop ul li a {
            text-transform: capitalize;
            font-weight: 600;
            font-size: 12px;
            color: #fff;
            background-color: transparent;
            border-radius: 0;
            padding: 5px 0;
            display: block;
            border-bottom: 2px solid transparent;
        }

            .headermenu_desktop ul li a.active,
            .headermenu_desktop ul li a:hover {
                color: #ffcc68;
                border-bottom: 2px solid #ffcc68;
            }

            .headermenu_desktop ul li a img {
                filter: invert(1);
                max-height: 25px;
                margin-right: 10px;
            }

            .headermenu_desktop ul li a.active img,
            .headermenu_desktop ul li a:hover img {
                filter: invert(70%) sepia(88%) saturate(269%) hue-rotate(351deg) brightness(101%) contrast(101%);
            }

.container {
    max-width: 1450px;
}

/*index*/
.main_wrapper {
    padding-bottom: 20px;
}

.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;
    grid-gap: 10px;
}

.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: 95px;
    transition: transform 0.1s 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(2, 1fr);
    grid-gap: 10px;
}

.left_container_bonus_box {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient( to right, rgba(250, 137, 57, 1) 0%, rgba(251, 62, 109, 1) 100% );
    /* padding: 10px; */
}

.left_container_bonus_txt {
    position: absolute;
    flex-direction: column;
    display: flex;
    padding-left: 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;
    padding-bottom: 13px;
}

    .accordion_left_container .link {
        cursor: pointer;
        display: flex;
        padding: 15px 15px 15px 15px;
        color: #b1b1b5;
        font-size: 14px;
        font-weight: 700;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        align-items: center;
        position: relative;
    }

        .accordion_left_container .link img {
            width: 16px;
            margin-right: 10px;
            filter: invert(1);
        }

    .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: 18px;
        right: 12px;
        font-size: 18px;
        color: #b1b1b5;
        -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;
    background: #24314a;
    border-radius: 10px;
}

    .side_menu_content li a {
        display: flex;
        align-items: center;
        padding: 7px 10px 7px 10px;
        color: #93acd3;
        font-weight: 700;
    }

        .side_menu_content li a:hover {
            color: #fff;
        }

        .side_menu_content li a img {
            width: 35px;
            margin-right: 6px;
        }

.chat_ser {
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 2px 10px;
    color: #ffffff;
    margin: 20px 0 10px 0;
    background-color: #1c2532;
    border-radius: 10px;
}

    .chat_ser:hover {
        color: #fff;
    }

    .chat_ser img {
        width: 35px;
        margin-right: 6px;
    }

.btn_dropup_lang {
    width: 100%;
}

    .btn_dropup_lang button {
        background: none;
        border: none;
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding-left: 19px;
    }

.head_top_wrap .btn_dropup_lang button {
    /* background: none; */
    /* border: none; */
    /* border-radius: 10px; */
    /* display: flex; */
    /* align-items: center; */
    /* padding: 0; */
}

.btn_dropup_lang button img {
    width: 30px;
}

.dropup.btn_dropup_lang .dropdown-toggle::after {
    right: 15px;
    position: absolute;
}

.head_top_wrap .dropup.btn_dropup_lang .dropdown-toggle::after {
    right: 15px;
    position: absolute;
    display: none;
}

.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: 10px 15px;
    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: block;
}

    .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: #ffb612;
        color: #040404;
    }

    .filter-button img {
        width: 28px;
        margin-right: 5px;
    }

.tabs_product {
    /* margin: 20px 0; */
}

.tab_wrapper {
    display: flex;
    align-items: center;
    background-color: #1d2a43;
    border-radius: 10px;
    padding: 10px;
    justify-content: space-between;
}

.tab_wrapper_inn {
}

.searchinput {
    background-color: #262629;
    border: 1px solid #515151;
    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: #171f2b;
        padding: 6px 13px;
        border-radius: 8px;
        color: #93acd3;
    }

.slider_title {
    color: #ffffff;
    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;
}

    .arrow_slider_wrp.arrow_slider_wrp_slots_custom {
        display: flex;
        align-items: center;
        justify-content: end;
    }

.pro-wrp {
    background: #292929 !important;
}

.swiper-wrapper-custom-slots .swiper-slide-active .hotgame-main-img_pro {
    background-color: #ffb612;
}

    .swiper-wrapper-custom-slots .swiper-slide-active .hotgame-main-img_pro img {
        filter: brightness(7.5);
    }

.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;
    cursor: pointer;
}

.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_wrap_img img {
        width: 100%;
    }

.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;
}

.daily_view {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px 5px 5px;
    gap: 10px;
}

    .daily_view a {
        font-weight: 600;
        font-size: 12px;
        min-width: 150px;
    }

.btn-more {
    color: #fff;
    background: #2177dd;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
}

.btn-challenge {
    background: #ed1d49;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
}

.battle_card_timer {
    padding: 9px 15px;
    width: 160px;
    height: 51px;
    background: hsla(0, 0%, 100%, 0.18);
    border: 1px solid hsla(0, 0%, 100%, 0.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: 0.04em;
    text-transform: uppercase;
    color: #000;
    opacity: 0.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: -0.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: -0.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, 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: 0.04em;
    text-transform: uppercase;
    opacity: 0.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: -0.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: -0.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 {
        font-weight: 600;
    }

.desktop_footer {
    /* margin-top: 20px; */
    background-color: #262629;
}

.footer_grid {
    display: flex;
    grid-gap: 15px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #828284;
}

.footer-wrap {
}

.f-1 {
    display: grid;
    grid-template-columns: 30% 30% auto;
    width: 70%;
}

.footer_submenu ul {
    display: flex;
}

    .footer_submenu ul li {
        margin-right: 10px;
    }

.footer_submenu img {
    max-height: 40px;
}

.footer_submenu p {
    color: #828284;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 16px;
    display: block;
    font-size: 13px;
}

.footer_submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer_submenu ul 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 0.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: 94px;
    }

.footer_submenu_con {
    color: #5c6c84;
    font-size: 11px;
    line-height: 1.5;
}

.footer_lic_logo {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(85, 101, 126, 0.15);
    display: flex;
    justify-content: center;
}

    .footer_lic_logo img {
        width: 120px;
    }

.footer_social_logo {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(85, 101, 126, 0.15);
    display: flex;
    justify-content: left;
    grid-gap: 7px;
}

    .footer_social_logo img {
        width: 28px;
    }

.footer_copyright {
    font-size: 11px;
    color: #ffffff;
    font-weight: 600;
}

.footer-des {
    color: #828284;
    font-size: 12px;
    margin-bottom: 10px;
}

.footer-co-link {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-nav-link {
    display: flex;
    justify-content: space-between;
    grid-gap: 15px;
    align-items: center;
}

    .footer-nav-link ul {
        display: flex;
    }

        .footer-nav-link ul li a {
            margin-right: 20px;
            font-size: 12px;
        }

        .footer-nav-link ul li:last-child a {
            margin-right: 0;
        }

.footer-language {
    font-size: 12px;
}

    .footer-language i {
        margin-right: 10px;
    }

/*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 0.3s;
    font-size: 11px;
    line-height: 2.2;
    cursor: pointer;
}

.mobile_footer .footer_submenu_lic {
    justify-content: center;
}

.mobile_footer .footer_lic_logo img {
    width: 85px;
}

.mobile_footer .footer_lic_logo_wrap {
    text-align: center;
}

.mobile_footer .footer_social_logo {
    display: flex;
    flex-flow: wrap;
}

.footer-menu {
    position: fixed;
    bottom: 0px;
    background: #161110;
    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: 11px;
        color: #2283f6;
    }

        .footer-in ul li a img {
            width: 30%;
        }

.footer-menu {
    display: none;
}

.footer-in ul li a:not([href]):not([tabindex]) {
    color: #2283f6;
    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: #1a1a1a;
    padding: 0;
    border-radius: 17px;
}

.share_modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: #faca46;
    text-shadow: 0 1px 0 #faca46;
    opacity: 1;
    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 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
    border: 2px solid transparent;
    color: #8b8b8b;
    background-color: transparent;
    font-size: 12px;
    border-radius: 10px;
    padding: 5px 10px;
    border-radius: 3rem;
}

    .modalhead_btn.active {
        background-color: #faca46;
        color: #000;
    }

.share_modal .modal-content {
    background-color: transparent;
    border: none;
}

.input_inner {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #3b3b3b;
    transition: color 0.1s ease-in-out, border-color 0.1s ease-in-out;
    height: 44px;
    border-radius: 10px;
    padding: 0 14px;
    margin-bottom: 10px;
}

    .input_inner i {
        color: #faca46;
        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 {
    display: flex;
    width: auto;
    grid-gap: 8px;
    justify-content: space-between;
}

    .input_inner_forgot a {
        border-bottom: 1px solid #faca46;
        font-size: 12px;
    }

.btn_login_modal {
    background-color: #faca46;
    color: #000;
    padding: 7px;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin: 20px 0;
}

.inn_slider_wrp {
    margin: 15px 0;
}

.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: 10px;
        }

.game-preview__hover {
    background-color: rgba(27, 34, 51, 0.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 0.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(0.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: block;
}

    .content_header .carousel-inner {
        border-radius: 10px;
    }

.content_header_txt {
    color: #55657e;
    max-width: 400px;
    font-size: 15px;
    line-height: 1.3;
    margin: auto;
    position: absolute;
    bottom: 18px;
    font-weight: 500;
}

.ann-sec {
    background: none;
    padding: 15px 0;
}

.ann-wrap {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

    .ann-wrap .ann-icon {
        width: 5%;
    }

.home-fiba-countdown {
    background: no-repeat center / 100% url(../images/theme-1/index/fiba-content.png?v2), no-repeat center / 100% url(../images/theme-1/index/FIBA-BG3x-9e6bffed.png?v2);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 120px;
    border-radius: 16px;
    padding-right: 35px;
}

.home-fiba-countdown-justify-text {
    color: #a5a6ac;
    letter-spacing: 9px;
    display: none;
}

.home-fiba-countdown-numbers {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    height: 58px;
    width: 245px;
    font-size: 14px;
    transform: translateY(13px);
}

    .home-fiba-countdown-numbers span {
        position: relative;
        z-index: 1;
        margin: 0 0 4px;
        font-family: "digitalnumber";
        font-size: 22px;
        color: #feba01;
        line-height: 36px;
    }

.game-wrapper {
    display: grid;
    gap: 16px;
    margin-top: 32px;
    grid-template-columns: 67% 1fr;
}

    .game-wrapper .game-wrapper_agbox {
        grid-row: span 2;
        position: relative;
    }

.game-wrapper_ag {
    border-radius: 15px;
    padding: 22px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    width: 100%;
    background: transparent;
}

.game-wrapper_ag-list {
    display: flex;
    color: #f9f5f3;
    line-height: 28px;
}

    .game-wrapper_ag-list .title {
        color: #ffba00;
    }

        .game-wrapper_ag-list .title span {
            margin-right: 6px;
        }

    .game-wrapper_ag-list ul {
        display: flex;
    }

        .game-wrapper_ag-list ul li {
            margin-right: 12px;
        }

            .game-wrapper_ag-list ul li i {
                margin-right: 8px;
                font-weight: 900;
                font-style: normal;
            }

.game-wrapper_ag-join {
    margin-top: 72px;
}

    .game-wrapper_ag-join h2 {
        font-size: 44px;
        line-height: 1.5;
    }

    .game-wrapper_ag-join p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 18px;
        color: #cbd6ff;
    }

.game-wrapper_ag button {
    margin-top: 32px;
    border-radius: 4px;
    background: #ffffff;
    padding: 0 24px;
    font-size: 16px;
    line-height: 40px;
    border: none;
    color: #324466;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

    .game-wrapper_ag button .iconfont {
        margin-left: 4px;
    }

    .game-wrapper_ag button:hover {
        background: #ffb01b;
        color: #071e5e;
    }

.game-wrapper .game-wrapper_agbg2 {
    z-index: 2;
    background: no-repeat right / contain url(/assets/PC\ Live-Human@2x-1df1a2b2.png), transparent;
}

.game-wrapper .game-wrapper_agbg {
    background: no-repeat right / contain url(../images/theme-1/index/PC\ Live-Human2x-1df1a2b2.png), no-repeat top / cover url(../images/theme-1/index/PC\ Live2x-af6e703d.png), linear-gradient(129.67deg, #4a00e0 0%, #6717a6 51%, #220959 100%);
}

.game-wrapper .ag-card {
    position: relative;
    display: flex;
    background-color: #26134e;
    padding: 16px 0 16px 16px;
    overflow: hidden;
    cursor: pointer;
    height: 156px;
    border-radius: 15px;
}

.game-wrapper .ag-card,
.game-wrapper .ag-card-arrow {
    transition: all 0.15s ease-in-out;
}

    .game-wrapper .ag-card:hover {
        background-color: #60159b;
    }

        .game-wrapper .ag-card:hover .ag-card-arrow {
            background-color: #702ca1;
        }

.game-wrapper .ag-card-img {
    width: 164px;
    border-radius: 16px;
}

.game-wrapper .ag-card-img_pp {
    background: no-repeat center / 85% url(../images/theme-1/index/logo-pp.png) rgba(255, 255, 255, 0.05);
}

.game-wrapper .ag-card-img_evo {
    background: no-repeat center / 85% url(../images/theme-1/index/logo-evo.png) rgba(255, 255, 255, 0.05);
}

.game-wrapper .ag-card-content {
    flex: 1;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

    .game-wrapper .ag-card-content h5 {
        font-size: 24px;
        line-height: 32px;
    }

    .game-wrapper .ag-card-content ul {
        display: flex;
    }

        .game-wrapper .ag-card-content ul li {
            white-space: pre-wrap;
            margin-right: 8px;
        }

    .game-wrapper .ag-card-content p {
        font-size: 12px;
        color: #abacfd;
        margin: 0;
    }

.game-wrapper .ag-card-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #311f57;
}

    .game-wrapper .ag-card-arrow span {
        transform: rotate(90deg);
        color: #7b7b9d;
        font-size: 24px;
    }

/*promotion*/
.intro_promotion {
    min-height: 150px;
    justify-content: center;
}

.intro_promotion_title {
    font-size: 34px;
    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: 8px;
    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: #6a6a6a;
}

    .filter-list li:hover {
        background: linear-gradient( to right, rgba(106, 180, 248, 1) 1%, rgba(46, 130, 208, 1) 100% );
        color: #fff;
    }

    .filter-list li.mixitup-control-active {
        background: linear-gradient( to left, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
        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: #262629;
    border-radius: 10px;
    padding: 8px;
    justify-content: space-between;
}

.promo_box_wrap {
    background-color: #202a39;
    border-radius: 10px;
    overflow: hidden;
}

    .promo_box_wrap img {
        width: 100%;
    }

.promo_box_wrap_inn {
    padding: 15px;
    background-color: #262629;
}

    .promo_box_wrap_inn p {
        font-weight: 800;
        font-size: 21px;
        margin-bottom: 3px;
        line-height: 1.5;
    }

    .promo_box_wrap_inn span {
        color: #faca46;
        font-size: 13px;
    }

.promo_box_wrap_a {
}

    .promo_box_wrap_a a {
        color: #faca46;
        border: 1px solid #faca46;
        padding: 5px 10px;
        border-radius: 26px;
        font-size: 11px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-top: 11px;
    }

.filt-container {
    display: grid;
    grid-template-columns: repeat(4, 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: linear-gradient( to left, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
    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: #2283f6;
    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: #ffffff;
            background-color: #2283f6;
        }

.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;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.afterlogin_dep_headbody_wrap {
    overflow: hidden;
    border-radius: 1rem;
}

    .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;
    flex-direction: column;
}

    .head_col_1 span {
        font-weight: 600;
    }

.m-show {
    display: none;
}

.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: #2283f6;
    }

.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: #2283f6;
    }

.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, #2283f6 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 {
    color: #ffffff;
    background: linear-gradient( to top, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
    margin-right: 0;
    border-radius: 10px;
}

.header_btn_dep {
    display: flex;
    align-items: center;
    background-color: #1a1c21;
    border-radius: 0.5rem;
    padding: 0px 0px 0 10px;
}

    .header_btn_dep span {
        margin-right: 10px;
    }

.headusericon {
    width: 25px;
    border-radius: 50px;
}

.head_afterlogin_custom {
    padding-right: 20px;
}

    .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: radial-gradient(circle at top, #ffb612 41%, #de3931 69%);
    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, 0.3);
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #fff;
}

.form_label {
    margin-bottom: 2px;
    font-weight: 700;
    position: relative;
}

.form-control:focus {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #faca46;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #faca46;
}

.form_wrap {
    margin-top: 22px;
}

.label_wrap {
    display: flex;
    justify-content: space-between;
}

.form_label_notis {
    font-size: 12px;
}

.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, 0.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, 0.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 .backbtn {
        background-color: rgba(222, 227, 240, 0.15);
        height: 52px;
        border-radius: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        color: #fff;
        border: none;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .submit_btn_wrap .paybtn {
        background-color: #ff7400;
        height: 52px;
        border-radius: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        color: #fff;
        border: none;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.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, 0.15);
        height: 44px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(0, 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, 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: #2283f6;
    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, 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, 0.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: #2283f6;
        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: #191b1e;
    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/theme-1/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;
}

.more-btn {
    color: #404657;
    font-size: 16px;
    border-bottom: 1px solid #404657;
    font-weight: 700;
}

.bubbly-button {
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

    .bubbly-button:hover {
        border: 1px solid;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
        outline-color: rgba(255, 255, 255, 0);
        outline-offset: 15px;
        text-shadow: 1px 1px 2px #427388;
    }

.special-wrap {
    grid-column: span 2;
    background: url(../images/theme-1/theme-1/index/BG-e6bbd421.jpg) no-repeat center;
    border-radius: 10px;
}

.index-p-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
}

.top-p-list {
    list-style: disc;
}

.bottom-p-text {
    font-weight: 800;
    font-size: 42px;
    line-height: 1;
}

.grid-container {
    display: flex;
    gap: 10px;
    height: 185px;
}

.content-item {
    flex-grow: 1;
    padding: 0 20px;
    text-align: center;
    transition: 0.8s;
    flex: 1;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    /* padding-top: 10px; */
    border-radius: 10px;
    overflow: hidden;
}

    .content-item.ug {
        background: no-repeat right / auto 100% url(../images/theme-1/index/sport-item-bg-4895bd6a.png), linear-gradient( to right, rgba(217, 91, 22, 1) 0%, rgba(253, 219, 85, 1) 99% );
    }

    .content-item.vivo {
        background: no-repeat right / auto 100% url(../images/theme-1/index/sport-item-bg-4895bd6a.png), linear-gradient( to right, rgba(44, 23, 107, 1) 0%, rgba(42, 103, 232, 1) 100% );
    }

    .content-item.pin {
        background: no-repeat right / auto 100% url(../images/theme-1/index/sport-item-bg-4895bd6a.png), linear-gradient( to right, rgba(160, 31, 40, 1) 0%, rgba(226, 40, 91, 1) 100% );
    }

    .content-item:hover {
        flex: 2;
    }

    .content-item.active {
        flex: 2;
    }

.content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    min-width: 100%;
    text-align: left;
}

    .content-text h3 {
        font-size: 50px;
        text-transform: uppercase;
        font-weight: 700;
    }

.content-item:hover .content-img,
.content-item.active .content-img {
    display: flex;
    width: 45%;
    opacity: 1;
}

.content-item:hover .content-text,
.content-item.active .content-text {
    min-width: 50%;
}

.content-item img {
    max-width: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.content-img {
    width: 30%;
    /* display: none; */
    transition: 0.8s;
    opacity: 0;
    /* height: -webkit-fill-available; */
}

.content-text h5 {
    max-width: 200px;
    font-size: 15px;
}

.product-page-sec {
    padding: 50px 0;
    min-height: 495px;
}

/* VIP */
.vip-sec {
    padding: 40px 0;
}

.vip-banner img {
    object-fit: cover;
    width: 100%;
}

.vip_wrap {
    width: 400px;
    text-align: left;
    margin-left: auto;
    padding-top: 110px;
}

.status_wrapper {
    margin-top: 30px;
}

.vip_tit {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}

.vip_con {
    font-size: 13px;
    margin-bottom: 20px;
}

.vip_status_wrap {
    display: grid;
    grid-template-columns: 300px auto;
    padding-top: 50px;
}

    .vip_status_wrap img {
        width: 235px;
    }

.progress-bar {
    position: relative;
    overflow: hidden;
    height: 30px;
    margin-top: 10px;
    border-radius: 30px;
    background: repeating-linear-gradient( 35deg, #3b3f4c, #3b3f4c 1rem, #111 0, #111 1.2rem );
}

    .progress-bar > span {
        position: relative;
        display: block;
        height: 100%;
    }

        .progress-bar > span:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: repeating-linear-gradient( 35deg, #ee602a, #ee602a 1rem, #111 0, #111 1.2rem );
        }

.current-status-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.current-status h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.status-bottom h6 {
    margin: 0;
    padding: 39px 0 0px;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

    .status-bottom h6:before {
        width: 1px;
        height: 27px;
        position: absolute;
        background: #fff;
        bottom: 20px;
        left: 50%;
        content: "";
        transform: translateX(-50%);
    }

.status-bottom p {
    color: #707070;
    font-size: 9px;
    padding: 7px 0 0;
    line-height: 13px;
    text-align: center;
    font-weight: bold;
}

.vip span {
    text-shadow: 1px 3px 4px #000;
}

.status-bottom span {
    display: block;
}

.grey-color {
    color: #a5a5a5;
}

.gold-color {
    color: #a38842;
}

.blue-color {
    color: #a5c0d4;
}

.purple-color {
    color: #7d6daa;
}

.brown-color {
    color: #e25f39;
}

.elite-color {
    color: #c0a06e;
}

.progress_percent_bronze {
    width: 7%;
}

.progress_percent_silver {
    width: 29%;
}

.progress_percent_gold {
    width: 50%;
}

.progress_percent_platinum {
    width: 72%;
}

.progress_percent_diamond {
    width: 100%;
}

.vip_table {
    color: #ffffff;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

.icon_1st {
    content: "";
    min-height: 28px;
}

.txt_yellow {
    color: #727681;
}

.vip_line hr {
    border-top: 1px solid rgb(175 175 175);
}

table.vip_table tbody tr td:first-child {
    text-align: left;
}

table.vip_table tbody tr td img {
    width: 100px;
}

table.vip_table tbody tr td {
    padding: 10px;
}

    table.vip_table tbody tr td.text-left {
        padding-bottom: 0px;
        padding-top: 12px;
        text-transform: uppercase;
    }

.vip_pri {
    font-size: 20px;
    vertical-align: bottom;
    color: #faca46;
}

.vip_bom_img {
    text-align: center;
    padding-top: 30px;
}

.text-yellow {
    color: #faca46;
}

/* INFO */

.info-bg {
    min-height: 887px;
}

.info-nav ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.info-content {
    /* margin-top: 20px; */
}

    .info-content p {
        font-size: 13px;
        color: #4c6aa3;
    }

.info-title h5 {
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    font-size: 30px;
    font-weight: 700;
}

    .info-title h5::after {
        content: "";
        width: 15%;
        height: 3px;
        background: #ff7d01;
        position: absolute;
        left: 0;
        bottom: -5px;
        display: none;
    }

.info-content .accordion-item {
    margin-bottom: 10px;
    background: none;
    border: none;
}

.info-content .accordion-body {
    background: #1d2a43;
    color: #fff;
    border: 1px solid #454545;
    border-radius: 5px;
    font-size: 13px;
    padding: 10px;
}

.info-center .accordion-body p {
    color: #fff;
}

.info-nav ul li a {
    background: #1d2a43;
    margin-bottom: 5px;
    height: 50px;
    color: #404f6d;
    align-items: center;
    display: flex;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 13px;
}

    .info-nav ul li a.active,
    .info-nav ul li a:hover {
        background: linear-gradient( to bottom, rgba(46, 67, 107, 1) 0%, rgba(29, 42, 67, 1) 99% );
        color: #fff;
        border: 1px solid #7189b9;
    }

.info-center {
    background: linear-gradient( to bottom, rgba(46, 67, 107, 1) 0%, rgba(29, 42, 67, 1) 99% );
    border-radius: 5px;
    padding: 20px;
    min-height: 700px;
    border: 1px solid #666464;
}

.info-content ul {
    font-size: 13px;
}

.info-center .accordion-button {
    background: linear-gradient( to bottom, rgba(46, 67, 107, 1) 0%, rgba(29, 42, 67, 1) 99% );
    border-radius: 6px;
    color: #ffffff;
    width: 100%;
    text-align: initial;
    font-size: 14px;
    padding: 12px;
    border: 1px solid #7189b9;
    box-shadow: none;
}

.info-wrapper {
    font-size: 13px;
    margin-top: 20px;
}

/* BANK */

.bank-table tr.trans td {
    background: #13131375;
    color: #fff;
    border: 1px solid #ffffff;
    padding: 2px;
    font-size: 15px;
    font-weight: 200;
}

.bank-table tr.trans1 td {
    background: #13131375;
    color: #fff;
    border: 1px solid #ffffff;
    padding: 2px;
    font-size: 13px;
}

.bank-table tr.dwbox td {
    background: #ecf0f5;
    color: #000;
    border: 1px solid #ffffff;
    padding: 2px;
}

/* CONTACT */

.contact-box {
    border-radius: 5px;
    text-align: center;
    position: relative;
    margin-top: 30px;
    font-size: 13px;
}

.contact-icon {
    width: 100%;
    display: block;
    margin-bottom: 20px !important;
}

    .contact-icon img {
        max-width: 60px;
    }

.contact-link div:first-child {
    margin-bottom: 10px;
    opacity: 1;
    color: #faca46;
    font-size: 20px;
}

.contact-box a {
    color: #fff;
}

    .contact-box a i {
        margin-left: 10px;
    }

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
}

/* SLOTS */
.pro_wrapper {
    padding: 30px 0;
}

    .pro_wrapper ul {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-gap: 10px;
    }

        .pro_wrapper ul li a {
            display: block;
            background: #1d2a43;
            border-radius: 10px;
        }

            .pro_wrapper ul li a .img-open {
                display: none;
            }

            .pro_wrapper ul li a:hover .img-open,
            .pro_wrapper ul li a.active .img-open {
                display: block;
            }

            .pro_wrapper ul li a:hover .img-close,
            .pro_wrapper ul li a.active .img-close {
                display: none;
            }

.btn-bln {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    height: 100%;
}

/* AFTERLOGIN */
.header-r-af {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-bln {
    background: #ff7400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    border-radius: 32px;
    color: #fff;
    font-weight: bold;
    font-size: 0.8vw;
    border: none;
}

span.ico-dwn {
    color: var(--text-color);
}

.bln-top {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.blc-all {
    font-size: 12px;
    color: #ffffff;
    line-height: 1;
    margin-top: 5px;
}

span.bln-ico {
    color: #ffb800;
    font-size: 20px;
    display: flex;
}

.bln-ttl {
    color: #924708;
    font-size: 12px;
}

span.ico-dwn {
    color: var(--text-color);
}

.txt-wh {
    color: #fff;
}

.bln-top::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid #924708;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.btn-bln::after {
    display: none;
}

.top-down .dropdown-menu {
    background: none;
    min-width: 310px;
    border-radius: 20px;
    padding: 0px;
    margin: 0px;
    border: none;
}

.dropbl {
    background: #212121;
    border-radius: 10px;
    padding: 15px;
}

.btn-bln-all {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    padding-bottom: 10px;
    padding: 10px 10px;
    background: #141414;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-amt {
    display: flex;
    gap: 10px;
    align-items: center;
}

button.btnall {
    padding: 5px 10px;
    border-radius: 10px;
    background: #ff7400;
    color: #fff;
    border: none;
}

    button.btnall:hover {
        background: #075a46;
    }

.bln-all ul {
    display: flex;
    flex-direction: column;
    width: 100% !important;
}

.bln-in {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
}

.bln-all ul li {
    width: 100%;
    margin: 3px 0px;
    border: 1px solid #ffffff00;
    border-radius: 7px;
    padding: 4px 10px;
    cursor: pointer;
    list-style: none;
    background: #141414;
}

.bln-all {
    margin-top: 2px;
    max-height: 500px;
    overflow-y: auto;
}

    .bln-all ul li:hover {
        border: 1px solid #67b7fe;
    }

button.btn-wal {
    background: linear-gradient( to right, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
    height: 39px;
    font-size: 16px;
    border-radius: 40px;
    padding: 0px 24px !important;
    color: #fff;
    display: flex;
    align-items: center;
    border: none;
}

    button.btn-wal i {
        margin-right: 10px;
    }

.dropdown-af {
    display: inline-block;
}

.drop-box {
    padding: 20px 10px;
    background: #121e36;
    margin-top: 12px;
}

.dropdown-af:hover .dropdown-content {
    display: block;
    position: absolute;
    right: 20px;
    animation-duration: 0.5s;
}

.dropdown-content {
    display: none;
    min-width: 298px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.use-img img {
    border-radius: 50px;
    width: 35px;
}

.user-img img {
    height: 40px;
    border-radius: 50px;
}

.progress2 {
    padding: 9px 6px;
    border-radius: 30px;
    user-select: none;
    position: relative;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    background: #24314a;
}

.progress-bar1,
.progress-bar2,
.progress-bar3,
.progress-bar4,
.progress-bar5 {
    height: 10px;
    border-radius: 30px;
    background-image: linear-gradient( to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05) );
    transition: 0.4s linear;
    transition-property: width, background-color;
}

.progress-moved .progress-bar1 {
    width: 20%;
    background-color: #ef476f;
    animation: progressAnimation 6s;
}

.progress-moved .progress-bar2 {
    width: 40%;
    background-color: #ef476f;
    animation: progressAnimation2 6s;
}

.progress-moved .progress-bar3 {
    width: 60%;
    background-color: #ef476f;
    animation: progressAnimation3 6s;
}

.progress-moved .progress-bar4 {
    width: 80%;
    background-color: #4facfe;
    animation: progressAnimation4 6s;
}

.progress-moved .progress-bar5 {
    width: 100%;
    background-color: #ef476f;
    animation: progressAnimation5 6s;
}

.vip-top {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-top: 14px;
}

.nxt-lvl {
    display: flex;
    gap: 10px;
}

span.nxt-xp {
    color: var(--text-color);
}

.lvl-bar {
    user-select: none;
    background-color: #949393;
    position: relative;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
}

.dropbtn {
    background: none;
    border: none;
}

.drop-btn {
    background: #24314a;
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    border: none;
    text-align: left;
}

    .drop-btn ul {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        list-style: none;
        width: 100% !important;
    }

        .drop-btn ul li a {
            font-size: 12px;
            color: #5e697b;
            padding: 6px 10px;
            display: block;
        }

.user-dtl {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.iv-icon {
    margin-right: 10px;
}

button.btn-out {
    /* display: flex; */
    background: none;
    border: none;
    align-items: center;
    font-size: 12px;
}

    button.btn-out i {
        margin-right: 10px;
        font-size: 14px;
    }

.lvl-in img {
    max-width: 45px;
}

.btn-msg {
    background: none;
    border: none;
    color: #55555a;
    font-size: 25px;
}

.af-top-wrap {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 10px;
}

.af-header {
    justify-content: end;
}

.modal-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2283f6;
    padding: 10px 15px;
}

.user_box {
    /* background: #e9e9e9; */
    /* padding: 60px 0; */
    color: #fff;
    position: relative;
}

.af-tab {
    margin-bottom: 15px;
    /* position: absolute; */
    width: 100%;
    /* bottom: -48px; */
}

    .af-tab ul {
        display: grid;
        justify-content: space-between;
        border: none;
        border-radius: 10px;
        background: #191b1e;
        margin-bottom: 20px;
        grid-template-columns: repeat(5, 1fr);
        margin: 0px;
        /* grid-gap: 10px; */
    }

        .af-tab ul li a.active {
            background: linear-gradient( to top, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
            border-radius: 10px;
            color: #fff !important;
        }

        .af-tab ul li a {
            padding: 10px 4px;
            display: block;
            text-align: center;
            align-items: center;
            border: none !important;
            color: #fff;
        }

            .af-tab ul li a p {
                font-size: 12px;
                font-weight: 500;
                margin: 0;
            }

.deposit-wrap {
    background: none;
}

.af-form {
    padding: 15px 0;
    padding-top: 0;
}

.af-content-wrap .mdl-form-box {
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 0;
}

.mdl-form-box {
    top: 35%;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}

.bank-select {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: none;
    margin-bottom: 10px;
    grid-gap: 15px;
}

    .bank-select .nav-link {
        height: 82px;
        font-size: 12px;
        padding: 15px 5px;
        border-radius: 10px;
        text-align: center;
        display: block;
        background: #191b1e;
        border: 1px solid transparent;
    }

        .bank-select .nav-link:focus,
        .bank-select .nav-link:hover {
            border: 1px solid transparent;
        }

        .bank-select .nav-item.show .nav-link,
        .bank-select .nav-link.active {
            background: linear-gradient( to top, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
            border: none;
            color: #fff;
        }

.bank-img {
    height: 40px;
}

.bank img {
    /* filter: invert(1); */
}

.bank-detail {
    background: #191b1e;
    border-radius: 10px;
    padding: 5px 15px;
    color: var(--text-color);
    margin: 15px 0;
}

.bnk-table {
    width: 100%;
}

    .bnk-table tr td {
        font-size: 12px;
        padding: 0px 10px;
    }

.mdl-form-box label {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.mdl-form-box .form-control {
    color: #ffffff;
    background: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    min-height: 52px;
}

.btn-group-dep {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.upload-file {
    display: flex;
    position: relative;
    justify-content: space-between;
    width: 100%;
}

.btn-file {
    padding: 8px 20px;
    height: 37px;
    top: 0px;
    position: relative;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    width: 100%;
    color: #fff;
    border: none;
    background: linear-gradient( to top, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
    margin: 0;
    text-align: center;
}

.custom-file-input {
    position: absolute;
    z-index: 2;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    font-size: 12px;
}

.blnc {
    width: 70%;
}

.mdl-form-box h4 {
    text-align: center;
    color: #000;
    font-size: 17px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.blnc .panel-default > .panel-heading a {
    display: block;
    padding: 14px;
    font-size: 14px;
    background: #0c1a29;
    border-radius: 10px;
    margin-bottom: 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.important-notice {
    background: #2c2e34;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
}

    .important-notice h5 {
        font-size: 14px;
        color: #ffcc68;
        margin-bottom: 10px;
    }

        .important-notice h5 i {
            color: #ec1d31;
            margin-right: 10px;
        }

    .important-notice .fa-angle-up {
        color: #ffcc68;
    }

    .important-notice ul {
        padding-left: 10px;
        font-size: 12px;
        padding-left: 21px;
    }

.af-modal .modal-content {
    background: #000;
}

.af-modal .modal-body {
    padding: 0;
    background: #121e36;
}

.msg_icon {
    color: #fff;
}

.aff-ico img {
    filter: invert(1);
}

button.close {
    color: #fff;
    opacity: 1;
}

.amt-box ul {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    list-style: none;
}

    .amt-box ul li button:hover,
    .amt-box ul li button.active {
        background: #ff7400;
    }

    .amt-box ul li button {
        background: #919295;
        border: none;
        padding: 7px;
        border-radius: 5px;
        color: #fff;
        font-size: 15px;
    }

.btn-smt {
    background: #ff7400;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    width: 100%;
    height: 37px;
    font-size: 14px;
    text-transform: uppercase;
}

.amt-box {
    position: relative;
}

.btn-dt {
    background: none;
    color: #fff;
    position: absolute;
    bottom: 2px;
    right: 0px;
    padding: 1px 14px;
    font-size: 21px;
    border: none;
}

.history-nav {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

    .history-nav li a {
        background: #121e36;
        border-radius: 5px;
        display: block;
        padding: 10px;
        text-align: center;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        color: #000;
    }

        .history-nav li a:hover,
        .history-nav li a.active {
            background: #2283f6 !important;
            color: #fff !important;
        }

.tranc-table tr td {
    color: #424242;
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.tranc-table tr th {
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 12px;
    color: var(--text-color);
    text-transform: uppercase;
}

.tranc-table tr {
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

    .tranc-table tr:nth-child(even) {
        background: #ffffff;
    }

.af-modal {
    padding: 0px;
    /* width: 100%; */
}

    .af-modal .modal-body {
        padding: 0px;
        position: relative;
    }

.modal-dialog.af-modal {
    max-width: 464px;
    border-radius: 20px;
}

.af-modal .modal-content {
    background: none;
    border: none;
    border-radius: 20px;
}

.af-fm-ttl-us {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}

.af-modal .close {
    position: absolute;
    right: 18px;
    font-size: 20px;
    z-index: 1;
    color: var(--text-color);
    top: 13px;
}

.item-box.user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    margin-bottom: 15px;
}

.item-box.uer-bln {
    background: #0c1a29;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.top-bx-l {
    display: flex;
    font-size: 12px;
}

.top-box {
    margin-top: 15px;
}

    .top-box ul {
        display: flex;
        list-style: none;
        justify-content: space-between;
        align-items: center;
    }

        .top-box ul li {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }

.amt-ttl {
    color: #fff;
}

.top-bx-l {
    display: flex;
    font-size: 12px;
}

.top-box-fav {
    margin-top: 15px;
}

    .top-box-fav ul {
        display: flex;
        list-style: none;
        flex-direction: column;
    }

.img-ttl {
    width: 25%;
}

.fav-gm {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    width: 100%;
}

.fav-l {
    font-size: 12px;
    color: #5e697b;
}

    .fav-l h4 {
        font-size: 14px;
        color: var(--text-color);
    }

.fav-r {
    font-size: 12px;
    text-align: right;
}

.tp-t {
    color: #fff;
}

.msg-wrap {
    display: flex;
    font-size: 12px;
}

.msg-l {
    border: 1px solid #2283f6;
}

.msg-r {
    padding: 15px;
    border: 1px solid #2283f6;
}

.msg-l .nav-tabs {
    border: none;
}

.msg-l ul {
    border-radius: 0px;
}

    .msg-l ul li {
        border-radius: 0px;
        padding: 0 !important;
    }

        .msg-l ul li a.active,
        .msg-l ul li a:hover {
            background: #2283f6 !important;
            color: #fff !important;
            border: 1px solid #fff0 !important;
        }

.msg-l a {
    padding: 15px 5px;
    border-radius: 0px !important;
    line-height: 13px;
}

.bnk-table .btn-outline-secondary {
    border: none;
}

.lvl-in-top img {
    max-width: 40px;
    margin-right: 10px;
}

.pen-img {
    justify-content: start !important;
}

/* MOBILE */
.mobile-menu-wrap {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    padding: 10px 0;
}

.mobile-menu {
    width: 5%;
}

    .mobile-menu img {
        /* width: 100%; */
    }

.btn_dropup_lang {
    width: auto;
}

.mobile-menu-wrap ul {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    width: 65%;
    justify-content: end;
}

.btn_dropup_lang button {
    padding: 1px;
    text-align: center;
}

.mobile-btn-list li:last-child {
    /* width: 19%; */
    text-align: center;
}

.mobile-logo {
    width: 35%;
}

.dropup.btn_dropup_lang .dropdown-toggle::after {
    display: none;
}

.menu-dropup {
    background: #24314a;
    border-radius: 10px;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
}

    .menu-dropup button {
        width: 100%;
        position: relative;
        color: #b1b1b5;
        font-weight: 700;
        font-size: 14px;
    }

.function-link {
    background: #24314a;
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 15px;
}

    .function-link li {
        text-align: center;
    }

        .function-link li a i {
            font-size: 30px;
        }

.menu-dropup button .fa-chevron-right {
    position: absolute;
    top: 3px;
    right: 2px;
    font-size: 18px;
    color: #b1b1b5;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.menu-dropup button i {
    margin-right: 10px;
}

.menu-dropup button img {
    margin-right: 10px;
}

.sidemenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.side-h-l {
    display: flex;
    align-items: center;
}

    .side-h-l img {
        max-height: 30px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .side-h-l a {
        font-size: 14px;
        font-weight: 500;
    }

.side-h-r button {
    background: #464653;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.accordion_left_container svg {
    margin-right: 10px;
    max-width: 18px;
}

.download-bt {
    background: #202532;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 5px;
}

/*download*/

.download-sec {
    background: url(../images/theme-1/bg-general.jpg) no-repeat center top;
    padding: 30px 0;
}

.downloadTab .nav-pills .nav-link {
    background: #1d2a43;
    margin-bottom: 5px;
    height: 50px;
    color: #404f6d;
    align-items: center;
    display: flex;
    border: 1px solid #1d2a43;
}

    .downloadTab .nav-pills .nav-link.active,
    .downloadTab .nav-pills .nav-link:hover {
        background: linear-gradient( to bottom, rgba(46, 67, 107, 1) 0%, rgba(29, 42, 67, 1) 99% );
        color: #fff;
        border: 1px solid #7189b9;
    }

.downloadbody {
    text-align: center;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}

.ndl-btn {
    background: #fff;
    color: #000;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 15px;
    width: 78%;
}

    .ndl-btn:hover,
    .ndl-btn:focus {
        color: #ffffff;
        background: linear-gradient( to top, rgba(88, 215, 26, 1) 0%, rgba(27, 74, 4, 1) 100% );
    }

.adl-btn {
    background: #fff;
    color: #000;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 15px;
    width: 78%;
}

    .adl-btn:hover,
    .adl-btn:focus {
        color: #000000;
        background: #b7b7b7;
    }

.dl {
    max-width: 500px;
    margin: auto;
    margin-top: 20px;
}

    .dl table {
        border-collapse: collapse;
        width: 100%;
        font-size: 12px;
    }

        .dl table th {
            border: 1px solid #ffffff;
            text-align: center;
            padding: 8px;
            background-color: #ecf0f5;
            color: #000;
            text-transform: uppercase;
            font-weight: 500;
        }

        .dl table td {
            text-align: left;
            padding: 8px;
            background-color: #252525;
            border: 1px solid #ffffff;
            color: #ffffff;
        }

    .dl .username_custom {
        color: #faca46;
    }

.downloadboxContent {
    padding: 20px;
    border: 1px solid #666464;
    background: linear-gradient( to bottom, rgba(46, 67, 107, 1) 0%, rgba(29, 42, 67, 1) 99% );
    border-radius: 5px;
}

/*downloadEND*/
/* CONTACT */
.contact .modal-body {
    padding: 15px 25px;
}

.contact-1 {
    grid-gap: 15px;
    display: grid;
}

    .contact-1 a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #ffffff21;
        padding: 10px 15px;
        border-radius: 10px;
        grid-gap: 10px;
        color: #fff;
    }

    .contact-1 p {
        margin: 0;
        color: #b8b7bb;
    }

.contact-img img {
    max-width: 100%;
}

.contact-img {
    width: 15%;
}

.contact-text {
    width: 85%;
}

.contact-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

    .contact-2 li a {
        text-align: center;
        background: #ffffff21;
        display: block;
        border-radius: 10px;
        padding: 10px;
    }

        .contact-2 li a img {
            max-height: 58px;
            margin: 0 auto;
        }

.contact h5 {
    margin: 10px 0;
}

.overflow-row {
    overflow: auto;
}

.vip-slide .swiper {
    position: relative;
}

.mobile-logo img {
    max-height: 80px;
}

.user-lv {
    width: 85%;
}

.lvl-in ul {
    justify-content: flex-start;
    grid-gap: 0px;
    flex-wrap: wrap;
    width: 100% !important;
}

.af-bg {
    padding: 15px;
}

.referral_qr {
    max-width: 50%;
    margin: 0 auto;
}
/* ADDED */
.floating img {
    width: 50%;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
    bottom: 10%;
    position: fixed;
    z-index: 1000;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.floating-all img {
    width: 70%;
}

.floating_modal .modal-content {
    background: none;
    border: none;
}

.floating-wrap img {
    display: block;
    margin: 0px auto;
    opacity: 1;
}

.floating-wrap .close {
    color: #fff;
    opacity: 1;
}

.floating_modal .close {
    color: #fff;
    opacity: 1;
    font-size: 50px;
    position: absolute;
    right: 0px;
    z-index: 10;
}

.floating-wrap a {
    position: relative;
}

.floating-text {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    padding: 16px;
    color: #000;
    font-weight: bold;
}

.floating-pop {
    display: inline-flex;
    padding: 10px 20px;
    color: #fff;
    font-size: 50px;
    text-shadow: 3px 3px black;
    line-height: 30px;
}

#closeButton {
    right: 0;
    top: 0px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    font-weight: bold;
}

.announcementpopupimg img {
    /* width: 400px; */
    margin: auto;
    border-radius: 5px;
}

#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;
}

.annou-pop {
    border-radius: 20px;
    background: #000;
    padding: 20px;
    color: #fff;
    border: 1px solid #0c9aec;
}

.annou-ttle {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #0c9aec;
    padding-bottom: 7px;
}

.annou-content {
    padding-top: 25px;
    font-size: 12px;
}

.announcementmodal .modal_close {
    z-index: 10;
    color: #fff;
    opacity: 1;
}

.annou-content img {
    display: block;
    margin: 0px auto;
}

.annou-pop p {
    margin-top: 20px;
    margin-bottom: 0px;
}

.round {
    position: relative;
    margin-right: 10px;
    height: 16px;
}

    .round label {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
        height: 16px;
        left: 0;
        position: absolute;
        top: 0;
        width: 16px;
        margin: 0px;
    }

        .round label:after {
            border: 2px solid #fff;
            border-top: none;
            border-right: none;
            content: "";
            height: 6px;
            left: 1px;
            opacity: 0;
            position: absolute;
            top: 3px;
            transform: rotate(-45deg);
            width: 12px;
        }

    .round input[type="checkbox"] {
        visibility: hidden;
    }

        .round input[type="checkbox"]:checked + label {
            background-color: #2283f6;
            border-color: #2283f6;
        }

            .round input[type="checkbox"]:checked + label:after {
                opacity: 1;
            }

.cls-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 12px;
}

.headermenu_desktop li:hover .dropmenu {
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.dropmenu {
    background: #000000e6;
    position: absolute;
    /* top: 185px; */
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    visibility: hidden;
    padding: 20px 0;
}

.d-grid {
    display: flex;
    justify-content: center;
    grid-gap: 10px;
}

.blog_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 25px;
}

.blog-content {
    padding: 20px 0px;
}

.blog-wrap h4 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-wrap p {
    line-height: 24px;
    margin-bottom: 20px;
}

.blog-wrap h5 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-wrap ul {
    padding-left: 15px;
    margin-bottom: 20px;
}

    .blog-wrap ul li {
        list-style: circle;
    }

.blog-wrap ol li {
    list-style: auto;
}

.blog-wrap ol {
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-wrap table tr td {
    padding: 10px;
    text-align: center;
}

.blog-wrap table tr th {
    padding: 10px;
    text-align: center;
}

.blog-wrap table {
    margin-bottom: 20px;
}

.daily-wrap {
    text-align: center;
}

.daily-bg {
    position: relative;
}

    .daily-bg ul {
        position: absolute;
        bottom: 55px;
        display: flex;
        gap: 10px;
        justify-content: center;
        left: 0;
        right: 0;
        margin: 0px auto;
        list-style: none;
    }

        .daily-bg ul li a {
            position: relative;
            display: block;
        }

            .daily-bg ul li a.claimed .daily-content {
                display: none;
            }

.daily-content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.daily-bg ul li a img {
    filter: grayscale(0.8);
}

.daily-bg ul li a.claimed img {
    filter: none;
}

.daily-bg ul li a.active img {
    filter: none;
}

.modal-congrat h5 {
    color: #edb543;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
}

.congrat-text {
    text-align: center;
    font-size: 20px;
}

.image-wrap img {
    display: block;
    margin: 0px auto;
    position: relative;
}

.color-text1 {
    color: #edb543;
    font-weight: bold;
}

.color-text2 {
    color: #edb543;
    font-weight: bold;
}

.img-wrap-top {
    position: absolute !important;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

img.img-wrap {
    height: 80%;
    margin-top: 20px;
}

.tokenredeem {
    display: block;
    margin: 0px auto;
    margin-top: 35px;
    background: #ed1d49;
    border: none;
    z-index: 10;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.token-pt {
    z-index: 10;
}

.image-wrap {
    height: 250px;
    position: relative;
}

.daily-wrap-in {
    background: #00000099;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #f7c350;
}

.daily_modal .close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: #fff;
    opacity: 1;
    font-size: 47px;
    z-index: 2;
}

.daily_modal .modal-body {
    background: none;
}

.daily_modal .modal-content {
    background: none;
    border: none;
}

.mission-bg ul {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

    .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;
}

.ms-amt {
    font-weight: bold;
    color: #fbe621;
    text-transform: uppercase;
}

.ms-btn {
    position: absolute;
    bottom: -5px;
}

.mission_modal .modal-content {
    background: #161f2c;
}

.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 #fff;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.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;
}

.clm-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

    .clm-btn button {
        background: #ed1d49;
        border-radius: 10px;
        font-size: 12px;
        padding: 10px 14px;
        color: #fff;
        font-weight: 600;
        border: none;
        margin: 0 5px;
    }

.play2earn {
    padding: 40px;
}

.play2earn-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-ttl-1 {
    background: #5d5d5d;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
}

.p2e-info-content {
    padding: 10px;
    border: 1px solid #37393f;
    border-top: none;
    padding-bottom: 0;
}

.p2e-amount {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-amount-box {
    width: 100%;
    background: #494949;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-bar {
    width: 100%;
    background-color: #494949;
    border-radius: 25px;
    margin: 10px 0;
}

.progress-bar-fill {
    height: 20px;
    background: #faca46;
    transition: width 0.5s;
    border-radius: 25px;
}

.p2e-btn-group {
    display: flex;
    justify-content: center;
    padding: 10px;
}

    .p2e-btn-group a {
        background: #faca46;
        color: #000;
        padding: 5px 10px;
        display: block;
        text-align: center;
        width: 40%;
        margin-left: 5px;
        margin-right: 5px;
        border-radius: 5px;
    }

        .p2e-btn-group a:hover {
            background: #a38532;
            color: #fff !important;
        }

.btn-p2e {
    color: #f6ee22;
    font-weight: bold;
}

.sel-form {
    margin-bottom: 10px;
}

    .sel-form select {
    }

.pse-bnr {
    margin-bottom: 15px;
}

.btn-apply {
    background: #faca46;
    color: #000;
    font-weight: bold;
}

.history-play-to-earn {
    margin: 10px 0px;
}

.btn-apply:hover {
    color: #fff;
    background: #95792c;
}

.vip-wrap ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0px;
}

.vip-wrap ul {
}

.vip-lvl {
    display: block;
    margin: auto;
    text-align: center;
    border-radius: 50px;
    /* box-shadow: 0px 0px 6px #fa454e; */
    /* background: #23262b; */
    /* padding: 8px 50px; */
}

.vip-txt {
    color: #fa454e;
}

.table_vip_responsive {
    overflow-x: scroll;
    overflow-y: visible;
    padding: 0;
}

.account-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.vip-process-bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    border-radius: 2px;
    background: #0ce5b0;
}

.vip_modal .modal-content {
    background: #333333;
}

ul.vip-tnc {
    padding-left: 20px;
    background: none;
}

    ul.vip-tnc li {
        list-style: circle;
        font-size: 14px;
        margin-bottom: 10px;
    }

.vip_modal .modal-dialog {
    max-width: 700px;
}

.vip_modal .close {
    color: #fff;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}

.vip_modal h4 {
    border-bottom: 1px solid #fff;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.dataTables_wrapper {
    color: #fff;
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
    background: #7a7a7a;
    color: #fff;
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

.dataTables_length label {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    max-width: 30%;
    color: #fff;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
    border: 1px solid #4f586e;
    text-align: center;
    color: #ffffff;
}

.dataTables_paginate {
    display: flex;
    gap: 10px;
}

.p2e .a.paginate_button {
    color: #000;
    display: block;
}

.p2e a.paginate_button.current {
    color: #fff;
}

.p2e .btn-apply {
    background: linear-gradient( to bottom, rgba(84, 63, 22, 1) 0%, rgba(173, 132, 57, 1) 99% );
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 6px 20px;
}

.dataTables_length label select {
    background: #7a7a7a;
    border: none;
    padding: 8px;
    border-radius: 5px;
}

.dataTables_scroll {
    margin-top: 25px;
}

.p2e-table {
    max-width: 1000px !important;
}

.wheel_product .wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    height: 880px;
    margin-bottom: -120px;
}

.wheel-wrap .wheel_product_bg {
    width: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    top: auto;
    right: 23.5%;
    bottom: 29%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(0.37, -0.15, 0.3, 0.94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_frame {
    width: 55.5%;
    position: absolute;
    bottom: 5%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0px auto;
    animation: wheelRotate 7s cubic-bezier(0.37, -0.15, 0.3, 0.94) infinite;
}

.wheel-wrap .wheel_product_zeus {
    width: 38%;
    position: absolute;
    left: -0%;
    bottom: 25%;
    z-index: 2;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(1turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.wheel-wrap .wheel_product_arrow {
    width: 9%;
    position: absolute;
    bottom: 45%;
    z-index: 6;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.wheel-wrap .lightning {
    position: absolute;
    width: 28%;
    height: 50%;
    right: 1.3%;
    bottom: 25%;
    mix-blend-mode: lighten;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    right: 23.5%;
    bottom: 32%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(0.37, -0.15, 0.3, 0.94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.wheel_product.wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 820px;
    margin-bottom: 40px;
    z-index: -1;
}

.slider_title.wheel-ttl {
    color: #e2e7f3;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.wheel-all ul {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
    gap: 20px;
    font-weight: bold;
}

span.yell-text {
    color: #2283f6;
    font-weight: bold;
}

.whl-btn {
    background: #2b2e35;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    gap: 5px;
}

a.btn-spin {
    background: #ed1d49;
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
}

.wheel-all .btn-more {
    background: #0c9aec;
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    font-size: 15px;
}

.wheel-bg {
    display: block;
}

.vip-sec {
    padding: 40px 0;
}

    .vip-sec .container {
        max-width: 1300px;
    }

.user_vip_inner {
    grid-gap: 20px;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 340px 1fr;
    margin: 0 auto;
    min-height: 350px;
    padding: 0;
    position: relative;
    width: 100%;
}

    .user_vip_inner .user_vip_left {
        background: #24262b;
        border-radius: 0.75rem;
        margin: 0 auto;
        padding: 7px;
        width: 100%;
    }

    .user_vip_inner .vip_inner {
        display: block;
        height: 100%;
        margin: 0 auto;
        width: 100%;
    }

    .user_vip_inner .user_vip_body {
        display: grid;
        grid-gamingsoft-rows: 40px 1fr 45px 45px 40px 68px;
        margin: 0 auto;
        padding: 10px;
        width: 100%;
    }

    .user_vip_inner .user_vip_head {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        text-align: center;
    }

        .user_vip_inner .user_vip_head h2 {
            color: #ffffff;
            font-size: 16px;
            line-height: 1.4;
            margin: 0 auto;
            padding: 8px;
            text-transform: uppercase;
            width: 100%;
        }

    .user_vip_inner .user_level_bg {
        background: url(/static/media/vip_mid.a4e399b….svg) 50% no-repeat;
        background-size: 70%;
        margin: 0 auto;
        min-height: 120px;
        width: 140px;
    }

    .user_vip_inner .user_level_bg,
    .user_vip_inner .user_level_light {
        align-items: center;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .user_vip_inner .user_level_light {
        border-radius: 50%;
        box-shadow: 0 0 100px 50px #fed791;
        height: 0;
        position: absolute;
        width: 0;
        z-index: 1;
    }

    .user_vip_inner .user_level_pic {
        margin: 0 auto;
        z-index: 2;
    }

    .user_vip_inner .user_vip_score_body {
        color: var(--text-color);
        display: grid;
        grid-template-columns: 80px 1fr;
        line-height: 1.3;
        margin: 10px auto 0;
        padding: 0;
        width: 100%;
    }

    .user_vip_inner .score_title {
        padding-left: 5px;
        text-align: left;
    }

    .user_vip_inner .score_value {
        padding-right: 5px;
        text-align: right;
    }

.vip_overview .yellow2 {
    color: #d5f193;
}

.user_vip_inner .score_process {
    grid-column-end: 3;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 2;
}

.user_vip_inner .user_vip_next_txt {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

.user_vip_inner .usr_vip_score_inner {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.user_vip_inner .usr_vip_score_box {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.user_vip_inner .usr_vip_score_box_item {
    background: #191b1e;
    border-radius: 0.5rem;
    display: block;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 10px;
}

.user_vip_inner .user_vip_righ {
    background: #24262b;
    border-radius: 0.75rem;
    display: block;
    margin: 0 auto;
    padding: 7px;
    position: relative;
    width: 100%;
}

.user_vip_inner .vip_inner {
    display: block;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.user_vip_inner .user_vip_right_body {
    margin: 0 auto;
    padding: 10px 10px 18px;
    width: 100%;
}

.user_vip_inner .user_vip_head {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

.user_vip_inner .user_level_list,
.user_vip_inner .user_vip_level_process {
    margin: 0 auto;
    padding: 5px 20px;
    width: 100%;
    position: relative;
}

.user_vip_inner .user_level_list_body {
    grid-gap: 20px 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 10px auto;
    width: 100%;
}

.user_vip_inner .level_box_item {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.user_vip_inner .levle_box_body {
    background: #191b1e;
    border-radius: 0.5rem;
    color: #adb6c4;
    cursor: pointer;
    font-size: 12px;
    height: 100px;
    min-width: 36px;
    position: relative;
    z-index: 1;
}

.user_vip_inner .levle_box_pic {
    align-items: center;
    display: flex;
    height: 60px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.user_vip_inner .levle_box_title {
    background: #ed1d49;
    border-radius: 0 0 0.5rem 0.5rem;
    color: #fff;
    padding: 3px 0 0;
    text-transform: uppercase;
    z-index: 11;
}

.user_vip_inner .levle_box_body:after {
    background: #ed1d49;
    bottom: -7px;
    content: "";
    height: 12px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 12px;
    z-index: -1;
}

.user_vip_inner .usr_vip_score_box_item h5 {
    color: #2283f6;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.user_vip_inner .big_score_box .usr_vip_score_box_item h3 {
    font-size: 18px;
    margin: 10px auto;
    font-weight: 600;
    line-height: 1;
}

.levle_box_pic img {
    height: 50px;
}

.ant-progress {
    box-sizing: border-box;
    color: hsla(0, 0%, 100%, 0.85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ant-progress-line {
    font-size: 14px;
    position: relative;
    width: 100%;
}

.ant-progress-bg,
.ant-progress-success-bg {
    background-color: #177ddc;
    border-radius: 100px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}

.ant-progress-outer {
    display: inline-block;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
}

.ant-progress-show-info .ant-progress-outer {
    margin-right: calc(-2em - 8px);
    padding-right: calc(2em + 8px);
}

.ant-progress-inner {
    background-color: hsla(0, 0%, 100%, 0.08);
    border-radius: 100px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.ant-progress-text {
    color: hsla(0, 0%, 100%, 0.85);
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    margin-left: 8px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 2em;
    word-break: normal;
}

.user_vip_inner .usr_vip_score_box_item h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-top: 16px;
}

.yellow {
    color: #ffc805;
}

.user_vip_inner .user_vip_level_desc {
    color: var(-color-grey7);
    font-size: 14px;
    min-height: 40px;
    padding: 10px 8px;
    text-align: center;
}

.card_overview {
    display: block;
    margin: 30px auto;
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.rank_slider_container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.rank_slider_wrapper {
    color: #fff;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    margin: 46px auto 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.rank_slider_slide {
    background: #24262b;
    margin: 0 auto;
    padding: 20px 12px 30px;
    border: 1px solid #24262b;
}

.rank_slider_slide,
.rank_slider_slide_out {
    border-radius: 0.75rem;
    position: relative;
    width: 100%;
}

.rank_slider_slide_out {
    border: 2px solid transparent;
}

.swiper-slide-active {
    opacity: 1;
}

.rank_slider_image {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: center;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: -50px;
    width: 100px;
}

    .rank_slider_image img {
        align-items: center;
        display: block;
        justify-content: center;
        pointer-events: none;
        text-align: center;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 100%;
    }

.rank_slider_slider_body {
    padding: 10px 0 20px;
    position: relative;
    text-align: center;
    top: 20px;
    z-index: 2;
}

.rank_slider_title {
    margin: 10px auto 0;
    text-align: center;
    width: 100%;
}

.rank_slider_slider_body h4 {
    color: #faca46;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_slider_body h5 {
    color: #adb6c4;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_slider_body h6 {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_title h5 {
    color: #ffffff;
}

.rank_slider_rule_1 {
    margin: 5px auto 0;
    padding: 0;
    width: 100%;
}

.rank_slider_rule_box {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.rank_slider_rule_box_item {
    background: #191b1e;
    border-radius: 0.5rem;
    display: block;
    display: flex;
    flex-direction: column;
    min-height: 60px;
    text-align: center;
    border: 1px solid #191b1e;
}

    .rank_slider_rule_box_item h5 {
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        margin-top: 5px;
    }

    .rank_slider_rule_box_item h4 {
        font-family: Montserrat;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        color: #fe0002;
    }

.rank_slider_rule_2,
.rank_slider_rule_3 {
    margin-top: 10px;
    text-align: center;
}

.rank_slider_slider_body hr {
    background-color: var(--color-green1);
    border: none;
    height: 1px;
    margin: 0 auto;
    width: 70%;
}

.rank_slider_rule_3 hr {
    margin-top: 10px;
}

.rank_slider_rule_4 {
    margin: 5px auto;
    padding: 0;
    width: 100%;
}

.rank_slider_tr_3 {
    grid-gap: 2px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2px;
}

.rank_slider_tr_2 {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
}

.rank_slider_rule_4 div {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_slide_out.active {
}

    .rank_slider_slide_out.active .rank_slider_slide {
        background: linear-gradient( to bottom, rgba(114, 213, 9, 1) 0%, rgba(50, 56, 56, 1) 100% );
        opacity: 1;
    }

        .rank_slider_slide_out.active .rank_slider_slide.rank_slider_slide:before {
            background: linear-gradient(180deg, #12442b, #85e6a1);
        }

    .rank_slider_slide_out.active .rank_slider_slide_bottom .btn {
        background: #85e6a1;
        color: #000;
    }

.rank_slider_slide_bottom .btn {
    background-color: #faca46;
    border: none;
    border-radius: 1.2rem;
    color: #000;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 40px;
}

.level_pagediv {
    display: grid;
    grid-template-columns: 30% auto 30%;
    height: 100%;
    margin: 20px auto 0;
    width: 200px;
}

    .level_pagediv,
    .level_pagediv .level_btn {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .level_pagediv .level_btn {
            background-color: transparent;
            border: none;
            cursor: pointer;
            padding: 6px;
            color: #fff;
        }

.rank_slider_slider_body hr {
    background-color: #ffcc68;
    border: none;
    height: 1px;
    margin: 0 auto;
    width: 70%;
}

.rank_slider_title h4 {
    color: #fff;
}

.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: #212121;
    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: #ffffff42;
    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: -0.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: #ffffff42;
    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: -0.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: #ffffff42;
    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: #24262b;
    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: #2f2f2f;
    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: #ffffff;
    font-size: 11px;
    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: #2f2f2f;
    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: hsl(0deg 0% 100%);
        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: #fbdc84;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #edca69;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: #faca46;
}

.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: #2f2f2f;
    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%, 0.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: 55%;
    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: rgb(65 65 65);
    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;
}

.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: #24262b;
    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: #141414;
    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(0.8);
    font-size: 16px;
}

.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: #141414;
    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;
        font-size: 16px;
    }

.bonus_username {
    color: #3f526e;
}

.bonus_yellow {
    color: #ffaa17;
}

.bonus_footer_overview {
    background: #24262b;
    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: #141414;
        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;
}

.af-wrap {
    width: 100%;
    margin: 0px auto;
}

.aff-bnr {
    position: relative;
}

    .aff-bnr img {
        width: 100%;
    }

.btn-aff {
    background: #ed1d49;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    width: 25vw;
    font-weight: bold;
    border: none;
}

.btn-aff-wrap {
    display: flex;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 30px;
}

.aff-1 h4 {
    text-align: center;
    font-size: 35px;
}

.aff-1 {
    margin-top: 4vw;
}

.in-aff-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #24262b;
    border-radius: 30px;
    padding: 20px;
}

.aff-in-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.in-aff-top {
    display: flex;
    align-items: flex-end;
    color: #2283f6;
    justify-content: space-between;
}

    .in-aff-top h5 {
        font-size: 24px;
        width: 50%;
        margin-bottom: 18px;
    }

.aff-content p {
    color: #6a717b;
    font-size: 15px;
}

.aff-content a {
    color: #ed1d49;
}

.aff-reward h4 {
    font-size: 35px;
    text-align: center;
}

.aff-reward {
    margin-top: 4vw;
}

    .aff-reward p {
        color: #6a717b;
        font-size: 15px;
        text-align: center;
        margin-top: 1vw;
        margin-bottom: 3vw;
    }

.btn-reward {
    background: #555a67;
    color: #fff;
    border-radius: 20px;
    font-size: 24px;
    padding: 10px 40px;
}

.btn-reward {
    text-align: center;
    margin: 0px auto;
    display: flex;
    padding: 10px 20px;
    border: none;
}

.rwd-graph {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4vw;
}

.graph-in {
    background: #24262b;
    border-radius: 20px;
    padding: 20px;
}

.aff-in-2 {
    display: flex;
    justify-content: space-between;
    height: 7vw;
}

.rwd-l h5 {
    color: #2283f6;
    margin-bottom: 20px;
}

.rwd-l p {
    font-size: 15px;
}

.rwd-info {
    font-size: 15px;
}

.ttx-y {
    font-size: 24px;
    color: #f6c722;
}

.ttx-g {
    color: #ed1d49;
}

.rwd-wrap {
    background: var(--body-color);
    margin: 0px;
    margin-top: 20px;
    border-radius: 20px;
    height: auto;
}

.rwd-top-l {
    display: flex;
    flex-direction: column;
    width: 50%;
    font-size: 12px;
}

.rwd-top {
    display: flex;
    color: #6a717b;
    padding: 20px 50px;
    font-size: 15px;
}

.img-graph img {
    display: block;
    margin: 0px auto;
}

.wd-ft {
    display: flex;
    justify-content: end;
    padding: 5px 65px;
}

p.rwd-ft-p {
    text-align: center;
    padding: 10px;
}

.rwd-l {
    width: 60%;
}

.top-txt {
    color: #6a717b;
    padding: 20px;
}

.rewd-date {
    background: #24262b;
    margin-top: 4vw;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 50px;
    align-items: baseline;
}

.rewd-1 {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: center;
    margin-top: 30px;
}

.rewd-date h4 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    display: block;
    width: 100%;
    text-align: center;
}

.amt-red {
    background: var(--body-color);
    color: #f6c622;
    margin: 10px;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
}

.rwd-table {
    margin: 4vw auto;
    display: block;
    text-align: center;
}

.table-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 2vw;
}

.rwd-in {
    width: 50%;
}

table.rwdin-table tr th:first-child {
    text-align: left;
}

table.rwdin-table tr th:last-child {
    text-align: right;
}

table.rwdin-table {
    width: 100%;
}

    table.rwdin-table tr td:first-child {
        text-align: left;
    }

    table.rwdin-table tr td:last-child {
        text-align: right;
    }

    table.rwdin-table tr:nth-child(even) {
        background: #202a39;
    }

    table.rwdin-table tr th {
        font-size: 12px;
        font-weight: 100;
        color: #6a717b;
        padding: 10px 20px;
    }

    table.rwdin-table tr td {
        padding: 10px 20px;
        font-size: 15px;
    }

    table.rwdin-table tr {
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
    }

.af-wrap.aff-off {
    margin: 0px auto;
}

.af_inner .container {
    max-width: 1140px;
}

.point-wrap {
    display: flex;
    flex-direction: row;
    grid-gap: 10px;
}

.rd-color {
    font-size: 25px;
    background: none;
    border: none;
    color: #ed1d49;
}

.balance-modal .modal-body {
    padding: 0px;
}

.balance-modal .modal-content {
    background: #202a39;
    border-radius: 10px;
}

.btn-token {
    background: #151c27;
    min-width: 150px;
    padding: 10px;
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    border-radius: 8px;
    align-items: center;
    font-size: 17px;
}

.btn-tk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

    .btn-tk h5 {
        display: flex;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding-bottom: 10px;
        padding: 15px;
        background: #2b384a;
        border-radius: 10px 10px 0px 0px;
    }

.point-wrp {
    display: flex;
    gap: 15px;
}

.point-btm {
    border-top: 1px solid #627794;
    width: 92%;
    padding-bottom: 20px;
}

.btn-tk h5 {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-bottom: 10px;
    padding: 15px;
    background: #2b384a;
    border-radius: 10px 10px 0px 0px;
}

span.img-point img {
    height: 30px;
}

.point-btm {
    border-top: 1px solid #627794;
    width: 92%;
    padding-bottom: 20px;
}

.ply-point {
    text-align: center;
    padding: 15px;
    color: #6aa6cc;
    font-weight: bold;
}

.point-btm ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.balance-modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: #FFEB3B;
    text-shadow: 0 1px 0 #FFEB3B;
    opacity: 1;
    top: -33px;
    position: absolute;
    right: 5px;
}

.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: #2f3236;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px;
        border-radius: 5px;
    }

        .tab-pay ul li a.active,
        .tab-pay ul li a:hover {
            background: #2283f6;
        }

[type="file"] {
    height: 0;
    overflow: hidden;
    width: 100%;
}

    [type="file"] + label {
        margin: 0px !important;
        background: #ed1d49;
        border: none;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        font-family: "Rubik", sans-serif;
        font-size: inherit;
        font-weight: 500;
        margin-bottom: 1rem;
        outline: none;
        padding: 0.5rem 50px;
        position: relative;
        transition: all 0.3s;
        vertical-align: middle;
        &:hover

{
    background-color: darken(#f15d22, 10%);
}

&.btn-1 {
    background-color: #ed1d49;
    box-shadow: 0 6px darken(#f79159, 10%);
    transition: none;
    &: hover

{
    box-shadow: 0 4px darken(#f79159, 10%);
}

}

&:hover {
    background-color: darken(#99c793, 30%);
    &::before

{
    right: 75%;
}

}
}

.amt-qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-img img {
    height: 130px;
}

.qr-area {
    border: 1px solid #5f5f5f;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.qr-nm {
    color: #2283f6;
    font-size: 12px;
}

.qr-info {
    font-size: 12px;
    width: 50%;
}

.qr-img {
    margin: 10px 0px;
}

.atten {
    border: 1px solid #5f5f5f;
    border-radius: 5px;
    padding: 10px;
}

    .atten img {
        height: 20px;
    }

.qr-ttl {
    font-weight: bold;
}

.qr-num {
    background-color: rgba(0, 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: none;
    border: none;
    color: #ed1d49;
    font-size: 22px;
}

.form-max {
    position: relative;
}

button.btn-max {
    position: absolute;
    bottom: 17px;
    right: 10px;
    color: #fff;
    background: #ed1d49;
    border: none;
    border-radius: 5px;
    font-size: 12px;
}

    button.btn-max:hover {
        background: #c6193d;
    }

.pen-top {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.pen-l {
    border-right: 1px solid #5b5b5b;
    padding: 0px 10px;
}

.re-status {
    text-align: end;
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
}

.pen-r {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}

.pen-l p {
    font-weight: bold;
    font-size: 12px;
}

.pen-time {
    font-size: 24px;
    font-weight: bold;
}

.pen-r p {
    font-weight: bold;
    font-size: 12px;
}

.pen-time small {
    font-weight: bold;
    font-size: 14px;
}

button.btn-if {
    color: #2283f6;
    padding: 0px;
    background: none;
    border: none;
}

.table-pen {
    border-top: 1px solid #5b5b5b;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .table-pen table th {
        background: #505154;
        color: #fff;
        padding: 10px;
    }

    .table-pen table {
        border-collapse: collapse;
        border-radius: 10px;
        overflow: hidden;
    }

        .table-pen table tr:nth-child(even) {
            background: #2c2e34;
        }

        .table-pen table tr:nth-child(odd) {
            background: #92929266;
        }

        .table-pen table tr td {
            padding: 10px;
            font-size: 12px;
        }

            .table-pen table tr td:first-child {
                width: 38%;
                font-weight: bold;
            }

        .table-pen table tr:last-child {
        }

p.txt-sm {
    font-size: 12px;
    font-weight: bold;
    color: #ed1d49;
    margin: 0px;
}

.pentop-l {
    display: flex;
    gap: 15px;
}

.btn-cancel {
    background: #ff7400;
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
}

.btnmr-if {
    background: linear-gradient( to right, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.penttop-r {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-pending {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    gap: 10px;
}

.non-ef {
    background: none;
    border: none;
    color: #fff;
}

.af-content {
    margin-bottom: 20px;
    border: double #737373;
    padding: 20px;
    border-radius: 10px;
}

.btn-df {
    border: none;
    background: #ed1d49;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

    .btn-df:hover {
        background: #c5163b;
    }

.af-info p {
    margin: 0px;
}

.txt-rd {
    color: #ed1d49;
}

.af-info {
    margin-top: 15px;
}

.btn-tre {
    position: absolute;
    bottom: 17px;
    right: 10px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.btn-max-t {
    color: #fff;
    background: #ed1d49;
    border: none;
    border-radius: 5px;
    font-size: 12px;
}

    .btn-max-t:hover {
        background: #c6193d;
    }

.pay-status .card {
    background: none;
    margin-bottom: 20px;
    border: double #737373;
    padding: 0px;
    border-radius: 10px;
}

.pay-status .card-body {
    padding-top: 0px;
}

.deposit_bank_choose_box img {
    height: 25px;
    border-radius: 5px;
    margin-right: 10px;
}

.table-share tr th {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #636363;
}

.table-share tr td {
    padding: 5px;
    border: 1px solid #636363;
    text-align: center;
}

.reg_form {
    max-width: 500px;
    margin: auto;
    margin-top: 40px;
}

    .reg_form .form_wrap {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
        justify-content: center;
    }

    .reg_form p {
        text-align: center;
        color: #c3c3c3;
        font-size: 12px;
    }

    .reg_form i {
        text-align: center;
        display: block;
        margin: 0px auto;
        font-size: 130px;
        color: #faca46;
        margin-bottom: 10px;
    }

    .reg_form h4 {
        text-align: center;
        color: #ffffff;
        font-weight: bold;
    }

.btn-del {
    border: none;
    background: #ed1d49;
    color: #fff;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 15px;
}

.btn-delete {
    color: #f4ba00;
    padding: 0px;
    border: none;
    background: none;
}

.inbox-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.inbox-text {
    background: #404348;
    margin: 0px 15px;
    border-radius: 10px;
    padding: 15px;
}

.modal-dialog.inbox {
    max-width: 500px !important;
    border-radius: 20px;
}

.modal-content.inbox {
    border: none;
    background: #191b1e;
    border-radius: 20px;
}

button.close-inbox {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
}

.chatMsg {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 80px);
    margin-bottom: 30px;
}

    .chatMsg ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: 0px;
    }

        .chatMsg ul li {
            position: relative;
            margin-bottom: 15px;
        }

.msg,
.msg-reply {
    display: block;
    /* margin-left: 10px; */
    /* background: #cbcbcb; */
    /* padding: 10px 15px; */
    position: relative;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
    color: #000;
    border-radius: 5px;
    /* margin-right: 10px; */
}

    .msg::before,
    .msg-reply::before {
        position: absolute;
        left: -8px;
        top: 0px;
        content: "";
        display: block;
        /* border-right: 12px solid #fff; */
        border-bottom: 15px solid transparent;
    }

.msg-date2 {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0px auto;
    color: #fff;
    font-weight: 100;
}

.msg-reply {
    margin-left: inherit;
    /* margin-right: 10px; */
    background: #4d61a6;
    color: #fff;
    /* margin-left: 10px; */
    padding: 10px;
    font-size: 13px;
}

    .msg-reply::before {
        left: inherit;
        right: -9px;
        border-right: inherit;
        /* border-left: 12px solid #4d61a6; */
    }

.avatar,
.avatar-reply {
    position: absolute;
    left: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

    .avatar img,
    .avatar-reply img {
        max-width: 30px;
    }

.avatar-reply {
    left: inherit;
    right: 0;
}

.chatBox {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

    .chatBox .mdi-attachment {
        position: absolute;
        z-index: 2;
        left: 10px;
        font-size: 20px;
        bottom: 15px;
        color: #4d61a6;
        cursor: pointer;
    }

    .chatBox .mdi-send {
        width: 32px;
        height: 32px;
        line-height: 32px;
        position: absolute;
        z-index: 2;
        bottom: 8px;
        right: 10px;
        font-size: 16px;
        color: #fff;
        background: #2283f6;
        text-align: center;
        cursor: pointer;
        -webkit-border-radius: 32px;
        -moz-border-radius: 32px;
        border-radius: 32px;
    }

        .chatBox .mdi-send.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

    .chatBox textarea {
        display: block;
        resize: none;
        width: 100%;
        border: 0;
        border-top: 1px solid #ccc;
        background: #fff;
        padding: 12px 50px 12px 40px;
        position: absolute;
        bottom: 0;
        min-height: 45px;
        overflow: hidden;
        color: #000;
    }

.hiddendiv {
    display: none;
}

.chatBox textarea:focus {
    outline: none;
}

.msg-date {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    gap: 10px;
    /* border-bottom: 1px solid #a4a4a4; */
}

.msg-content {
    line-height: 18px;
    margin-top: 0px;
    font-size: 13px;
    background: #cbcbcb;
    padding: 10px;
    border-radius: 5px;
}

.mdi-send:before {
    content: "\f1d8";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    right: 10px;
}

tr.unread td {
    font-weight: bold;
    color: #fff;
}

button.btn-cpy {
    position: absolute;
    right: 16px;
    top: 14px;
    border: none;
    padding: 0px;
    color: #2c2e34;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 150px;
    margin-top: 20px;
}
/*Redemption*/
.red-bg {
    background: url("../images/theme-1/reward-redemption/rr-bg.png") no-repeat center top;
}

.redemp-title {
    padding-bottom: 15px;
}

.redemption-wrapper {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 55px;
    margin-top: 45px;
    display: flex;
}

.redemp-box {
    position: relative;
    margin: 15px 2px 35px;
    display: inline-block;
    text-transform: uppercase;
}

.redemp-box {
    background: url("../images/theme-1/reward-redemption/bg-reward.png") no-repeat;
    background-size: 100%;
    width: 312px;
    height: 226px;
    margin: 0 auto;
    padding: 13px 25px;
    position: relative;
}

.redemp-inner {
    position: relative;
    top: -40px;
}

.prize-credit {
    padding-bottom: 15px;
}

.point-text {
    line-height: 8px;
    color: #c498ff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000;
}

.require-text {
    font-size: 14px;
    font-weight: 100;
    padding: 9px 0;
}

.claim-btn-wrap {
    margin-top: -30px;
}

.point-text.top {
    margin-top: -15px;
}

.prize-item {
    margin-top: -40px;
}

.prize-sub {
    font-size: 11px;
    font-weight: 600;
}

.require-text.top {
    min-height: 78px;
}

.bg-daily img {
    display: block;
    margin: 0px auto;
}

.max-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* top: -75px; */
}

.top-btn {
    display: flex;
    position: relative;
}

.top-btn-wrap {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pred-btn-point {
    display: flex;
    position: relative;
    align-items: center;
    font-weight: bold;
}

.subtitle-wrap {
    position: relative;
}

.sub-box.redemp {
    position: relative;
    top: 2px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 100;
    justify-content: center;
    margin-bottom: 20px;
}

.top-btn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.red-txt {
    position: absolute;
    right: -11px;
    color: #ff0000;
}

.pred-btn {
    background: none;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

span.red-pnt {
    color: #edc983;
}

.pt-btn {
    font-size: 20px;
}

.red-txt-gd {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: #f5e489;
    background: linear-gradient(to bottom, #f5e489 0%, #d88127 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 20px;
    filter: drop-shadow(2px 2px 0px black);
}

.submit-btn {
    background: none;
    border: none;
    display: block;
    margin: 0px auto;
}

img.img-sh {
    position: absolute;
    z-index: 1;
    left: 0px;
}

img.img-sh2 {
    z-index: 2;
}

.transc-l img {
    display: block;
    margin: 0px auto;
}

.btn-live {
    display: flex;
    align-items: center;
}

.text-trs {
    color: #859cbf;
    font-size: 20px;
    line-height: 21px;
}

.fnt-wh {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.rep_modal .modal-dialog {
    background: none;
}

.rep_modal .modal-content {
    background: none;
    border: none;
}

.rep_modal .daily-wrap-in {
    box-shadow: none;
    border: none;
    background: url("../images/theme-1/reward-redemption/bg-reward.png") no-repeat center top;
    background-size: contain;
    min-width: 312px;
}

.rep_modal img.img-wrap {
    height: 85% !important;
    position: relative;
    top: -78px;
}

.modal-congrat {
    position: relative;
}

.rep_modal .modal-congrat h5 {
    position: absolute;
    top: 57%;
    left: 0;
    right: 0;
    margin: auto;
    color: #c498ff;
    font-size: 28px;
}

.rep_modal .congrat-text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 67px;
}

.rep_modal .color-text1 {
    color: #c498ff;
}

.rep_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
}

.reptnc_modal .modal-content {
    background: none;
    padding: 0px;
}

.modal_body_view {
    background: #1c2532;
    padding: 10px 0px;
    border-radius: 10px;
}

.reptnc_modal .modal_body_view {
    background: #070315;
    border: 1px solid #db9bfc;
    box-shadow: 0px 0px 19px 4px #6b12ae;
}

.reptnc_modal .tnc-content ul,
.reptnc_modal .tnc-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

    .reptnc_modal .tnc-content ul li {
        list-style: circle;
    }

    .reptnc_modal .tnc-content ol li {
        list-style: auto;
    }

.reptnc_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
}

.tnc-content {
    padding-top: 13px;
    margin: 15px;
    border-top: 1px solid #93acd3;
    font-size: 12px;
    color: #93acd3;
}

.reptnc_modal .modal_body_view h5 {
    color: #db9bfc;
}

.reptnc_modal .tnc-content {
    color: #ffffff;
    border-top: 1px solid #db9bfc;
}

.rep_modal .claim-btn-wrap {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin: 0px auto;
    right: 0;
}

.modal_body_view h5 {
    color: #93acd3;
    text-align: center;
    font-weight: bold;
    margin: 0px;
    padding-top: 10px;
}

.reg-box {
    background: #24262b url("../images/theme-1/login/registerbg-.png") center top no-repeat;
    padding: 50px 30px;
    border-radius: 10px;
    min-height: 450px;
}

.reg-list ul {
    display: flex;
    justify-content: center;
    gap: 70px;
    position: relative;
}

    .reg-list ul li a.active {
        background: #faca46;
    }

    .reg-list ul li a {
        background: #6d767d;
        padding: 10px;
        border-radius: 50px;
        display: flex;
        height: 30px;
        width: 30px;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .reg-list ul:after {
        content: "";
        height: 1px;
        width: 88%;
        margin: 0px auto;
        display: block;
        background: #6d767d;
        position: absolute;
        top: 15px;
        max-width: 270px;
    }

    .reg-list ul li {
        z-index: 1;
    }

.reg_form {
    max-width: 500px;
    margin: auto;
    margin-top: 40px;
}

    .reg_form .form_wrap {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
        justify-content: center;
    }

        .reg_form .form_wrap label {
            display: flex;
            width: 200px;
            justify-content: space-between;
            color: #ffffff;
            font-size: 13px;
        }

    .reg_form span.red-txt {
        color: #ec474b;
        font-weight: bold;
        position: relative;
    }

    .reg_form .form-control {
        font-size: 12px;
        border: 1px solid #ffffff80;
        min-height: 35px;
    }

    .reg_form .btn_login_modal {
        margin: 0px;
        background: #ff7400;
        display: block;
        padding: 7px 0px;
        color: #fff;
        text-align: center;
        max-width: 185px;
    }

.share_modal .btn_login_modal {
    max-width: 100%;
}

.reg-img img {
    margin: auto;
    display: block;
    margin-top: 70px;
}

.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: #ffffff;
    font-weight: bold;
}

.reg_form p {
    text-align: center;
    color: #c3c3c3;
    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: #fff;
    font-style: italic;
    justify-content: center;
}

.box {
    align-self: flex-end;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    background-color: #f44336;
    height: 20px;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
    width: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 40%;
    top: 0;
}

.bounce-6 {
    animation-name: bounce-6;
    animation-timing-function: ease;
}

@keyframes bounce-6 {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    10% {
        transform: scale(1.1, 0.9) translateY(0);
    }

    30% {
        transform: scale(0.9, 1.1) translateY(-10px);
    }

    50% {
        transform: scale(1.05, 0.95) translateY(0);
    }

    57% {
        transform: scale(1, 1) translateY(-2px);
    }

    64% {
        transform: scale(1, 1) translateY(0);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}

.left_container_bonus {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin-bottom: 15px;
}

.left_container_bonus_box {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient( to right, rgba(49, 205, 176, 1) 0%, rgba(53, 81, 164, 1) 100% );
}

.left_container_bonus_txt {
    position: absolute;
    flex-direction: column;
    display: flex;
}

.left_container_bonus_txt_top {
    font-weight: 700;
}

.left_container_bonus_txt_btm {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    padding: 0px 18px;
}

.btn-acc {
    border: none;
    background: none;
}

.transaction_container {
    position: relative;
    margin-top: 20px;
    background-color: #23262b;
    padding: 10px;
    border-radius: 10px;
    background: #1c2532 url(../images/theme-1/index/live-transaction.png) bottom right no-repeat;
}

.transaction_title_box {
    display: grid;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 80%;
    /* padding: 10px; */
    grid-template-columns: repeat(2, 1fr);
}

.transaction_title {
    display: flex;
    align-items: center;
}

    .transaction_title img {
        width: 25px;
        margin-right: 10px;
    }

    .transaction_title .text {
        font-weight: 900;
        font-style: italic;
        font-size: 20px;
        line-height: 20px;
        color: #a6a9b2;
    }

.transaction_time {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: #ffffff;
    padding: 10px;
    text-shadow: 0px 3px #000000;
}

.transaction_box {
    display: grid;
    flex-wrap: wrap;
    /* margin-left: -10px; */
    /* margin-right: -10px; */
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
}

.transaction_content {
    width: calc(100% - 20px);
    /* margin: 10px; */
    /* background-color: #1D2025; */
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
    /* padding: 15px; */
    /* overflow: hidden; */
    position: relative;
}

.transaction_content_box_title {
    display: flex;
    align-items: center;
}

.transaction_content_box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.transaction_content_1_title {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    width: 50%;
}

.transaction_content_2_title {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    width: 50%;
}

.transaction_content_1 {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    width: 50%;
}

    .transaction_content_1 img {
        width: 30px;
        margin-right: 10px;
    }

.transaction_content_2 {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    width: 50%;
}

.light .transaction_container {
    background-color: #fff;
}

.light .transaction_title .text {
    color: #111111;
}

.light .transaction_time {
    color: #111111;
}

.light .transaction_content {
    background-color: #f6f7fb;
}

.light .transaction_content_1_title {
    color: #111111;
}

.light .transaction_content_2_title {
    color: #111111;
}

.light .transaction_content_1 {
    color: #111111;
}

.light .transaction_content_2 {
    color: #111111;
}

.wrap-live {
    width: calc(100% - 20px);
    background-color: #1d2025;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px;
    overflow: hidden;
    position: relative;
    /* margin-left: 35px; */
}

.view_modal .modal-body {
    padding: 0px;
}

.view_modal .modal-content {
    background: none;
    padding: 0px;
    border-radius: 10px;
}

.view_modal button.close {
    color: #fff;
    position: absolute;
    right: 15px;
    top: 15px;
}

.blc-amt {
    display: flex;
    gap: 20px;
}

.btn-out {
    border: none;
    border-radius: 5px;
    background: #48dd30 !important;
    color: #fff;
    min-width: 45px;
}

.blc-inout {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-in {
    background: #ed1d49;
    border: none;
    border-radius: 5px;
    color: #fff;
    min-width: 45px;
    padding: 5px;
}

.container-sm {
    max-width: 1040px;
}

.vip-badge {
    margin-left: 10px;
}

    .vip-badge img {
        border-radius: 0;
    }

.text-gold {
    color: #fff;
    text-shadow: 1px 1px 3px #000;
}

/* width */
.bln-all::-webkit-scrollbar {
    width: 2px;
}

/* Track */
.bln-all::-webkit-scrollbar-track {
    background: #000;
}

/* Handle */
.bln-all::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    .bln-all::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.verification-code {
    padding-right: 0;
    overflow: hidden;
}

    .verification-code img {
        height: 50px;
    }

.code {
    max-width: 102px;
    overflow: hidden;
}

.resend-text {
    margin-top: 15px;
    /* display: none; */
}

.otp-sec {
    margin-top: 15px;
}

.hidden {
    display: none;
}

.btn-bfr {
    position: absolute;
    bottom: 30%;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0px auto;
    list-style: none;
}

button.btn-dly {
    background: #faca46;
    color: #000;
    border: none;
    padding: 10px 30px;
    /* border: 1px solid #aa284a96; */
    box-shadow: 0 0 5px 2px #faca4678;
    font-size: 20px;
    border-radius: 10px;
    font-weight: bold;
}

.casino-id-wrap {
    display: flex;
    justify-content: unset;
    flex-direction: column;
    grid-gap: 15px;
}
