﻿@import"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";

a {
    text-decoration: none
}

input:-moz-read-only {
    pointer-events: none
}

input:read-only, .select_disable {
    pointer-events: none
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

body {
    width: 100%;
    min-height: 100vh;
    background: #dfe5ea
}

.container {
    background: white;
    min-height: 100vh !important;
    background-image: url(/resources/mobile/image/login/bg.png);
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.login_con {
    width: 100%;
    background-image: url(/Resources/Mobile/Image/login/bg.png);
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

* {
    margin: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-family: "Montserrat",sans-serif;
    scroll-behavior: smooth
}

.row {
    display: flex
}

.btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 15px;
    border: 0;
    background: rgba(0,0,0,0);
    font-weight: 700;
    cursor: pointer;
    text-align: center
}

input {
    background: #fff;
    padding: 11px 20px;
    border-radius: 15px;
    border: 1px solid #000;
    font-size: 12px;
    outline: 0;
    font-weight: 500
}

    input::-moz-placeholder {
        font-weight: 500;
        color: #d1d3d4;
        letter-spacing: .4px
    }

    input::placeholder {
        font-weight: 500;
        color: #d1d3d4;
        letter-spacing: .4px
    }

    input[type=checkbox] {
        accent-color: #ed1c24
    }

.input_margin {
    margin-bottom: 20px
}

.col {
    display: flex;
    flex-direction: column
}

header {
    width: 100%;
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: #fff;
    z-index: 99;
    transition: .4s;
    /*background-image: url(/resources/mobile/image/bg_cny.jpg);*/
}

    header .logo {
        width: 40%;
        max-width: 178px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center
    }

    header .header_right_wrap {
        flex: 1;
        justify-content: flex-end;
        align-items: center;
        gap: 4px
    }

        header .header_right_wrap a {
            width: 30px
        }

            header .header_right_wrap a img {
                width: 100%
            }

        header .header_right_wrap .login_btn {
            border: 1px solid #000
        }

        header .header_right_wrap .reg_btn {
            color: #fff;
            background: #ed1c24;
            border: 1px solid #ed1c24;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 12px;
            width: 133px;
            border-radius: 15px;
        }

            header .header_right_wrap .reg_btn img {
                width: 18px
            }

        header .header_right_wrap i {
            font-size: 22px
        }

        header .header_right_wrap .header_logged_row {
            width: -moz-fit-content;
            width: fit-content;
            padding: 5px;
            border-radius: 999rem;
            align-items: center;
            gap: 5px;
            max-width: 150px;
            border: 2px solid red;
        }

            header .header_right_wrap .header_logged_row i {
                font-size: 13px;
                color: black;
                margin-left: 5px;
                margin-right: 4px;
            }

            header .header_right_wrap .header_logged_row span {
                font-size: 12px;
                color: #58595b;
                font-weight: 600
            }

            header .header_right_wrap .header_logged_row .balance {
                font-size: 12px;
                color: #fff;
                text-align: left;
                white-space: nowrap;
                font-weight: 600;
                gap: 5px;
                width: auto !important;
            }

                header .header_right_wrap .header_logged_row .balance input {
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    width: 60%;
                    background: none;
                    border: 0;
                    padding: 0;
                    color: #fff;
                    font-size: 12px;
                    font-weight: 600;
                    text-align: right;
                    cursor: default
                }

            header .header_right_wrap .header_logged_row .wallet_btn {
                width: 20px;
                height: 20px;
                padding: 5px;
                background: #fff;
                border-radius: 999rem
            }

                header .header_right_wrap .header_logged_row .wallet_btn img {
                    width: 100%
                }

.header_center {
    width: 100%;
    position: relative;
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
    border-radius: 0 0 35px 35px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .4)
}

    .header_center .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .header_center .close {
        width: 24px;
        height: 24px;
        position: absolute;
        top: 0;
        left: 0;
        padding: 5px;
        border-radius: 999rem;
        background: rgba(0, 0, 0, .7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        margin: 10px;
    }

        .header_center .close img {
            width: 100%;
            filter: grayscale(1);
        }

    .header_center i {
        color: #fff;
    }

.header_sticky {
    position: sticky;
    top: -2px;
    animation: slide-in-top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    box-shadow: 0px 5px 10px rgba(0,0,0,.3)
}

.top_wrap {
    width: 100%;
    padding: 0 10px;
    padding-bottom: 10px;
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 12px 8px rgba(0,0,0,.3);
/*    background-image: url(/resources/mobile/image/bg_cny.jpg);*/
}

.center_wrap {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    margin-top: 20px;
    box-shadow: 0px 0px 8px rgba(0,0,0,.3);
    background: #fff
}

    .center_wrap .qr {
        width: 33px;
        padding-right: 20px;
        border-right: 1px solid #929292
    }

        .center_wrap .qr i {
            font-size: 20px;
            color: #ed1c24
        }

    .center_wrap .logged_infor_col {
        /*width: -webkit-fill-available;*/
        gap: 5px;
        align-items: center
    }

        .center_wrap .logged_infor_col .logged_infor_row {
            width: 100%;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
            margin-left: -22%;
        }

            .center_wrap .logged_infor_col .logged_infor_row p {
                font-size: 12px;
                font-weight: 600;
                color: gray;
                text-align: left;
                min-width: 100px;
                text-align: right
            }

            .center_wrap .logged_infor_col .logged_infor_row div {
                font-size: 14px;
                color: #000;
                font-weight: 700;
                flex: 1;
                text-align: left;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden
            }

    .center_wrap a {
        width: 33px;
        padding-left: 20px;
        border-left: 1px solid #929292
    }

        .center_wrap a i {
            font-size: 20px;
            color: #ed1c24
        }

.cur_gaming_wrap {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-top: 1px dashed rgba(128,128,128,.6196078431);
    border-bottom: 1px dashed rgba(128,128,128,.6196078431);
    margin-top: 10px
}

    .cur_gaming_wrap .col span {
        font-size: 10px;
        color: #666
    }

    .cur_gaming_wrap .col .product {
        font-size: 14px;
        font-weight: 700;
        color: #ed1c24
    }

    .cur_gaming_wrap .btn {
        background: #ed1c24;
        border-radius: 10px;
        color: #fff;
        font-size: 12px;
        font-weight: 500
    }

.bannerSwiper {
    width: 100%
}

    .bannerSwiper .swiper-slide {
        width: 100%;
        display: flex
    }

        .bannerSwiper .swiper-slide img {
            width: 100%;
            border-radius: 15px
        }

    .bannerSwiper .swiper-pagination-bullet {
        background: #fff;
        opacity: .6
    }

    .bannerSwiper .swiper-pagination-bullet-active {
        background: #000;
        opacity: 1
    }

.marquee_wrap {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #dfe5ea;
    padding: 3px 10px;
    border-radius: 999rem;
    margin: 10px auto 0
}

    .marquee_wrap img {
        width: 18px
    }

    .marquee_wrap marquee {
        color: #2a2b2c;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: .5px
    }

.bottom_wrap {
    width: 100%;
    padding: 20px 10px;
    gap: 10px;
    align-items: flex-start
}

.index_menu_col {
    width: 70px;
    padding: 20px 0 10px;
    background: #fff;
    box-shadow: -3px 0px 5px rgba(0,0,0,.3);
    border-radius: 10px;
    align-items: center
}

    .index_menu_col .index_menu_wrap {
        width: 100%;
        gap: 10px;
        overflow: auto;
        /*max-height: 55vh !important*/
    }

        .index_menu_col .index_menu_wrap::-webkit-scrollbar {
            display: none;
            width: 0
        }

    .index_menu_col .menu_scroll_target {
        height: 70vh !important;
        max-height: unset !important
    }

    .index_menu_col i {
        color: #808285;
        margin-top: 10px
    }

    .index_menu_col .index_menu_block {
        width: 100%;
        min-height: 71px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: relative
    }

        .index_menu_col .index_menu_block::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 90%;
            height: 90%;
            border-radius: 20px 0 0 20px;
            background: #dfe5ea;
            opacity: 0;
            transition: .4s
        }

        .index_menu_col .index_menu_block img {
            width: 26px;
            filter: grayscale(1);
            z-index: 2;
            transition: .4s
        }


        .index_menu_col .index_menu_block.gold img {
            filter: brightness(1.2) sepia(1) hue-rotate(-170deg) saturate(5);
        }

        .index_menu_col .index_menu_block span {
            color: #808285;
            font-size: 11px;
            font-weight: 600;
            position: relative;
            z-index: 2;
            transition: .4s
        }

    .index_menu_col .target::before {
        opacity: 1
    }

    .index_menu_col .target img {
        filter: none;
        transform: translateX(5px)
    }

    .index_menu_col .target span {
        opacity: 0;
        visibility: hidden;
        display: none
    }

.news_wrap {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    align-items: center;
    gap: 10px
}

    .news_wrap .news_icon {
        width: 40px;
        height: 40px;
        padding: 9px;
        background: #d7dadd;
        border-radius: 999rem
    }

        .news_wrap .news_icon img {
            width: 100%
        }

    .news_wrap .news_infor {
        flex: 1;
        color: #6f7073;
        font-size: 10px;
        font-weight: 600
    }

        .news_wrap .news_infor .sp {
            color: #ed1c24;
            font-size: 10px;
            font-weight: 600
        }

.index_wrap {
    width: calc(100% - 80px - 10px) !important;
    padding: 0;
    gap: 10px;
    padding-bottom: 5px;
    margin-bottom: 50px;
}

    .index_wrap .title {
        font-size: 14px;
        color: #58595b;
        font-weight: 700
    }

    .index_wrap .title_sm {
        font-size: 14px;
        color: #58595b;
        font-weight: 700
    }

    .index_wrap .table_wrap {
        width: 100%;
        background: #fff;
        padding: 10px;
        border-radius: 10px;
        overflow: auto
    }

        .index_wrap .table_wrap table {
            width: 100%;
            border-spacing: none;
            border-collapse: collapse
        }

            .index_wrap .table_wrap table th {
                color: #888a8d
            }

            .index_wrap .table_wrap table td {
                color: #6a6b6d
            }

            .index_wrap .table_wrap table th, .index_wrap .table_wrap table td {
                text-align: center;
                font-size: 10px;
                white-space: nowrap;
                font-weight: 700;
                padding: 5px
            }

            .index_wrap .table_wrap table tr:nth-child(even) {
                border-radius: 10px
            }

                .index_wrap .table_wrap table tr:nth-child(even) td {
                    background: #dfe5ea
                }

                    .index_wrap .table_wrap table tr:nth-child(even) td:first-child {
                        border-radius: 5px 0 0 5px
                    }

                    .index_wrap .table_wrap table tr:nth-child(even) td:last-child {
                        border-radius: 0 5px 5px 0
                    }

    .index_wrap .index_live {
        width: 100%
    }

        .index_wrap .index_live img {
            width: 100%;
            border-radius: 15px
        }

    .index_wrap .banner {
        width: 100%;
        border-radius: 15px
    }

    .index_wrap .video_con {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden
    }

        .index_wrap .video_con iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%
        }

    .index_wrap .social_wrap {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        align-items: stretch;
        gap: 10px
    }

        .index_wrap .social_wrap .left {
            flex: 1;
            display: flex
        }

            .index_wrap .social_wrap .left .img_block {
                margin: auto;
                width: -moz-fit-content;
                width: fit-content;
                padding: 10px;
                border-radius: 14px;
                box-shadow: 0px 0px 10px rgba(0,0,0,.5);
                background: #fff
            }

                .index_wrap .social_wrap .left .img_block img {
                    width: 28px
                }

        .index_wrap .social_wrap .right {
            width: 70%;
            gap: 10px
        }

            .index_wrap .social_wrap .right .social_block {
                width: 100%;
                align-items: stretch
            }

                .index_wrap .social_wrap .right .social_block .img_block {
                    width: -moz-fit-content;
                    width: fit-content;
                    padding: 8px;
                    border-radius: 10px;
                    z-index: 9;
                    box-shadow: 0px 0px 10px rgba(0,0,0,.5)
                }

                    .index_wrap .social_wrap .right .social_block .img_block img {
                        width: 26px
                    }

                .index_wrap .social_wrap .right .social_block .block_infor {
                    flex: 1;
                    font-size: 13px;
                    color: #000;
                    text-align: center;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    border-radius: 0 10px 10px 0;
                    margin-left: -5px
                }

            .index_wrap .social_wrap .right .fb_block .img_block {
                background: #1877f2;
                background: #fff
            }

            .index_wrap .social_wrap .right .fb_block .block_infor {
                height: 100%;
                color: #fff;
                background: linear-gradient(90deg, #3a589b, #2c67f2)
            }

            .index_wrap .social_wrap .right .insta_block .img_block {
                background: #fff
            }

            .index_wrap .social_wrap .right .insta_block .block_infor {
                height: 100%;
                color: #fff;
                background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7)
            }

.match-owl {
    width: 100%
}

    .match-owl .item {
        width: 240px;
        position: relative
    }

        .match-owl .item .bg {
            width: 100%;
            border-radius: 10px;
            filter: brightness(0.5);
        }

        .match-owl .item .match_cover {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 15px;
            overflow: hidden
        }

            .match-owl .item .match_cover .match_date {
                width: 100%;
                background: rgba(0,0,0,.7);
                padding: 8px;
                font-size: 12px;
                color: #dfe5ea;
                text-align: center
            }

            .match-owl .item .match_cover .match_row {
                width: 100%;
                height: 100%;
                justify-content: space-around;
                align-items: stretch;
                gap: 10px
            }

                .match-owl .item .match_cover .match_row .team {
                    flex: 1;
                    justify-content: center;
                    align-items: center;
                    gap: 10px
                }

                    .match-owl .item .match_cover .match_row .team img {
                        width: 70%
                    }

                    .match-owl .item .match_cover .match_row .team .team_name {
                        font-size: 12px;
                        color: #fff
                    }

                .match-owl .item .match_cover .match_row .match_middle_col {
                    flex: 1;
                    height: 100%;
                    justify-content: center;
                    align-items: center;
                    position: relative
                }

                    .match-owl .item .match_cover .match_row .match_middle_col h2 {
                        color: #dfe5ea
                    }

                    .match-owl .item .match_cover .match_row .match_middle_col .bet_btn {
                        position: absolute;
                        top: 70%;
                        width: 100%;
                        text-align: center;
                        white-space: nowrap;
                        background: #dfe5ea;
                        color: white;
                        font-size: .6rem;
                        font-weight: 700;
                        padding: 5px 0
                    }

.promo-owl {
    width: 100%
}

    .promo-owl .item {
        width: 100%
    }

        .promo-owl .item img {
            width: 100%;
            border-radius: 15px 15px 0 0
        }

        .promo-owl .item .promo_infor_block {
            width: 100%;
            background: #27313c;
            border-radius: 0 0 15px 15px;
            padding: 9px 15px;
            gap: 10px
        }

            .promo-owl .item .promo_infor_block .promo_title {
                width: 100%;
                font-size: 11px;
                font-weight: 600;
                color: #fff;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .promo-owl .item .promo_infor_block .promo_count_row {
                width: 100%;
                justify-content: space-between;
                align-items: center;
                gap: 20px
            }

            .promo-owl .item .promo_infor_block .get_btn {
                width: 55%;
                text-align: center;
                white-space: nowrap;
                color: #fff;
                background: #ed1c24;
                font-size: .7rem;
                font-weight: 700;
                padding: 9px 13px
            }

    .promo-owl .countdown_row {
        width: 100%;
        margin: auto 0;
        align-items: flex-start
    }

        .promo-owl .countdown_row .countdown_day {
            gap: 4px;
            align-items: center
        }

            .promo-owl .countdown_row .countdown_day .countdown_block {
                width: -moz-fit-content;
                width: fit-content;
                padding: 5px 9px;
                background: #fff;
                font-size: 10px;
                font-weight: 600;
                border-radius: 4px;
                color: #000
            }

            .promo-owl .countdown_row .countdown_day span {
                color: #c2c5c7;
                font-size: 8px
            }

        .promo-owl .countdown_row .countdown_timer {
            width: -moz-fit-content;
            width: fit-content;
            align-items: flex-start;
            margin-left: 8px;
            position: relative
        }

            .promo-owl .countdown_row .countdown_timer .symbol {
                background: #fff;
                padding: 5px 0;
                font-size: 10px;
                color: #000
            }

            .promo-owl .countdown_row .countdown_timer .countdown_wrap {
                position: relative;
                gap: 4px
            }

                .promo-owl .countdown_row .countdown_timer .countdown_wrap .countdown_block {
                    padding: 5px 9px;
                    background: #fff;
                    font-size: 10px;
                    font-weight: 600;
                    color: #000
                }

                .promo-owl .countdown_row .countdown_timer .countdown_wrap span {
                    color: #c2c5c7;
                    font-size: 8px;
                    text-align: center
                }

                .promo-owl .countdown_row .countdown_timer .countdown_wrap .border_left {
                    border-radius: 4px 0 0 4px
                }

                .promo-owl .countdown_row .countdown_timer .countdown_wrap .border_right {
                    border-radius: 0 4px 4px 0
                }

.owl-theme .owl-dots {
    /*    position: absolute;*/
    top: -28px;
    right: 0;
    margin-top: 0 !important
}

    .owl-theme .owl-dots .owl-dot span {
        width: 7px;
        height: 7px;
        margin: 5px 3px;
        background: #fff
    }

.border_btm {
    border-bottom: .6mm solid #bfc0c2
}

.login_wrap {
    width: 100%
}

    .login_wrap .login_banner_wrap {
        width: 100%;
        background: #ed1c24;
        border-radius: 0 0 35px 35px;
        align-items: center;
        justify-content: center;
        gap: 20px;
        box-shadow: 0px 0px 10px rgba(0,0,0,.4)
    }

        .login_wrap .login_banner_wrap .banner_txt {
            width: 28%;
            max-width: 100px
        }

        .login_wrap .login_banner_wrap .banner_img {
            transform: translateY(30px);
            width: 40%;
            max-width: 200px
        }

    .login_wrap form {
        width: 80%;
        gap: 25px;
        margin: 15px auto;
    }

    .login_wrap .em_form {
        width: 100%;
        gap: 20px;
        margin: 15px 0px;
    }

    .login_wrap form .textbox_wrap {
        width: 100%;
        gap: 3px;
        position: relative
    }

        .login_wrap form .textbox_wrap input {
            width: 100%
        }

        .login_wrap form .textbox_wrap span {
            color: #ed1c24
        }

        .login_wrap form .textbox_wrap i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: #a7a9ac
        }

    .login_wrap form .textbox_col {
        width: 100%;
        gap: 3px
    }

        .login_wrap form .textbox_col .textbox_title {
            color: #ed1c24;
            font-size: 12px;
            margin-bottom: 5px;
            font-weight: 600
        }

        .login_wrap form .textbox_col .textbox_wrap {
            margin-bottom: 0 !important
        }

        .login_wrap form .textbox_col p {
            font-size: 10px
        }

    .login_wrap form select {
        background: #fff;
        padding: 10px 13px;
        border-radius: 10px;
        border: 1px solid #000;
        font-size: 12px;
        outline: 0;
        margin-right: 5px
    }

    .login_wrap form .ref_col {
        border-top: 1px solid #c1c2c3;
        margin-top: 5px;
        padding-top: 15px
    }

    .login_wrap form .form_title {
        font-size: 18px;
        color: #000;
        font-weight: 700
    }

    .login_wrap form .checkbox_row {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 0 10px
    }

        .login_wrap form .checkbox_row input {
            margin: 0;
            pointer-events: all !important
        }

        .login_wrap form .checkbox_row label {
            font-size: 12px;
            color: #ed1c24;
            font-weight: 600
        }

    .login_wrap form .btn {
        width: 100%;
        font-size: 15px;
        background: #ed1c24;
        color: #fff;
        border-radius: 10px;
        padding: 9px
    }

    .login_wrap form .forgot_link {
        width: 100%;
        text-decoration: underline;
        font-size: 13px;
        margin: 15px auto;
        text-align: center;
        color: #ed1c24;
        font-weight: 600
    }

    .login_wrap form .textbox_anim {
        width: 100%;
        position: relative
    }

        .login_wrap form .textbox_anim input {
            width: 100%;
            background: #fff;
            padding: 20px 25px 10px
        }

        .login_wrap form .textbox_anim label {
            position: absolute;
            top: 0;
            font-size: 13px;
            margin: 15px;
            padding: 0 10px;
            font-weight: 500;
            color: #d1d3d4;
            z-index: 5;
            letter-spacing: .4px;
            pointer-events: none;
            transition: top .2s ease-in-out,font-size .2s ease-in-out
        }

        .login_wrap form .textbox_anim .active {
            font-weight: 600;
            top: -10px;
            font-size: 10px;
            color: #000
        }

    .login_wrap .reg_link {
        width: 100%;
        margin-top: 10vh;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-bottom: 1px solid #919396;
        padding-bottom: 20px;
        margin-bottom: 20px
    }

        .login_wrap .reg_link p {
            font-size: 12px;
            font-weight: 600;
            color: #6d6e71;
            gap: 5px;
            display: ruby-text;
            text-align: center
        }

            .login_wrap .reg_link p a {
                color: #ed1c24;
                font-size: 12px;
                font-weight: 600;
                white-space: nowrap;
                text-decoration: none
            }

    .login_wrap .log_link {
        width: 100%;
        margin-top: 3vh;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding-bottom: 30px
    }

        .login_wrap .log_link p {
            font-size: 12px;
            font-weight: 600;
            color: #6d6e71;
            gap: 5px;
            display: ruby-text;
            text-align: center
        }

            .login_wrap .log_link p a {
                color: #ed1c24;
                font-size: 12px;
                font-weight: 600;
                white-space: nowrap;
                margin-left: 5px
            }

    .login_wrap .contact_link {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding-bottom: 30px
    }

        .login_wrap .contact_link p {
            font-size: 10px;
            font-weight: 600;
            color: #6d6e71;
            gap: 5px;
            display: ruby-text;
            text-align: center
        }

            .login_wrap .contact_link p a {
                color: #ed1c24;
                font-size: 10px;
                font-weight: 600;
                white-space: nowrap;
                text-decoration: none
            }

    .login_wrap .license {
        width: 100%;
        max-width: 120px;
        margin: 20px auto 0
    }

        .login_wrap .license img {
            width: 100%
        }

.login_ph {
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    cursor: pointer
}

.game_wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

    .game_wrap .game_block {
        width: 100%;
        position: relative;
        overflow: hidden
    }

        .game_wrap .game_block img {
            width: 100%
        }

        .game_wrap .game_block .text_sp {
            position: absolute;
            top: 11.5%;
            right: 0px;
            border-radius: 0 2vw 0 2vw;
            background: #ed1c24;
            padding: 3% 6%;
            font-size: 2vw;
            color: #fff;
            text-transform: uppercase;
            font-weight: 700
        }

        .game_wrap .game_block .game_cover {
            position: absolute;
            bottom: -150%;
            left: 0;
            background: rgba(0,0,0,.8);
            border-radius: 2vw;
            width: 100%;
            height: 89%;
            z-index: 3;
            display: flex;
            transition: .4s
        }

            .game_wrap .game_block .game_cover .play_btn {
                width: -moz-fit-content;
                width: fit-content;
                background: #ed1c24;
                color: #fff;
                font-size: .6rem;
                border-radius: 10px;
                margin: auto;
                padding: 9px 14px;
                font-weight: 700;
                text-transform: uppercase
            }

        .game_wrap .game_block:hover .game_cover {
            bottom: 0
        }

footer {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    padding: 10px;
    border-radius: 20px 20px 0 0;
    background: #fff;
    gap: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.4);
    z-index: 99
}

    footer .footer_block_col {
        flex: 1;
        align-items: center;
        gap: 5px
    }

        footer .footer_block_col img {
            width: 24px;
            filter: grayscale(1);
            transition: .4s
        }

        footer .footer_block_col span {
            font-size: 9px;
            font-weight: 700;
            color: #808285
        }

    footer .footer_active img {
        filter: none;
    }

.cover {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none
}

.number_wrap {
    width: 100%;
    margin-top: auto
}

    .number_wrap .title {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        background: #ed1c24;
        padding: 10px;
        border-radius: 10px 10px 0 0;
        position: relative;
        width: 100%
    }

        .number_wrap .title i {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 15px
        }

    .number_wrap .number_col {
        width: 100%;
        background: #fff;
        max-height: 30vh;
        overflow: auto;
    }

        .number_wrap .number_col .number {
            width: 100%;
            padding: 15px;
            border-bottom: 1px dashed gray;
            font-size: 12px;
            color: #000;
            font-weight: 600;
            text-align: center;
            justify-content: center;
            align-items: center;
            gap: 10px
        }

            .number_wrap .number_col .number img {
                width: 30px;
                filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
                margin-left: 5%;
            }

            .number_wrap .number_col .number span {
                width: 110px;
                text-align: left
            }

.menu_con {
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: #dfe5ea;
    margin-left: auto;
    overflow: auto;
    transform: translateX(100%);
    transition: .4s
}

    .menu_con .menu_top_row {
        width: 100%;
        padding: 8px 12px;
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
        justify-content: space-between;
        align-items: center;
        gap: 10px
    }

        .menu_con .menu_top_row .menu_close {
            width: 24px;
            height: 24px;
            border-radius: 15px;
            background: rgba(0,0,0,.7);
            display: flex;
            justify-content: center;
            align-items: center
        }

            .menu_con .menu_top_row .menu_close i {
                color: #fff
            }

        .menu_con .menu_top_row .lang_row {
            width: -moz-fit-content;
            width: fit-content;
            gap: 14px;
            align-items: center
        }

            .menu_con .menu_top_row .lang_row .title {
                font-size: 11px;
                font-weight: 500;
                color: #fff
            }

            .menu_con .menu_top_row .lang_row .current_lang {
                width: 30px;
                padding: 1px;
                border-radius: 999rem
            }

    .menu_con .menu_body {
        width: 100%;
        padding: 15px
    }

    .menu_con .menu_title {
        font-size: 12px;
        color: #000;
        margin-bottom: 10px;
        font-weight: 600;
        margin-top: 10px
    }

    .menu_con .menu_grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 10px;
        align-items: center
    }

        .menu_con .menu_grid .menu_block {
            width: 100%;
            background: #fff;
            border-radius: 8px;
            padding: 15px 0;
            justify-content: center;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: 1px solid #fff;
            position: relative;
            box-shadow: 0px 0px 10px rgba(0,0,0,.2)
        }

            .menu_con .menu_grid .menu_block img {
                width: 50%;
                height: 50%;
                filter: brightness(0) invert(0.5)
            }

            .menu_con .menu_grid .menu_block span {
                font-size: 10px;
                white-space: nowrap;
                width: 100%;
                text-align: center;
                text-overflow: ellipsis;
                color: #6e6f72;
                font-weight: 600
            }

            .menu_con .menu_grid .menu_block .text_sp {
                position: absolute;
                top: -1px;
                right: -1px;
                border-radius: 0 8px 0 8px;
                background: #ed1c24;
                padding: 3px 10px;
                font-size: 8px;
                color: #fff;
                text-transform: uppercase;
                font-weight: 700;
                width: -moz-fit-content;
                width: fit-content
            }

        .menu_con .menu_grid .menu_active {
            border: 1px solid #ed1c24
        }

            .menu_con .menu_grid .menu_active img {
                filter: none
            }

    .menu_con .menu_row {
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        padding: 12px;
        border-bottom: 1px solid #a8aaad
    }

        .menu_con .menu_row .menu {
            font-size: 12px;
            font-weight: 600;
            color: #7a7c80
        }

        .menu_con .menu_row img {
            width: 25px;
            filter: brightness(0) invert(0.4)
        }

.menu_con_show {
    transform: translateX(0)
}

.page_header_row {
    width: 100%;
    padding: 13px 16px;
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

    .page_header_row .menu_close {
        width: 24px;
        height: 24px;
        border-radius: 999rem;
        background: rgba(0,0,0,.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10
    }

        .page_header_row .menu_close i {
            color: #fff
        }

    .page_header_row .page_name {
        color: #fff;
        font-weight: 700;
        font-size: 14px
    }

.page_con {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 65px;
}

.page_sticky {
    width: 100%;
    position: sticky;
    top: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.4);
    z-index: 99;
    height: 42px;
    background: #ed1c24
}

.page_stickyot {
    width: 100%;
    position: sticky;
    top: 0;
    border-radius: 0 0 20px 20px;
    z-index: 99;
    background: #ed1c24
}

.page_stickyo {
    width: 100%;
    position: sticky;
    top: 0;
    border-radius: 0 0 20px 20px;
    z-index: 99;
    height: 108px
}

.page_top {
    width: 100%;
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
    padding: 5px 20px 10px;
    border-radius: 0 0 15px 15px;
    gap: 12px;
}

    .page_top .login_banner_wrap {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px
    }

        .page_top .login_banner_wrap .banner_txt {
            width: 28%;
            max-width: 100px
        }

        .page_top .login_banner_wrap .banner_img {
            transform: translateY(30px);
            width: 40%;
            max-width: 200px
        }

    .page_top .wallet_balance_row {
        width: 100%;
        gap: 10px;
        margin-top: 7px
    }

        .page_top .wallet_balance_row .wallet_infor_col {
            flex: 1;
            gap: 5px
        }

            .page_top .wallet_balance_row .wallet_infor_col .wallet_title {
                width: 100%;
                text-transform: uppercase;
                color: #fafafa;
                font-size: 14px;
                font-weight: 600;
                gap: 10px;
                padding: 0 8px
            }

                .page_top .wallet_balance_row .wallet_infor_col .wallet_title i {
                    color: #e4e4e4
                }

            .page_top .wallet_balance_row .wallet_infor_col .wallet_balance {
                width: 100%;
                position: relative;
                background: #fff;
                border-radius: 999rem
            }

                .page_top .wallet_balance_row .wallet_infor_col .wallet_balance .value {
                    color: #6d6e71;
                    font-size: 12px;
                    font-weight: 700;
                    top: 50%;
                    transform: translateY(-50%);
                    position: absolute;
                    line-height: 1;
                    left: 20px
                }

                .page_top .wallet_balance_row .wallet_infor_col .wallet_balance input {
                    width: 88%;
                    border: 0;
                    outline: 0;
                    background: rgba(0,0,0,0);
                    color: #6d6e71;
                    font-size: 12px;
                    font-weight: 700;
                    padding: 10px 20px;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden
                }

                .page_top .wallet_balance_row .wallet_infor_col .wallet_balance .balance_input {
                    padding-left: 50px
                }

                .page_top .wallet_balance_row .wallet_infor_col .wallet_balance i {
                    position: absolute;
                    top: 50%;
                    right: 15px;
                    transform: translateY(-50%);
                    color: #bcbec0
                }

    .page_top .page_nav_row {
        width: 100%;
        padding: 3px;
        background: #e3e3e3;
        border-radius: 15px;
        overflow: auto;
        align-items: stretch;
        gap: 3px
    }

        .page_top .page_nav_row .page_nav {
            flex: 1;
            min-width: 60px;
            padding: 10px 4px;
            border-radius: 15px;
            text-align: center;
            color: #939598;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: .4s;
            max-width: 100px;
        }


        .page_top .page_nav_row .nav_active {
            color: #fff;
            background: #be1e2d
        }

.page_wrap {
    width: 100%;
    padding: 10px 12px;
    gap: 15px
}

    .page_wrap .page_wrap .banner {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        border-radius: 8px
    }

        .page_wrap .page_wrap .banner .page_wrap .banner {
            border-radius: 8px
        }

@media(max-width: 768px) {
    .page_wrap .page_wrap .banner .page_wrap .banner {
        border-radius: 4px
    }
}

    .page_wrap .user_bar_row {
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0,0,0,.3);
        border-radius: 15px;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        padding: 12px 16px
    }

        .page_wrap .user_bar_row .icon {
            width: 30px
        }

            .page_wrap .user_bar_row .icon img {
                width: 100%
            }

        .page_wrap .user_bar_row .user_infor_col {
            flex: 1
        }

            .page_wrap .user_bar_row .user_infor_col .username {
                flex: 1;
                color: #58595b;
                font-size: 13px;
                font-weight: 700
            }

            .page_wrap .user_bar_row .user_infor_col .user_id {
                flex: 1;
                color: #939598;
                font-size: 12px;
                font-weight: 600
            }

        .page_wrap .user_bar_row .user_vip {
            width: 70px
        }

            .page_wrap .user_bar_row .user_vip img {
                width: 100%;
                border-radius: 5px
            }

        .page_wrap .user_bar_row .user_qr {
            width: 38px
        }

            .page_wrap .user_bar_row .user_qr img {
                width: 100%
            }

    .page_wrap .wallet_wrap {
        width: 100%;
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
        border-radius: 15px;
        padding: 15px
    }

        .page_wrap .wallet_wrap .wallet_balance_row {
            width: 100%;
            gap: 10px
        }

            .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col {
                flex: 1;
                gap: 5px
            }

                .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_title {
                    width: 100%;
                    text-transform: uppercase;
                    color: #fafafa;
                    font-size: 10px;
                    font-weight: 600;
                    gap: 10px;
                    margin-top: 12px
                }

                    .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_title i {
                        color: #e4e4e4
                    }

                .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance {
                    width: 100%;
                    position: relative;
                    background: #fff;
                    border-radius: 15px;
                }

                    .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance .value {
                        color: #6d6e71;
                        font-size: 12px;
                        font-weight: 700;
                        top: 50%;
                        transform: translateY(-50%);
                        position: absolute;
                        line-height: 1;
                        left: 20px
                    }

                    .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance input {
                        width: 88%;
                        border: 0;
                        outline: 0;
                        background: rgba(0,0,0,0);
                        color: #6d6e71;
                        font-size: 12px;
                        font-weight: 700;
                        padding: 10px 20px;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        overflow: hidden
                    }

                    .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance .balance_input {
                        padding-left: 50px
                    }

                    .page_wrap .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance i {
                        position: absolute;
                        top: 50%;
                        right: 15px;
                        transform: translateY(-50%);
                        color: #bcbec0
                    }

        .page_wrap .wallet_wrap .wallet_grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            padding: 14px 0 0
        }

            .page_wrap .wallet_wrap .wallet_grid .wallet_block {
                width: 100%;
                background: rgba(0,0,0,.2);
                padding: 12px;
                border-radius: 15px;
                justify-content: center;
                align-items: center;
                gap: 10px
            }

                .page_wrap .wallet_wrap .wallet_grid .wallet_block img {
                    width: 22px
                }

                .page_wrap .wallet_wrap .wallet_grid .wallet_block span {
                    font-size: 12px;
                    color: #fff;
                    font-weight: 600;
                    width: 62px
                }

    .page_wrap .wallet_menu_col {
        width: 100%;
        background: #fff;
        border-radius: 15px;
        padding: 0 12px;
        box-shadow: 0px 0px 5px rgba(0,0,0,.3)
    }

        .page_wrap .wallet_menu_col .wallet_menu_row {
            width: 100%;
            gap: 12px;
            align-items: center;
            border-bottom: 1px solid #b6b7ba;
            padding: 15px;
            position: relative
        }

            .page_wrap .wallet_menu_col .wallet_menu_row img {
                width: 18px
            }

            .page_wrap .wallet_menu_col .wallet_menu_row span {
                color: #6d6e71;
                font-size: 12px;
                font-weight: 600
            }

            .page_wrap .wallet_menu_col .wallet_menu_row i {
                margin-left: auto;
                color: #6d6e71
            }

            .page_wrap .wallet_menu_col .wallet_menu_row .img_rlt {
                position: relative
            }

                .page_wrap .wallet_menu_col .wallet_menu_row .img_rlt .dot {
                    width: 6px;
                    height: 6px;
                    border-radius: 999rem;
                    background: #ed1c24;
                    display: block;
                    position: absolute;
                    top: 1px;
                    left: 1px;
                    animation: attention 1.2s infinite both
                }

@keyframes attention {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.page_wrap .wallet_menu_col .wallet_menu_row:last-child {
    border-bottom: 0
}

.page_wrap .logout_btn, .create_btn {
    width: 100%;
    text-align: center;
    border: 1px solid #ed1c24;
    color: #fff;
    padding: 10px;
    background-color: #ed1c24;
    border-radius: 15px
}

.page_wrap .withdraw_notice {
    font-size: 12px;
    font-weight: 700;
    color: #58595b;
    padding-left: 10px;
    border-bottom: 1px solid #a7a9ac;
    padding-bottom: 27px
}

    .page_wrap .withdraw_notice .time {
        color: #ed1c24;
        font-size: 12px;
        font-weight: 700
    }

.page_wrap .textbox_block {
    width: 98%;
    padding: 5px 15px;
    gap: 8px;
    margin: 0px auto
}

    .page_wrap .textbox_block .textbox_title {
        font-size: 12px;
        font-weight: 700;
        color: #58595b
    }

        .page_wrap .textbox_block .textbox_title span {
            color: #ed1c24;
            margin-right: 2px
        }

    .page_wrap .textbox_block .textbox_option_row {
        width: 100%;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 8px
    }

        .page_wrap .textbox_block .textbox_option_row .option_block {
            max-width: 120px;
            width: calc(33.3333333333% - 6px);
            border-radius: 15px;
            overflow: hidden;
            border: .6mm solid rgba(0,0,0,0);
            transition: .4s;
            background: white;
        }

            .page_wrap .textbox_block .textbox_option_row .option_block img {
                width: 100%
            }

            .page_wrap .textbox_block .textbox_option_row .option_block .amount {
                font-size: 14px;
                font-weight: 700;
                color: #808285;
                padding: 10px;
                text-align: center;
                width: 100%;
                background: #fff
            }

            .page_wrap .textbox_block .textbox_option_row .option_block .crypto {
                font-size: 14px;
                font-weight: 700;
                color: #808285;
                padding: 10px;
                text-align: center;
                width: 100%;
                background: #fff
            }

        .page_wrap .textbox_block .textbox_option_row .option_active {
            background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
        }

            .page_wrap .textbox_block .textbox_option_row .option_active .bank-image {
                filter: brightness(0) invert(1);
            }

    .page_wrap .textbox_block .row_5 .option_block {
        max-width: 120px;
        width: calc(20% - 7px)
    }

        .page_wrap .textbox_block .row_5 .option_block .amount {
            font-size: 12px
        }

    .page_wrap .textbox_block .textbox_anim {
        width: 100%;
        position: relative
    }

        .page_wrap .textbox_block .textbox_anim input {
            width: 100%;
            background: #fff;
            padding: 20px 25px 10px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1)
        }

        .page_wrap .textbox_block .textbox_anim label {
            position: absolute;
            top: 0;
            font-size: 12px;
            margin: 15px;
            padding: 0 10px;
            font-weight: 500;
            color: #d1d3d4;
            z-index: 5;
            letter-spacing: .4px;
            transition: top .2s ease-in-out,font-size .2s ease-in-out
        }

        .page_wrap .textbox_block .textbox_anim .active {
            font-weight: 600;
            top: -10px;
            font-size: 10px;
            color: #747474;
        }

    .page_wrap .textbox_block .textbox_alert_wrap {
        display: none;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 4px;
        margin: -10px 0;
        padding: 0 28px
    }

        .page_wrap .textbox_block .textbox_alert_wrap .textbox_elert {
            width: 100%;
            justify-content: flex-start;
            align-items: center;
            gap: 5px;
            color: #ed1c24;
            font-size: 9px;
            font-weight: 600
        }

            .page_wrap .textbox_block .textbox_alert_wrap .textbox_elert img {
                width: 12px
            }

    .page_wrap .textbox_block .textbox_txt_center {
        width: 100%
    }

        .page_wrap .textbox_block .textbox_txt_center input {
            padding: 15px 20px
        }

        .page_wrap .textbox_block .textbox_txt_center .btn_otp {
            margin-left: 10px;
            background: #ed1c24;
            padding: 10px 16px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            border-radius: 15px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: .4s
        }

            .page_wrap .textbox_block .textbox_txt_center .btn_otp:hover {
                opacity: .7
            }

        .page_wrap .textbox_block .textbox_txt_center .usd_textbox, .page_wrap .textbox_block .textbox_txt_center .final_textbox {
            background: #f9f9f9
        }

    .page_wrap .textbox_block .textbox_wrap {
        width: 100%;
        gap: 3px;
        position: relative
    }

        .page_wrap .textbox_block .textbox_wrap input {
            width: 100%;
            background: #f9f9f9;
            padding: 12px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #58595b;
            font-weight: 500;
            font-size: 12px
        }

        .page_wrap .textbox_block .textbox_wrap .textbox {
            width: 100%;
            background: #fff;
            padding: 14px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #ed1c24;
            border-radius: 10px;
            outline: 0;
            font-size: 12px;
            font-weight: 700
        }

        .page_wrap .textbox_block .textbox_wrap span {
            color: #ed1c24
        }

        .page_wrap .textbox_block .textbox_wrap i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: #ed1c24;
            cursor: pointer
        }

        .page_wrap .textbox_block .textbox_wrap select {
            width: 100%;
            background: #fff;
            padding: 14px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            /*color: #ed1c24;*/
            border-radius: 10px;
            outline: 0;
            font-size: 12px;
            font-weight: 700
        }

            .page_wrap .textbox_block .textbox_wrap select optgroup {
                text-decoration: none;
                font-weight: 700 !important;
            }

        .page_wrap .textbox_block .textbox_wrap .select_disable {
            width: 100%;
            background: #d7dce0;
            padding: 12px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #58595b;
            font-weight: 700;
            font-size: 12px;
            border-radius: 10px;
            outline: 0
        }

    .page_wrap .textbox_block .textbox_wrap_xl input {
        width: 100%;
        background: #fff;
        padding: 15px 20px
    }

    .page_wrap .textbox_block p {
        color: #919396;
        font-size: 11px;
        font-weight: 500;
        padding-left: 10px;
        border-bottom: 1px solid #a7a9ac;
        padding-bottom: 10px
    }

    .page_wrap .textbox_block .upload_btn {
        background: #939598;
        border-radius: 10px;
        cursor: pointer
    }

        .page_wrap .textbox_block .upload_btn input {
            opacity: 0;
            width: 100%;
            cursor: pointer;
        }

        .page_wrap .textbox_block .upload_btn .receipt {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            gap: 10px;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            cursor: pointer
        }

            .page_wrap .textbox_block .upload_btn .receipt img {
                width: 26px
            }

            .page_wrap .textbox_block .upload_btn .receipt span {
                color: #fff;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: 700
            }

.page_wrap .rate {
    gap: 5px
}

    .page_wrap .rate span {
        font-size: 12px;
        font-style: italic;
        color: gray;
        font-weight: 600
    }

.page_wrap .fom {
    font-size: 12px;
    font-style: italic;
    color: gray;
    font-weight: 600;
    gap: 4px
}

.page_wrap .date_block {
    justify-content: space-between;
    align-items: center
}

    .page_wrap .date_block .textbox_title {
        white-space: nowrap
    }

    .page_wrap .date_block .textbox_wrap {
        width: 222px;
        background: #fff;
        padding: 0;
        border: 1px solid #cdcdcd;
        box-shadow: 0px 0px 5px rgba(0,0,0,.1);
        color: #58595b;
        font-weight: 700;
        font-size: 12px;
        border-radius: 10px;
        min-height: 43px
    }

        .page_wrap .date_block .textbox_wrap input {
            background: rgba(0,0,0,0);
            padding: 0;
            box-shadow: none;
            border: none;
            width: 100%;
            height: 100%;
            outline: 0;
            padding: 12px;
        }

            .page_wrap .date_block .textbox_wrap input[type=date]::-webkit-calendar-picker-indicator {
                position: absolute;
                width: 100%;
                opacity: 0
            }

        .page_wrap .date_block .textbox_wrap i {
            pointer-events: none;
            font-size: 16px
        }

.page_wrap .date_block_xl {
    align-items: flex-start
}

    .page_wrap .date_block_xl .textbox_wrap {
        width: 100%;
        background: #fff;
        border: 1px solid #cdcdcd;
        box-shadow: 0px 0px 5px rgba(0,0,0,.1)
    }

.page_wrap .submit_btn {
    width: 100%;
    text-align: center;
    background: #ed1c24;
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    margin-top: 40px
}

.page_wrap .important_notice_wrap {
    width: 100%;
    padding: 10px;
    border-top: 1px solid #aaacaf
}

    .page_wrap .important_notice_wrap .notice_title_row {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 10px
    }

        .page_wrap .important_notice_wrap .notice_title_row img {
            width: 14px
        }

        .page_wrap .important_notice_wrap .notice_title_row .title {
            font-size: 12px;
            font-weight: 700;
            color: #6d6e71
        }

        .page_wrap .important_notice_wrap .notice_title_row i {
            margin-left: auto;
            color: #6d6e71;
            transition: .4s
        }

        .page_wrap .important_notice_wrap .notice_title_row .down {
            transform: rotate(180deg)
        }

    .page_wrap .important_notice_wrap .notice_ul {
        width: 100%;
        list-style-type: decimal;
        padding: 0 20px;
        margin-top: 15px
    }

        .page_wrap .important_notice_wrap .notice_ul li {
            color: #8e9094;
            font-size: 10px;
            font-weight: 600;
            margin-bottom: 8px
        }

.page_wrap .textbox_type {
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border: 1px solid #cdcdcd;
    box-shadow: 0px 0px 5px rgba(0,0,0,.1);
    color: #58595b;
    font-weight: 700;
    font-size: 12px;
    border-radius: 10px;
    gap: 10px;
    justify-content: space-between;
    align-items: center
}

    .page_wrap .textbox_type input {
        background: rgba(0,0,0,0);
        width: 88%;
        border: 0;
        padding: 0
    }

.page_wrap .textbox_type_disable {
    pointer-events: none
}

.page_wrap .usdt_rate {
    color: #919396;
    font-size: 11px;
    font-weight: 500;
    padding-left: 10px
}

.page_wrap .event_sm_nav_row {
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    overflow: auto
}

    .page_wrap .event_sm_nav_row .event_sm_nav {
        flex: 1;
        background: #f1f2f2;
        color: #bfc1c3;
        font-size: .6rem;
        font-weight: 600;
        padding: 8px 10px;
        transition: .4s;
        border-radius: 999rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        min-width: 120px
    }

    .page_wrap .event_sm_nav_row .nav_active {
        background: #ed1c24;
        color: #fff
    }

.profile_wrap .textbox_anim {
    margin-top: 0 !important
}

    .profile_wrap .textbox_anim .ps_input {
        padding: 20px 25px 10px !important;
        background: #fff !important
    }

.page_sm_nav_row {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 10px
}

    .page_sm_nav_row .page_sm_nav {
        flex: 1;
        background: #f1f2f2;
        color: #939598;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        padding: 13px;
        transition: .4s;
        border-radius: 15px;
    }

    .page_sm_nav_row .nav_active {
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
        color: #fff;
        border-radius: 15px;
    }

.page_sm_target {
    width: 100%;
    padding: 5px 10px;
    gap: 10px;
    margin-top: 12px
}

    .page_sm_target table {
        background: #f1f2f2;
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        border-radius: 10px;
    }

        .page_sm_target table th, .page_sm_target table td {
            padding: 10px;
            font-size: 11px;
            text-align: center
        }

        .page_sm_target table th {
            font-weight: 700;
            border-bottom: 1px solid #fff
        }

        .page_sm_target table td {
            font-weight: 500;
        }

.mb_select {
    width: -moz-fit-content;
    width: fit-content;
    gap: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #000;
    font-size: 13px;
    outline: 0;
    font-weight: 500;
    background: #fff;
    padding: 0 10px;
    position: relative
}

    .mb_select img {
        width: 18px
    }

    .mb_select span {
        color: #000 !important;
        min-width: 30px;
        text-align: center
    }

    .mb_select i {
        position: relative !important;
        top: unset !important;
        right: unset !important;
        transform: unset !important;
        margin-top: 2px
    }

    .mb_select .mobile_dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        width: 100%;
        border-radius: 10px;
        background: #ddd
    }

        .mb_select .mobile_dropdown .mb_drop_row {
            width: 100%;
            justify-content: center;
            align-items: center;
            padding: 10px;
            gap: 5px
        }

            .mb_select .mobile_dropdown .mb_drop_row:not(:last-child) {
                border-bottom: 1px solid #999
            }

.page_not_margin .textbox_block .textbox_anim {
    margin-top: 0 !important
}

.fund_ac_body {
    background: #dfe5ea
}

    .fund_ac_body .container {
        background: #dfe5ea
    }

    .fund_ac_body .ac_balance_row {
        width: -moz-fit-content;
        width: fit-content;
        padding: 7px 20px;
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        background: #f9f9f9;
        box-shadow: 0px 0px 7px rgba(0,0,0,.5);
        margin-left: auto;
        padding-right: 10px;
        margin-bottom: 10px;
    }

        .fund_ac_body .ac_balance_row .title {
            font-size: 12px;
            color: #58595b;
            font-weight: 500
        }

        .fund_ac_body .ac_balance_row .ac_balance {
            font-size: 14px;
            color: #58595b;
            font-weight: 700
        }

        .fund_ac_body .ac_balance_row i {
            font-size: 14px;
            color: #a7a9ac;
            margin-left: 40px
        }

    .fund_ac_body .ac_balance_infor_wrap {
        width: 100%;
        padding: 10px;
        margin-bottom: 50px;
    }

        .fund_ac_body .ac_balance_infor_wrap .ac_infor_block {
            width: 100%;
            border-radius: 15px;
            padding: 15px;
        }

        .fund_ac_body .ac_balance_infor_wrap .ac_infor_title {
            width: 100%;
            text-align: left;
            color: #ed1c24;
            padding-bottom: 10px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .3px
        }

        .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap {
            width: 100%;
            gap: 8px;
            padding: 10px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr)
        }

            .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap .ac_infor_row {
                width: 100%;
                align-items: center;
                padding: 8px;
                background: white;
                border-radius: 15px;
                gap: 8px;
                box-shadow: 0px 0px 6px rgba(0,0,0,.5)
            }

                .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap .ac_infor_row .provider_img {
                    width: 30%
                }

                    .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap .ac_infor_row .provider_img img {
                        width: 100%
                    }

                .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap .ac_infor_row .col {
                    width: 69%
                }

                .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap .ac_infor_row .provider {
                    color: #323232;
                    font-size: 11px;
                    font-weight: 600;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    max-width: 80%;
                    text-transform: uppercase
                }

                .fund_ac_body .ac_balance_infor_wrap .ac_infor_desc_wrap .ac_infor_row .balance_infor {
                    color: #909294;
                    font-size: 12px;
                    font-weight: 600
                }

.select_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    z-index: 999;
    display: none;
    flex-direction: column
}

    .select_wrap .select_popup {
        width: 100%;
        margin-top: auto
    }

    .select_wrap .select_title {
        background: #ed1c24;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 15px;
        border-radius: 10px 10px 0 0;
        position: relative
    }

        .select_wrap .select_title i {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 10px;
            align-self: flex-end;
            font-size: 16px
        }

    .select_wrap .select_con {
        width: 100%;
        background: white;
    }

        .select_wrap .select_con .select_row {
            width: 100%;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            padding: 15px;
            border-bottom: 1px dashed #bcbec0;
            color: #888a8d
        }

    .select_wrap .select_con_show {
        animation: slide-in-bottom .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
    }

    .select_wrap .select_con_hide {
        animation: slide-in-hide .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
    }

.page_transaction {
    width: 100%;
    padding: 0 !important;
    margin-top: 25px;
}

.transaction_select_row {
    width: 100%;
    gap: 10px;
    background: #dfe5ea
}

    .transaction_select_row .transaction_select_block {
        flex: 1;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 14px 20px;
        background: #dadada;
        margin-top: 5px
    }

        .transaction_select_row .transaction_select_block .transaction_select {
            flex: 1;
            font-size: 12px;
            font-weight: 600;
            color: #58595b
        }

        .transaction_select_row .transaction_select_block i {
            color: #58595b
        }

        .transaction_select_row .transaction_select_block:not(:last-child) {
            position: relative
        }

            .transaction_select_row .transaction_select_block:not(:last-child)::after {
                content: "";
                width: 1px;
                height: 60%;
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                background: #bcbec0
            }

.transaction_result {
    width: 100%;
    padding: 0 15px
}

    .transaction_result table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0
    }

        .transaction_result table th {
            border-bottom: 1px solid #d4d6d7
        }

        .transaction_result table th, .transaction_result table td {
            color: #494949;
            font-size: 10px;
            padding: 8px;
            font-weight: 500
        }

    .transaction_result .no_record {
        width: 35%;
        margin: 10vh auto;
        max-width: 160px
    }

.referral_wrap {
    width: 100%;
    gap: 20px;
    margin-top: 40%;
    padding: 55px 12px 0px !important;
}

    .referral_wrap .referral_title {
        font-size: 18px;
        color: #414042;
        font-weight: 700;
        width: 100%;
        text-align: center;
        text-transform: uppercase
    }

        .referral_wrap .referral_title span {
            color: #ed1c24
        }

    .referral_wrap .referral_copy_wrap {
        width: 95%;
        margin: 0 auto;
        border-radius: 15px;
        background: white;
        box-shadow: 0px 0px 8px rgba(0,0,0,.3);
        padding: 14px;
        gap: 3px
    }

        .referral_wrap .referral_copy_wrap .title {
            color: #ed1c24;
            font-size: 12px;
            font-weight: 700
        }

        .referral_wrap .referral_copy_wrap .desc {
            font-size: 14px;
            font-weight: 600;
            color: #414042;
            margin-bottom: 10px;
            letter-spacing: .4px
        }

        .referral_wrap .referral_copy_wrap .referral_copy_row {
            width: 100%;
            border-radius: 15px;
        }

        .referral_wrap .referral_copy_wrap input {
            border: 1px solid #ed1c24;
            flex: 1;
            padding: 10px 20px;
            font-size: 12px;
            margin-right: -10px;
            border-radius: 15px 0 0 15px !important;
            color: #a1a2a5;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            color: black;
        }

        .referral_wrap .referral_copy_wrap .copy_button {
            padding: 11px 30px;
            background: #ed1c24;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            border-radius: 0 15px 15px 0;
        }

    .referral_wrap .referral_qr_wrap {
        width: 95%;
        margin: 0 auto;
        border-radius: 15px;
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
        box-shadow: 0px 0px 8px rgba(0,0,0,.3);
        padding: 20px;
        gap: 30px
    }

        .referral_wrap .referral_qr_wrap .title {
            color: #fff;
            font-size: 12px;
            text-align: center;
            font-weight: 600
        }

        .referral_wrap .referral_qr_wrap .qr_code {
/*            width: 50%;
            max-width: 140px;*/
            margin: 0 auto;
            padding: 8px;
            background: #fff;
            border-radius: 10px
        }

            .referral_wrap .referral_qr_wrap .qr_code img {
                width: 100%
            }

.referral_bonus_wrap {
    width: 100%;
    gap: 10px;
    margin-top: 150px
}

    .referral_bonus_wrap .submit_btn {
        margin-top: 20px !important;
        font-size: 14px
    }

    .referral_bonus_wrap table {
        background: #f1f2f2;
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        border-radius: 10px;
        margin-top: 20px
    }

        .referral_bonus_wrap table th, .referral_bonus_wrap table td {
            padding: 10px;
            font-size: 11px;
            text-align: center
        }

        .referral_bonus_wrap table th {
            color: #9c9ea1;
            font-weight: 700;
            box-shadow: 0px 0px 8px rgba(0,0,0,.1);
            background-color: #f9f9f9
        }

        .referral_bonus_wrap table .extend {
            display: none
        }

        .referral_bonus_wrap table td {
            color: #c7c9ca;
            font-weight: 500;
            box-shadow: 0px 0px 8px rgba(0,0,0,.1);
            background-color: #f9f9f9
        }

    .referral_bonus_wrap .table_extend_btn {
        border: 2px solid #fff;
        box-shadow: 0px 0px 10px rgba(0,0,0,.6);
        border-radius: 999rem;
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: 10px;
        cursor: pointer
    }

        .referral_bonus_wrap .table_extend_btn i {
            color: #ed1c24
        }

.tra_bonus_wrap {
    width: 100%;
    gap: 10px
}

    .tra_bonus_wrap .submit_btn {
        margin-top: 20px !important;
        font-size: 13px
    }

    .tra_bonus_wrap table {
        background: #f1f2f2;
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        border-radius: 10px;
        margin-top: 20px
    }

        .tra_bonus_wrap table th, .tra_bonus_wrap table td {
            padding: 10px;
            font-size: 11px;
            text-align: center
        }

        .tra_bonus_wrap table th {
            color: #9c9ea1;
            font-weight: 700;
            box-shadow: 0px 0px 8px rgba(0,0,0,.1);
            background-color: #f9f9f9
        }

        .tra_bonus_wrap table .extend {
            display: none
        }

        .tra_bonus_wrap table td {
            color: #c7c9ca;
            font-weight: 500;
            box-shadow: 0px 0px 8px rgba(0,0,0,.1);
            background-color: #f9f9f9
        }

    .tra_bonus_wrap .table_extend_btn {
        border: 2px solid #fff;
        box-shadow: 0px 0px 10px rgba(0,0,0,.6);
        border-radius: 999rem;
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: 10px;
        cursor: pointer
    }

        .tra_bonus_wrap .table_extend_btn i {
            color: #ed1c24
        }

.not_wrap {
    width: 100%;
    gap: 20px;
    padding: 22px;
}

    .not_wrap .not_block {
        width: 100%;
        border-bottom: 1px dashed #d7d8d9
    }

        .not_wrap .not_block .date {
            font-weight: 600;
            color: #58595b;
            font-size: 15px
        }

        .not_wrap .not_block .not_row {
            width: 100%;
            align-items: center;
            gap: 20px;
            padding: 20px 10px
        }

            .not_wrap .not_block .not_row .icon {
                width: 42px;
                height: 42px;
                border-radius: 999rem;
                background: #d1d3d4;
                padding: 10px;
                justify-content: center;
                align-items: center
            }

                .not_wrap .not_block .not_row .icon img {
                    width: 100%
                }

            .not_wrap .not_block .not_row .not_infor {
                font-size: 12px;
                font-weight: 600;
                letter-spacing: .3px;
                color: #8f9093;
                flex: 1;
                text-align: left
            }

                .not_wrap .not_block .not_row .not_infor span {
                    font-size: 12px;
                    font-weight: 700;
                    letter-spacing: .3px;
                    color: #808285
                }

            .not_wrap .not_block .not_row i {
                color: #96989b;
                font-size: 16px
            }

.reward_wrap {
    width: 100%;
    gap: 15px;
    margin-top: 8px
}

    .reward_wrap .reward_point_row {
        width: 100%;
        padding: 11px 20px;
        border-radius: 999rem;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        box-shadow: 0px 0px 10px rgba(0,0,0,.4)
    }

        .reward_wrap .reward_point_row .title {
            color: #ed1c24;
            font-size: 12px;
            font-weight: 600
        }

        .reward_wrap .reward_point_row .point {
            font-size: 12px;
            font-weight: 700;
            color: #6f7073
        }

    .reward_wrap .reward_sm_nav_row {
        width: 100%;
        justify-content: flex-start;
        align-items: stretch;
        gap: 10px;
        overflow: auto
    }

        .reward_wrap .reward_sm_nav_row .reward_sm_nav {
            flex: 1;
            min-width: 120px;
            white-space: nowrap;
            background: #f1f2f2;
            color: #bfc1c3;
            font-size: .6rem;
            font-weight: 600;
            padding: 8px 5px;
            transition: .4s;
            border-radius: 999rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center
        }

        .reward_wrap .reward_sm_nav_row .nav_active {
            background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
            color: #fff
        }

    .reward_wrap .reward_grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 10px
    }

        .reward_wrap .reward_grid .reward_block {
            width: 100%;
            background: #fff;
            border-radius: 10px;
            gap: 5px;
            align-items: center;
            padding: 10px;
            box-shadow: 0px 0px 10px rgba(0,0,0,.2);
        }

            .reward_wrap .reward_grid .reward_block .reward_img {
                width: 75%;
                max-width: 175px;
                position: relative
            }

                .reward_wrap .reward_grid .reward_block .reward_img img {
                    width: 100%;
                    border-radius: 15px;
                }

                .reward_wrap .reward_grid .reward_block .reward_img .reward {
                    width: 100%;
                    justify-content: center
                }

                    .reward_wrap .reward_grid .reward_block .reward_img .reward .balance {
                        font-size: 13vmin;
                        font-weight: 800;
                        color: #4a3b3a;
                        margin-top: 15px;
                    }

                    .reward_wrap .reward_grid .reward_block .reward_img .reward .value {
                        font-size: 12px;
                        font-weight: 500;
                        position: absolute;
                        top: 5px;
                        right: 5px;
                        color: #4a3b3a
                    }

            .reward_wrap .reward_grid .reward_block .reward_text {
                width: 100%;
                max-width: unset;
                justify-content: center
            }

            .reward_wrap .reward_grid .reward_block p {
                font-size: 10px;
                width: 100%;
                color: gray;
                font-style: italic;
                text-align: center;
                font-weight: 500
            }

            .reward_wrap .reward_grid .reward_block .reward_name {
                font-size: 12px;
                color: #616264;
                font-weight: 700;
                text-align: center;
                letter-spacing: .3px
            }

            .reward_wrap .reward_grid .reward_block .reward_point {
                font-size: 12px;
                color: #ed1c24;
                font-weight: 700;
                margin-top: auto
            }

            .reward_wrap .reward_grid .reward_block .redeem_btn {
                background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
                color: #fff;
                width: 100%;
                font-size: 15px;
                padding: 8px
            }

.redeem_con {
    width: 80%;
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    padding: 15px 0;
    border-radius: 15px
}

    .redeem_con .redeem_wrap {
        width: 100%;
        align-items: center;
        gap: 15px;
        max-height: 80vh;
        overflow: auto;
        padding: 0 10px
    }

        .redeem_con .redeem_wrap::-webkit-scrollbar {
            width: 0px
        }

        .redeem_con .redeem_wrap::-webkit-scrollbar-track {
            border-radius: 10px
        }

        .redeem_con .redeem_wrap::-webkit-scrollbar-thumb {
            background: #ed1c24;
            border-radius: 10px
        }

            .redeem_con .redeem_wrap::-webkit-scrollbar-thumb:hover {
                background: #b30000
            }

        .redeem_con .redeem_wrap .p_col {
            gap: 8px;
            margin: 5px 0
        }

            .redeem_con .redeem_wrap .p_col P {
                font-size: 12px;
                color: #000;
                font-weight: 600;
                text-align: left;
                width: 100%;
                justify-content: space-between;
                gap: 10px
            }

        .redeem_con .redeem_wrap .table_wrap {
            width: 100%;
            overflow: auto;
            margin-top: 10px
        }

            .redeem_con .redeem_wrap .table_wrap table {
                background: #f1f2f2;
                width: 100%;
                min-width: 500px;
                border-collapse: collapse;
                border-spacing: 0;
                border-radius: 15px;
                overflow: hidden
            }

            .redeem_con .redeem_wrap .table_wrap thead {
                background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
            }

            .redeem_con .redeem_wrap .table_wrap table th, .redeem_con .redeem_wrap .table_wrap table td {
                padding: 10px;
                font-size: 11px;
                text-align: center
            }

            .redeem_con .redeem_wrap .table_wrap table th, .redeem_con .redeem_wrap table th {
                color: #fff;
                background: #ed1c24;
                font-weight: 700;
                white-space: nowrap;
                border-bottom: 1px solid #fff
            }

                .redeem_con .redeem_wrap .table_wrap table th:first-child, .redeem_con .redeem_wrap table th:first-child {
                    border-radius: 15px 0 0 0
                }

                .redeem_con .redeem_wrap .table_wrap table th:last-child, .redeem_con .redeem_wrap table th:last-child {
                    border-radius: 0 15px 0 0
                }

            .redeem_con .redeem_wrap .table_wrap table td {
                color: #000;
                font-weight: 500
            }

    .redeem_con .title {
        color: #58595b;
        font-size: 16px;
        font-weight: 700;
        border-bottom: 1px solid #bfc0c2;
        padding-bottom: 10px;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        position: relative;
        padding-top: 3px
    }

        .redeem_con .title .popup_close {
            width: 20px;
            position: absolute;
            top: 0%;
            right: 0
        }

    .redeem_con .reward_img {
        width: 80%;
        max-width: 100%
    }

        .redeem_con .reward_img img {
            width: 100%
        }

    .redeem_con .reward_name {
        font-size: 14px;
        color: #616264;
        font-weight: 700;
        text-align: center;
        letter-spacing: .3px;
        margin-bottom: 5px
    }

    .redeem_con .product_desc_col {
        width: 100%;
        align-items: center;
        gap: 5px
    }

        .redeem_con .product_desc_col .product_title {
            font-size: 12px;
            color: #626365;
            font-weight: 700
        }

        .redeem_con .product_desc_col .desc {
            font-size: 10px;
            width: 100%;
            font-weight: 400;
            text-align: center;
            color: #939598
        }

        .redeem_con .product_desc_col .point {
            font-size: 16px;
            color: #ed1c24;
            font-weight: 700;
            margin-top: auto
        }

    .redeem_con .table_wrap {
        width: 100%;
        min-height: 80px;
        overflow: auto;
        margin-top: 10px
    }

        .redeem_con .table_wrap .product_table {
            background: #f1f2f2;
            width: 100%;
            min-width: 400px;
            border-collapse: collapse;
            border-spacing: 0;
            table-layout: fixed;
            border-radius: 10px
        }

            .redeem_con .table_wrap .product_table th, .redeem_con .table_wrap .product_table td {
                padding: 10px;
                font-size: 11px;
                text-align: center
            }

            .redeem_con .table_wrap .product_table th {
                color: #fff;
                background: #ed1c24;
                white-space: nowrap;
                font-weight: 700;
                border-bottom: 1px solid #fff
            }

                .redeem_con .table_wrap .product_table th:first-child {
                    border-radius: 10px 0 0 0
                }

                .redeem_con .table_wrap .product_table th:last-child {
                    border-radius: 0 10px 0 0
                }

            .redeem_con .table_wrap .product_table td {
                color: #000;
                font-weight: 500;
                background: #dbdbdb
            }

                .redeem_con .table_wrap .product_table td:first-child {
                    border-radius: 0 0 0 10px
                }

                .redeem_con .table_wrap .product_table td:last-child {
                    border-radius: 0 0 10px 0
                }

    .redeem_con .product_border {
        border-bottom: 1px solid #bfc0c2;
        padding-bottom: 15px
    }

    .redeem_con .redeem_form {
        width: 100%;
        padding-top: 5px;
        border-top: 1px solid rgba(128,128,128,.308)
    }

        .redeem_con .redeem_form .textbox_block {
            width: 100%;
            padding: 0 10px;
            gap: 8px;
            margin: 5px 0
        }

            .redeem_con .redeem_form .textbox_block .textbox_title {
                font-size: 12px;
                font-weight: 700;
                color: #58595b
            }

                .redeem_con .redeem_form .textbox_block .textbox_title span {
                    color: #ed1c24;
                    margin-right: 2px
                }

            .redeem_con .redeem_form .textbox_block .textbox_option_row {
                width: 100%;
                justify-content: flex-start;
                align-items: stretch;
                flex-wrap: wrap;
                gap: 8px
            }

                .redeem_con .redeem_form .textbox_block .textbox_option_row .option_block {
                    max-width: 120px;
                    width: calc(33.3333333333% - 6px);
                    border-radius: 10px;
                    overflow: hidden;
                    border: .6mm solid rgba(0,0,0,0);
                    transition: .4s
                }

                    .redeem_con .redeem_form .textbox_block .textbox_option_row .option_block img {
                        width: 100%
                    }

                    .redeem_con .redeem_form .textbox_block .textbox_option_row .option_block .amount {
                        font-size: 14px;
                        font-weight: 700;
                        color: #808285;
                        padding: 10px;
                        text-align: center;
                        width: 100%;
                        background: #fff
                    }

                    .redeem_con .redeem_form .textbox_block .textbox_option_row .option_block .crypto {
                        font-size: 14px;
                        font-weight: 700;
                        color: #808285;
                        padding: 10px;
                        text-align: center;
                        width: 100%;
                        background: #fff
                    }

                .redeem_con .redeem_form .textbox_block .textbox_option_row .option_active {
                    border: .6mm solid #ed1c24;
                    box-shadow: 0px 0px 3px rgba(237,28,36,.7607843137)
                }

            .redeem_con .redeem_form .textbox_block .row_5 .option_block {
                max-width: 120px;
                width: calc(20% - 7px)
            }

                .redeem_con .redeem_form .textbox_block .row_5 .option_block .amount {
                    font-size: 12px
                }

            .redeem_con .redeem_form .textbox_block .textbox_anim {
                width: 100%;
                position: relative
            }

                .redeem_con .redeem_form .textbox_block .textbox_anim input {
                    width: 100%;
                    background: #fff;
                    padding: 20px 25px 10px;
                    border: 1px solid #cdcdcd;
                    box-shadow: 0px 0px 5px rgba(0,0,0,.1)
                }

                .redeem_con .redeem_form .textbox_block .textbox_anim label {
                    position: absolute;
                    top: 0;
                    font-size: 13px;
                    margin: 15px;
                    padding: 0 10px;
                    font-weight: 500;
                    color: #d1d3d4;
                    z-index: 5;
                    letter-spacing: .4px;
                    transition: top .2s ease-in-out,font-size .2s ease-in-out
                }

                .redeem_con .redeem_form .textbox_block .textbox_anim .active {
                    font-weight: 600;
                    top: -10px;
                    font-size: 10px;
                    color: #747474
                }

            .redeem_con .redeem_form .textbox_block .textbox_wrap {
                width: 100%;
                gap: 3px;
                position: relative
            }

                .redeem_con .redeem_form .textbox_block .textbox_wrap input {
                    width: 100%;
                    background: #d7dce0;
                    padding: 12px 20px;
                    border: 1px solid #cdcdcd;
                    box-shadow: 0px 0px 5px rgba(0,0,0,.1);
                    color: #58595b;
                    font-weight: 700;
                    font-size: 12px
                }

                .redeem_con .redeem_form .textbox_block .textbox_wrap span {
                    color: #ed1c24
                }

                .redeem_con .redeem_form .textbox_block .textbox_wrap i {
                    position: absolute;
                    top: 50%;
                    right: 20px;
                    transform: translateY(-50%);
                    color: #ed1c24;
                    cursor: pointer
                }

                .redeem_con .redeem_form .textbox_block .textbox_wrap select {
                    width: 100%;
                    background: #fff;
                    padding: 14px 20px;
                    border: 1px solid #cdcdcd;
                    box-shadow: 0px 0px 5px rgba(0,0,0,.1);
                    color: #ed1c24;
                    border-radius: 10px;
                    outline: 0;
                    font-size: 12px;
                    font-weight: 700
                }

                .redeem_con .redeem_form .textbox_block .textbox_wrap .select_disable {
                    width: 100%;
                    background: #d7dce0;
                    padding: 12px 20px;
                    border: 1px solid #cdcdcd;
                    box-shadow: 0px 0px 5px rgba(0,0,0,.1);
                    color: #58595b;
                    font-weight: 700;
                    font-size: 12px;
                    border-radius: 10px;
                    outline: 0
                }

            .redeem_con .redeem_form .textbox_block .textbox_wrap_xl input {
                width: 100%;
                background: #fff;
                padding: 15px 20px
            }

            .redeem_con .redeem_form .textbox_block p {
                color: #919396;
                font-size: 11px;
                font-weight: 500;
                padding-left: 10px;
                border-bottom: 1px solid #a7a9ac;
                padding-bottom: 10px
            }

            .redeem_con .redeem_form .textbox_block .upload_btn {
                background: #939598;
                border-radius: 10px;
                cursor: pointer
            }

                .redeem_con .redeem_form .textbox_block .upload_btn input {
                    opacity: 0;
                    width: 100%;
                    cursor: pointer
                }

                .redeem_con .redeem_form .textbox_block .upload_btn .receipt {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 100%;
                    gap: 10px;
                    justify-content: center;
                    align-items: center;
                    pointer-events: none;
                    cursor: pointer
                }

                    .redeem_con .redeem_form .textbox_block .upload_btn .receipt img {
                        width: 26px
                    }

                    .redeem_con .redeem_form .textbox_block .upload_btn .receipt span {
                        color: #fff;
                        font-size: 13px;
                        text-transform: uppercase;
                        font-weight: 700
                    }

    .redeem_con .redeem_popup_btn {
        background: #ed1c24;
        color: #fff;
        width: 92%;
        margin: 0 auto;
        font-size: 12px;
        padding: 9px;
        margin-top: 20px
    }

.about_body {
    background: #fff
}

    .about_body .container {
        background: #fff
    }

.about_wrap {
    width: 100%;
    gap: 20px;
    padding: 15px
}

    .about_wrap .title {
        color: #ed1c24;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase
    }

    .about_wrap p {
        font-size: 10px;
        letter-spacing: .3px;
        color: #58595b;
        font-weight: 600;
        line-height: 1.5;
        text-align: justify;
    }

.faq_wrap {
    width: 100%;
    padding: 15px
}

    .faq_wrap h2 {
        width: 100%;
        margin-top: 10%;
        font-size: 14px;
    }

    .faq_wrap h4 {
        width: 100%;
        margin-top: 5%;
        font-size: 12px;
    }

    .faq_wrap p {
        width: 100%;
        margin-top: 5%;
        font-size: 10px;
    }

    .faq_wrap .title {
        color: #ed1c24;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase
    }

    .faq_wrap .faq_block {
        width: 100%;
        border-bottom: 1px solid #bcbec0;
        padding: 15px 0
    }

        .faq_wrap .faq_block .faq_row {
            width: 100%;
            justify-content: space-between;
            align-items: center;
            gap: 20px
        }

            .faq_wrap .faq_block .faq_row .faq_title {
                font-size: 14px;
                color: #58595b;
                font-weight: 700;
                margin-top: 14px
            }

            .faq_wrap .faq_block .faq_row i {
                color: #939598;
                transition: .4s
            }

            .faq_wrap .faq_block .faq_row .up {
                transform: rotate(180deg)
            }

        .faq_wrap .faq_block .daily_row {
            padding: 12px;
            border-radius: 11px
        }

        .faq_wrap .faq_block .faq_desc {
            font-size: 10px;
            letter-spacing: .3px;
            color: #58595b;
            font-weight: 500;
            line-height: 1.4;
            padding: 15px 0;
            padding-bottom: 0;
            display: none;
            text-align: justify;
        }

        .faq_wrap .faq_block .daily_desc {
            gap: 5px;
            padding: 10px 20px
        }

            .faq_wrap .faq_block .daily_desc .daily_title {
                font-size: 12px;
                font-weight: 700;
                color: #5c595b
            }

            .faq_wrap .faq_block .daily_desc p {
                font-size: 12px;
                font-weight: 600
            }

            .faq_wrap .faq_block .daily_desc .completed {
                color: #ed1c24
            }

        .faq_wrap .faq_block .desc_first {
            display: flex
        }

.promo_grid {
    width: 75%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px
}

    .promo_grid .promo_item {
        width: 100%;
        max-width: 360px
    }

        .promo_grid .promo_item img {
            width: 100%;
            border-radius: 10px 10px 0 0
        }

        .promo_grid .promo_item .promo_infor_block {
            width: 100%;
            background: #27313c;
            border-radius: 0 0 10px 10px;
            padding: 9px 15px;
            gap: 10px
        }

            .promo_grid .promo_item .promo_infor_block .promo_title {
                width: 100%;
                font-size: 11px;
                font-weight: 600;
                color: #fff
            }

            .promo_grid .promo_item .promo_infor_block .promo_count_row {
                width: 100%;
                justify-content: space-between;
                align-items: center;
                gap: 20px
            }

            .promo_grid .promo_item .promo_infor_block .get_btn {
                width: 55%;
                text-align: center;
                white-space: nowrap;
                color: #fff;
                background: #ed1c24;
                font-size: .7rem;
                font-weight: 700;
                padding: 9px 13px
            }

    .promo_grid .countdown_row {
        width: 100%;
        margin: auto 0;
        align-items: flex-start
    }

        .promo_grid .countdown_row .countdown_day {
            gap: 4px;
            align-items: center
        }

            .promo_grid .countdown_row .countdown_day .countdown_block {
                width: -moz-fit-content;
                width: fit-content;
                padding: 5px 9px;
                background: #fff;
                font-size: 10px;
                font-weight: 600;
                border-radius: 4px;
                color: #000
            }

            .promo_grid .countdown_row .countdown_day span {
                color: #c2c5c7;
                font-size: 8px
            }

        .promo_grid .countdown_row .countdown_timer {
            width: -moz-fit-content;
            width: fit-content;
            align-items: flex-start;
            margin-left: 8px;
            position: relative
        }

            .promo_grid .countdown_row .countdown_timer .symbol {
                background: #fff;
                padding: 5px 0;
                font-size: 10px;
                color: #000
            }

            .promo_grid .countdown_row .countdown_timer .countdown_wrap {
                position: relative;
                gap: 4px
            }

                .promo_grid .countdown_row .countdown_timer .countdown_wrap .countdown_block {
                    padding: 5px 9px;
                    background: #fff;
                    font-size: 10px;
                    font-weight: 600;
                    color: #000
                }

                .promo_grid .countdown_row .countdown_timer .countdown_wrap span {
                    color: #c2c5c7;
                    font-size: 8px;
                    text-align: center
                }

                .promo_grid .countdown_row .countdown_timer .countdown_wrap .border_left {
                    border-radius: 4px 0 0 4px
                }

                .promo_grid .countdown_row .countdown_timer .countdown_wrap .border_right {
                    border-radius: 0 4px 4px 0
                }

.otp_wrap {
    width: 100%;
    align-items: center;
    padding: 50px;
}

    .otp_wrap .gif {
        width: 40%;
        height: 40%;
        /*max-width: 240px;*/
        filter: none
    }

    .otp_wrap h3 {
        margin-top: -40px
    }

    .otp_wrap p {
        width: 80%;
        text-align: center;
        font-size: 10px;
        font-weight: 600;
        color: gray
    }

        .otp_wrap p .otp_count {
            color: #ed1c24;
            font-weight: 600
        }

    .otp_wrap .sp {
        font-weight: 600
    }

    .otp_wrap img {
        width: 90%;
        margin: 0 auto;
        border-radius: 10px;
        filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5))
    }

    .otp_wrap .otp_textbox_wrap {
        width: -moz-fit-content;
        width: fit-content;
        margin: 20px auto;
        justify-content: flex-start;
        align-items: center;
        gap: 10px
    }

        .otp_wrap .otp_textbox_wrap input {
            border: 0;
            background: #f9f9f9;
            width: 40px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            padding: 10px;
            color: #000;
            box-shadow: 0px 0px 5px inset rgba(0,0,0,.4)
        }

    .otp_wrap .btn_wrap {
        width: 80%;
        gap: 10px
    }

        .otp_wrap .btn_wrap .btn {
            color: #fff;
            background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
            width: 100%;
            font-size: 15px;
            padding: 8px;
            border-radius: 15px;
        }

        .otp_wrap .btn_wrap .resend_btn {
            background: gray !important;
            pointer-events: all;
            opacity: 1
        }

            .otp_wrap .btn_wrap .resend_btn.disabled {
                pointer-events: none;
                opacity: .45
            }

    .otp_wrap i {
        font-size: 12px;
        color: gray;
        width: 70%;
        margin: 0 auto;
        text-align: center
    }

.promo_detail {
    width: 100%;
    padding: 15px 15px;
    margin-top: -118px;
}

    .promo_detail img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0,0,0,.4);
    }

    .promo_detail .padding {
        padding: 12px 15px 75px;
        width: 100%;
        gap: 10px;
        margin-top: 250px;
    }

    .promo_detail .popup-tnc {
        font-size: 12px;
        font-weight: 500;
        color: #000;
        text-align: justify;
        gap: 10px
    }

    .promo_detail .popup-how {
        font-size: 12px;
        font-weight: 500;
        color: #000;
        text-align: justify;
        gap: 10px;
        margin-top: 22px;
    }

        .promo_detail .popup-how .event-table {
            background: #f1f2f2;
            border-collapse: collapse;
            border-spacing: 0;
            border-radius: 10px;
            width: 100%;
            overflow: auto;
            margin-top: 10px;
            display: flex;
        }

            .promo_detail .popup-how .event-table th, .promo_detail .popup-how .event-table td {
                padding: 10px;
                font-size: 11px;
                text-align: center
            }

            .promo_detail .popup-how .event-table th {
                color: #fff;
                background: #ed1c24;
                font-weight: 700;
                border-bottom: 1px solid #fff
            }

                .promo_detail .popup-how .event-table th:first-child {
                    border-radius: 10px 0 0 0
                }

                .promo_detail .popup-how .event-table th:last-child {
                    border-radius: 0 10px 0 0
                }

            .promo_detail .popup-how .event-table td {
                color: #000;
                font-weight: 500
            }

    .promo_detail .promo_infor {
        width: 100%;
        gap: 10px;
    }

    .promo_detail .event_col {
        width: 100%;
        font-size: 12px;
        gap: 4px;
    }

        .promo_detail .event_col p {
            font-size: 14px;
            font-weight: 700;
            color: #000;
            margin-top: 10px;
            text-align: justify;
        }

        .promo_detail .event_col .name {
            font-size: 13px;
            font-weight: 600;
            color: #6d6d6d;
            text-align: justify;
        }

    .promo_detail .promo_title {
        font-size: 12px;
        font-weight: 600;
        color: #4d4d4d
    }

    .promo_detail .desc {
        font-size: 12px;
        font-weight: 500;
        color: #000
    }

.slide-in-fwd-top {
    animation: slide-in-fwd-top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.table_wrap {
    width: 100%;
    overflow: auto;
    margin-bottom: 25%;
}

    .table_wrap table {
        background: #f1f2f2;
        width: 100%;
        min-width: 500px;
        border-collapse: collapse;
        border-spacing: 0;
        border-radius: 15px;
        overflow: hidden
    }

    .table_wrap thead {
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
    }

    .table_wrap table th, .table_wrap table td {
        padding: 10px;
        font-size: 11px;
        text-align: center
    }

    .table_wrap table th, table th {
        color: #fff;
        background: #ed1c24;
        font-weight: 700;
        white-space: nowrap;
        border-bottom: 1px solid #fff
    }

        .table_wrap table th:first-child, table th:first-child {
            border-radius: 15px 0 0 0
        }

        .table_wrap table th:last-child, table th:last-child {
            border-radius: 0 15px 0 0
        }

    .table_wrap table td {
        color: #000;
        font-weight: 500
    }

.slide-in-left {
    animation: slide-in-left 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-1000px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(1000px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-fwd-top {
    0% {
        transform: translateZ(-1400px) translateY(-800px);
        opacity: 0
    }

    100% {
        transform: translateZ(0) translateY(0);
        opacity: 1
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-1000px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slide-in-hide {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    100% {
        transform: translateY(1000px);
        opacity: 0
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(1000px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

#load {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,.9);
    display: flex
}

    #load img {
        width: 80%;
        margin: auto;
        max-width: 160px
    }

.vip_con {
    background: linear-gradient(135deg, #fff, #dfe5ea);
    overflow: unset
}

.vip_page {
    width: 100%;
    padding: 25px
}

    .vip_page .title {
        font-size: 14px;
        color: #58595b;
    }

    .vip_page .vip_cur_block {
        width: 100%;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0px 0px 10px rgba(0,0,0,.4);
        padding: 20px;
        justify-content: flex-start;
        align-items: center;
        gap: 15px
    }

        .vip_page .vip_cur_block img {
            width: 20%;
            max-width: 50px;
            align-items: flex-start;
            padding: -10px
        }

        .vip_page .vip_cur_block .vip {
            width: -moz-fit-content;
            width: fit-content;
            min-width: 80px;
            text-align: center;
            position: relative;
            gap: 5px;
            align-items: flex-start
        }

            .vip_page .vip_cur_block .vip .status {
                font-size: 2.2vmin;
                font-weight: 600;
                color: #6b6b6b !important
            }

            .vip_page .vip_cur_block .vip img {
                width: 100%;
                filter: none;
                max-width: 80px;
                border-radius: 8px;
                box-shadow: 0px 0px 10px rgba(0,0,0,.4)
            }

            .vip_page .vip_cur_block .vip .des {
                font-size: 2.4vmin;
                color: #58595b
            }

            .vip_page .vip_cur_block .vip .deposit {
                color: #58595b;
                margin-top: 2vmin;
                font-size: 2vmin
            }

        .vip_page .vip_cur_block .user {
            font-size: 12px;
            font-weight: 600;
            color: #747474
        }

        .vip_page .vip_cur_block .point {
            font-size: 12px;
            font-weight: 600;
            color: red;
            width: 40%;
            border-right: 1px solid #929292
        }

    .vip_page .vip_progress_bar {
        width: 95%;
        margin: auto;
        position: relative;
        overflow: hidden;
        height: 3vmin;
        border-radius: 25px;
        background: #414042
    }

        .vip_page .vip_progress_bar span {
            display: block;
            position: relative;
            width: 7%;
            height: 100%;
            border-radius: 999rem;
            background: #ed1c24
        }

    .vip_page .vip_status_wrap {
        width: 100%;
        overflow: auto
    }

    .vip_page .vip_status {
        width: 100%;
        min-width: 300px;
        position: relative;
        padding-bottom: 4vmin;
        border-bottom: 1px solid #3e3b2f;
        gap: 5vmin;
        overflow: auto
    }

        .vip_page .vip_status .vip {
            width: -moz-fit-content;
            width: fit-content;
            min-width: 80px;
            text-align: center;
            position: relative;
            gap: 5px;
            align-items: center;
            opacity: .5;
            transition: .4s
        }

            .vip_page .vip_status .vip .status {
                font-size: 2.6vmin;
                font-weight: 600;
                color: #58595b !important
            }

            .vip_page .vip_status .vip img {
                width: 100%;
                max-width: 80px;
                border-radius: 8px;
                box-shadow: 0px 0px 10px rgba(0,0,0,.4)
            }

            .vip_page .vip_status .vip .des {
                font-size: 2.4vmin;
                color: #58595b
            }

            .vip_page .vip_status .vip .deposit {
                color: #58595b;
                margin-top: 2vmin;
                font-size: 2vmin
            }

            .vip_page .vip_status .vip.active {
                opacity: 1
            }

        .vip_page .vip_status .silver .status {
            color: #a5a5a5
        }

        .vip_page .vip_status .gold .status {
            color: #a38842
        }

        .vip_page .vip_status .platinum .status {
            color: #a5c0d4
        }

        .vip_page .vip_status .diamond .status {
            color: #7d6daa
        }

        .vip_page .vip_status .royal .status {
            color: #f0c783
        }

    .vip_page .vip_swiper {
        width: 100%;
        margin-top: -20px;
        position: relative;
        margin-bottom: 3vmin
    }

        .vip_page .vip_swiper .swiper-button-next, .vip_page .vip_swiper .swiper-button-prev {
            position: absolute;
            top: 14.3vmin;
            width: 10vmin
        }

            .vip_page .vip_swiper .swiper-button-next:after, .vip_page .vip_swiper .swiper-button-prev:after {
                font-size: 6vmin;
                color: #58595b
            }

        .vip_page .vip_swiper .swiper-button-next {
            right: -1.3vmin;
            display: none;
        }

        .vip_page .vip_swiper .swiper-button-prev {
            right: 30vmin;
            left: 200px;
            display: none;
        }

        .vip_page .vip_swiper .vip_table {
            padding: 3vmin;
            width: 100%;
            border-collapse: collapse
        }

            .vip_page .vip_swiper .vip_table thead {
                border-bottom: 1px solid #3e3b2f
            }

                .vip_page .vip_swiper .vip_table thead tr {
                    height: 15vmin
                }

                .vip_page .vip_swiper .vip_table thead th {
                    font-size: 18px;
                    color: #ed1c24;
                    vertical-align: bottom;
                    text-align: left;
                    background: none;
                }

                .vip_page .vip_swiper .vip_table thead td {
                    color: #58595b;
                    font-size: 14px;
                    text-align: left;
                    font-weight: bold;
                    letter-spacing: 2px
                }

                    .vip_page .vip_swiper .vip_table thead td img {
                        width: 24vmin;
                        /*margin: 0 7vmin;*/
                        box-shadow: 0px 0px 10px #000;
                        border-radius: 15px;
                        margin-right: 10px;
                    }

            .vip_page .vip_swiper .vip_table tbody tr {
                height: 6vmin
            }

            .vip_page .vip_swiper .vip_table tbody th {
                color: #ed1c24;
                text-align: left;
                padding: 5vmin 0 1vmin 0;
                font-size: 14px;
                background: none;
            }

                .vip_page .vip_swiper .vip_table tbody th i {
                    color: gray;
                    font-size: 2.5vmin
                }

            .vip_page .vip_swiper .vip_table tbody td:first-child {
                color: #000;
                text-align: left
            }

            .vip_page .vip_swiper .vip_table tbody td {
                color: #ed1c24;
                text-align: right;
                padding: 1vmin;
                font-size: 12px
            }

.vip_page {
    width: 100%;
    margin-bottom: 10%
}

    .vip_page .table_wrap {
        width: 100%;
        overflow: auto
    }

    .vip_page .vip_progress_bar {
        width: 100%
    }

        .vip_page .vip_progress_bar span {
            width: 8%
        }

    .vip_page .vip_status_con {
        width: 100%;
        margin: 10px 0;
        min-width: 1020px
    }

        .vip_page .vip_status_con .user_achi {
            width: 60px;
            margin-left: 7%;
            margin-bottom: 10px
        }

            .vip_page .vip_status_con .user_achi img {
                width: 100%
            }

        .vip_page .vip_status_con .vip_status_bottom {
            width: 100%;
            justify-content: space-between;
            align-items: flex-start;
            margin: 0 auto;
            gap: 10px
        }

            .vip_page .vip_status_con .vip_status_bottom .vip_status_col {
                flex: 1;
                align-items: center;
                justify-content: center;
                position: relative
            }

                .vip_page .vip_status_con .vip_status_bottom .vip_status_col .line {
                    width: 2px;
                    height: 20px;
                    background: gray
                }

                .vip_page .vip_status_con .vip_status_bottom .vip_status_col .row {
                    width: 100%;
                    justify-content: center;
                    align-items: center;
                    gap: 10px
                }

                    .vip_page .vip_status_con .vip_status_bottom .vip_status_col .row .col {
                        align-items: flex-start;
                        gap: 3px
                    }

                .vip_page .vip_status_con .vip_status_bottom .vip_status_col img {
                    width: 45px;
                    border-radius: 5px;
                    box-shadow: 0px 0px 6px rgba(0,0,0,.4)
                }

                .vip_page .vip_status_con .vip_status_bottom .vip_status_col .name {
                    font-size: 12px
                }

                .vip_page .vip_status_con .vip_status_bottom .vip_status_col .infor {
                    font-size: 10px;
                    letter-spacing: .3px;
                    width: 100%;
                    text-align: left;
                    font-weight: 500;
                    color: #000
                }

    .vip_page .vipSwiper {
        width: 100%;
        position: relative
    }

        .vip_page .vipSwiper .swiper-slide {
            width: 100%;
            padding: 8px;
            padding-top: 80px;
            opacity: .6;
            filter: brightness(0.5) grayscale(0.7);
            transition: .6s
        }

        .vip_page .vipSwiper .swiper-slide-active {
            opacity: 1;
            margin-top: -20px;
            filter: brightness(1) grayscale(0)
        }

        .vip_page .vipSwiper .vipSwiper_block {
            width: 100%;
            padding: 20px;
            border-radius: 15px;
            align-items: center;
            gap: 10px;
            padding-bottom: 25px;
            background: #f9f9f9;
            filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4))
        }

            .vip_page .vipSwiper .vipSwiper_block .vip {
                width: 80%;
                max-width: 140px;
                margin-top: -75px;
                border-radius: 10px;
                filter: drop-shadow(0px 0px 4px rgba(65, 65, 65, 0.3843137255))
            }

            .vip_page .vipSwiper .vipSwiper_block .vip_lvl {
                width: 100%;
                font-weight: 700;
                font-size: 22px;
                text-transform: uppercase;
                text-align: center
            }

            .vip_page .vipSwiper .vipSwiper_block .sm_title {
                width: 100%;
                color: #ed1c24;
                font-weight: 700;
                font-size: 16px;
                text-align: center
            }

            .vip_page .vipSwiper .vipSwiper_block .vip_infor_block {
                width: 100%;
                gap: 3px;
                padding: 10px 0px 15px;
                position: relative
            }

                .vip_page .vipSwiper .vipSwiper_block .vip_infor_block::after {
                    content: "";
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 70%;
                    height: 1px
                }

                .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .title {
                    font-size: 16px;
                    font-weight: 700;
                    text-align: center;
                    margin-bottom: 0
                }

                .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .infor {
                    font-size: 11px;
                    color: #000;
                    text-align: center;
                    width: 100%
                }

                .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .title_row {
                    width: 100%;
                    color: #000;
                    font-size: 14px;
                    justify-content: center;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 10px;
                    padding: 0 20px;
                    font-weight: 600
                }

                    .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .title_row img {
                        width: 16px;
                        filter: brightness(0) invert(0)
                    }

                .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .infor_row {
                    width: 100%;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 10px;
                    margin-top: 10px;
                    padding: 0 20px
                }

                    .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .infor_row p {
                        color: #222;
                        font-size: 12px;
                        font-weight: 600;
                        white-space: nowrap;
                        width: 80px
                    }

                    .vip_page .vipSwiper .vipSwiper_block .vip_infor_block .infor_row span {
                        color: #000;
                        font-size: 12px;
                        font-weight: 600;
                        flex: 1
                    }

        .vip_page .vipSwiper .vip_widget_row {
            position: absolute;
            top: 50%;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            z-index: 999;
            pointer-events: none
        }

            .vip_page .vipSwiper .vip_widget_row .vip_widget {
                width: -moz-fit-content;
                width: fit-content;
                padding: 8px 30px;
                border-radius: 999rem;
                color: #000;
                font-size: 12px;
                font-weight: 700
            }

            .vip_page .vipSwiper .vip_widget_row .vip_next, .vip_page .vipSwiper .vip_widget_row .vip_prev {
                width: 38px;
                height: 38px;
                border-radius: 999rem;
                background: #353537;
                box-shadow: 0px 0px 5px rgba(0,0,0,.7803921569);
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                pointer-events: all
            }

                .vip_page .vipSwiper .vip_widget_row .vip_next i, .vip_page .vipSwiper .vip_widget_row .vip_prev i {
                    color: #d4e3f1;
                    font-size: 15px;
                    font-weight: 600
                }

                .vip_page .vipSwiper .vip_widget_row .vip_next::after, .vip_page .vipSwiper .vip_widget_row .vip_prev::after {
                    display: none
                }

            .vip_page .vipSwiper .vip_widget_row .vip_prev {
                right: var(--swiper-navigation-sides-offset, -20px)
            }

            .vip_page .vipSwiper .vip_widget_row .swiper-button-prev {
                left: var(--swiper-navigation-sides-offset, -20px)
            }

.classic {
    color: #ed1c24
}

.bronze {
    color: #cd7f32
}

.silver {
    color: #a5a5a5
}

.gold {
    color: #c89103
}

.platinum {
    color: #a5c0d4
}

.diamond {
    color: #7d6daa
}

.page_wrap.daily .faq_wrap {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,.4);
    border-radius: 12px
}

.rolldate-container header {
    line-height: 40px !important;
    font-weight: 600;
    font-size: 16px !important
}

.rolldate-cancel {
    color: #ed1c24 !important;
    font-weight: 600;
    font-size: 14px !important;
    display: flex;
    align-items: center
}

.rolldate-confirm {
    color: #00a2ff !important;
    font-weight: 600;
    font-size: 14px !important;
    display: flex;
    align-items: center
}

.rolldate-container .rolldate-wrapper li {
    font-weight: 600;
    font-size: 14px !important
}

.page_wrapre {
    width: 100%;
    padding: 18px 12px;
    gap: 15px;
    margin-top: 135px
}

    .page_wrapre .user_bar_row {
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0,0,0,.3);
        border-radius: 15px;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        padding: 12px 16px
    }

        .page_wrapre .user_bar_row .icon {
            width: 30px
        }

            .page_wrapre .user_bar_row .icon img {
                width: 100%
            }

        .page_wrapre .user_bar_row .user_infor_col {
            flex: 1
        }

            .page_wrapre .user_bar_row .user_infor_col .username {
                flex: 1;
                color: #58595b;
                font-size: 13px;
                font-weight: 700
            }

            .page_wrapre .user_bar_row .user_infor_col .user_id {
                flex: 1;
                color: #939598;
                font-size: 12px;
                font-weight: 600
            }

        .page_wrapre .user_bar_row .user_vip {
            width: 70px
        }

            .page_wrapre .user_bar_row .user_vip img {
                width: 100%;
                border-radius: 5px
            }

        .page_wrapre .user_bar_row .user_qr {
            width: 38px
        }

            .page_wrapre .user_bar_row .user_qr img {
                width: 100%
            }

    .page_wrapre .wallet_wrap {
        width: 100%;
        background: #ed1c24;
        border-radius: 15px;
        padding: 15px
    }

        .page_wrapre .wallet_wrap .wallet_balance_row {
            width: 100%;
            gap: 10px
        }

            .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col {
                flex: 1;
                gap: 5px
            }

                .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_title {
                    width: 100%;
                    text-transform: uppercase;
                    color: #fafafa;
                    font-size: 10px;
                    font-weight: 600;
                    gap: 10px;
                    margin-top: 12px
                }

                    .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_title i {
                        color: #e4e4e4
                    }

                .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance {
                    width: 100%;
                    position: relative;
                    background: #fff;
                    border-radius: 999rem
                }

                    .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance .value {
                        color: #6d6e71;
                        font-size: 12px;
                        font-weight: 700;
                        top: 50%;
                        transform: translateY(-50%);
                        position: absolute;
                        line-height: 1;
                        left: 20px
                    }

                    .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance input {
                        width: 88%;
                        border: 0;
                        outline: 0;
                        background: rgba(0,0,0,0);
                        color: #6d6e71;
                        font-size: 12px;
                        font-weight: 700;
                        padding: 10px 20px;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        overflow: hidden
                    }

                    .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance .balance_input {
                        padding-left: 50px
                    }

                    .page_wrapre .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance i {
                        position: absolute;
                        top: 50%;
                        right: 15px;
                        transform: translateY(-50%);
                        color: #bcbec0
                    }

        .page_wrapre .wallet_wrap .wallet_grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            padding: 14px 0 0
        }

            .page_wrapre .wallet_wrap .wallet_grid .wallet_block {
                width: 100%;
                background: rgba(0,0,0,.2);
                padding: 12px;
                border-radius: 10px;
                justify-content: center;
                align-items: center;
                gap: 10px
            }

                .page_wrapre .wallet_wrap .wallet_grid .wallet_block img {
                    width: 22px
                }

                .page_wrapre .wallet_wrap .wallet_grid .wallet_block span {
                    font-size: 12px;
                    color: #fff;
                    font-weight: 600;
                    width: 62px
                }

    .page_wrapre .wallet_menu_col {
        width: 100%;
        background: #fff;
        border-radius: 15px;
        padding: 0 12px;
        box-shadow: 0px 0px 5px rgba(0,0,0,.3)
    }

        .page_wrapre .wallet_menu_col .wallet_menu_row {
            width: 100%;
            gap: 12px;
            align-items: center;
            border-bottom: 1px solid #b6b7ba;
            padding: 12px;
            position: relative
        }

            .page_wrapre .wallet_menu_col .wallet_menu_row img {
                width: 18px
            }

            .page_wrapre .wallet_menu_col .wallet_menu_row span {
                color: #6d6e71;
                font-size: 12px;
                font-weight: 600
            }

            .page_wrapre .wallet_menu_col .wallet_menu_row i {
                margin-left: auto;
                color: #6d6e71
            }

            .page_wrapre .wallet_menu_col .wallet_menu_row .img_rlt {
                position: relative
            }

                .page_wrapre .wallet_menu_col .wallet_menu_row .img_rlt .dot {
                    width: 6px;
                    height: 6px;
                    border-radius: 999rem;
                    background: #ed1c24;
                    display: block;
                    position: absolute;
                    top: 1px;
                    left: 1px;
                    animation: attention 1.2s infinite both
                }

@keyframes attention {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.page_wrapre .wallet_menu_col .wallet_menu_row:last-child {
    border-bottom: 0
}

.page_wrapre .logout_btn {
    width: 100%;
    text-align: center;
    border: 1px solid #ed1c24;
    color: #fff;
    padding: 10px;
    background-color: #ed1c24;
    border-radius: 10px
}

.page_wrapre .withdraw_notice {
    font-size: 12px;
    font-weight: 700;
    color: #58595b;
    padding-left: 10px;
    border-bottom: 1px solid #a7a9ac;
    padding-bottom: 27px
}

    .page_wrapre .withdraw_notice .time {
        color: #ed1c24;
        font-size: 12px;
        font-weight: 700
    }

.page_wrapre .textbox_block {
    width: 98%;
    padding: 0 10px;
    gap: 8px;
    margin: 5px auto
}

    .page_wrapre .textbox_block .textbox_title {
        font-size: 12px;
        font-weight: 700;
        color: #58595b
    }

        .page_wrapre .textbox_block .textbox_title span {
            color: #ed1c24;
            margin-right: 2px
        }

    .page_wrapre .textbox_block .textbox_option_row {
        width: 100%;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 8px
    }

        .page_wrapre .textbox_block .textbox_option_row .option_block {
            max-width: 120px;
            width: calc(33.3333333333% - 6px);
            border-radius: 10px;
            overflow: hidden;
            border: .6mm solid rgba(0,0,0,0);
            transition: .4s
        }

            .page_wrapre .textbox_block .textbox_option_row .option_block img {
                width: 100%
            }

            .page_wrapre .textbox_block .textbox_option_row .option_block .amount {
                font-size: 14px;
                font-weight: 700;
                color: #808285;
                padding: 10px;
                text-align: center;
                width: 100%;
                background: #fff
            }

            .page_wrapre .textbox_block .textbox_option_row .option_block .crypto {
                font-size: 14px;
                font-weight: 700;
                color: #808285;
                padding: 10px;
                text-align: center;
                width: 100%;
                background: #fff
            }

        .page_wrapre .textbox_block .textbox_option_row .option_active {
            border: .6mm solid #ed1c24;
            box-shadow: 0px 0px 3px rgba(237,28,36,.7607843137)
        }

    .page_wrapre .textbox_block .row_5 .option_block {
        max-width: 120px;
        width: calc(20% - 7px)
    }

        .page_wrapre .textbox_block .row_5 .option_block .amount {
            font-size: 12px
        }

    .page_wrapre .textbox_block .textbox_anim {
        width: 100%;
        position: relative
    }

        .page_wrapre .textbox_block .textbox_anim input {
            width: 100%;
            background: #fff;
            padding: 20px 25px 10px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1)
        }

        .page_wrapre .textbox_block .textbox_anim label {
            position: absolute;
            top: 0;
            font-size: 13px;
            margin: 15px;
            padding: 0 10px;
            font-weight: 500;
            color: #d1d3d4;
            z-index: 5;
            letter-spacing: .4px;
            transition: top .2s ease-in-out,font-size .2s ease-in-out
        }

        .page_wrapre .textbox_block .textbox_anim .active {
            font-weight: 600;
            top: -10px;
            font-size: 10px;
            color: #747474
        }

    .page_wrapre .textbox_block .textbox_alert_wrap {
        display: none;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 4px;
        margin: -10px 0;
        padding: 0 28px
    }

        .page_wrapre .textbox_block .textbox_alert_wrap .textbox_elert {
            width: 100%;
            justify-content: flex-start;
            align-items: center;
            gap: 5px;
            color: #ed1c24;
            font-size: 9px;
            font-weight: 600
        }

            .page_wrapre .textbox_block .textbox_alert_wrap .textbox_elert img {
                width: 12px
            }

    .page_wrapre .textbox_block .textbox_txt_center {
        width: 100%
    }

        .page_wrapre .textbox_block .textbox_txt_center input {
            padding: 15px 20px
        }

        .page_wrapre .textbox_block .textbox_txt_center .btn_otp {
            margin-left: 10px;
            background: #ed1c24;
            padding: 10px 16px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            border-radius: 10px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: .4s
        }

            .page_wrapre .textbox_block .textbox_txt_center .btn_otp:hover {
                opacity: .7
            }

        .page_wrapre .textbox_block .textbox_txt_center .usd_textbox, .page_wrapre .textbox_block .textbox_txt_center .final_textbox {
            background: #f9f9f9
        }

    .page_wrapre .textbox_block .textbox_wrap {
        width: 100%;
        gap: 3px;
        position: relative
    }

        .page_wrapre .textbox_block .textbox_wrap input {
            width: 100%;
            background: #f9f9f9;
            padding: 12px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #58595b;
            font-weight: 700;
            font-size: 12px
        }

        .page_wrapre .textbox_block .textbox_wrap .textbox {
            width: 100%;
            background: #fff;
            padding: 14px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #ed1c24;
            border-radius: 10px;
            outline: 0;
            font-size: 12px;
            font-weight: 700
        }

        .page_wrapre .textbox_block .textbox_wrap span {
            color: #ed1c24
        }

        .page_wrapre .textbox_block .textbox_wrap i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: #ed1c24;
            cursor: pointer
        }

        .page_wrapre .textbox_block .textbox_wrap select {
            width: 100%;
            background: #fff;
            padding: 14px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #ed1c24;
            border-radius: 10px;
            outline: 0;
            font-size: 12px;
            font-weight: 700
        }

        .page_wrapre .textbox_block .textbox_wrap .select_disable {
            width: 100%;
            background: #d7dce0;
            padding: 12px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #58595b;
            font-weight: 700;
            font-size: 12px;
            border-radius: 10px;
            outline: 0
        }

    .page_wrapre .textbox_block .textbox_wrap_xl input {
        width: 100%;
        background: #fff;
        padding: 15px 20px
    }

    .page_wrapre .textbox_block p {
        color: #919396;
        font-size: 11px;
        font-weight: 500;
        padding-left: 10px;
        border-bottom: 1px solid #a7a9ac;
        padding-bottom: 10px
    }

    .page_wrapre .textbox_block .upload_btn {
        background: #939598;
        border-radius: 10px;
        cursor: pointer
    }

        .page_wrapre .textbox_block .upload_btn input {
            opacity: 0;
            width: 100%;
            cursor: pointer
        }

        .page_wrapre .textbox_block .upload_btn .receipt {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            gap: 10px;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            cursor: pointer
        }

            .page_wrapre .textbox_block .upload_btn .receipt img {
                width: 26px
            }

            .page_wrapre .textbox_block .upload_btn .receipt span {
                color: #fff;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: 700
            }

.page_wrapre .rate {
    gap: 5px
}

    .page_wrapre .rate span {
        font-size: 12px;
        font-style: italic;
        color: gray;
        font-weight: 600
    }

.page_wrapre .fom {
    font-size: 12px;
    font-style: italic;
    color: gray;
    font-weight: 600;
    gap: 4px
}

.page_wrapre .date_block {
    justify-content: space-between;
    align-items: center
}

    .page_wrapre .date_block .textbox_title {
        white-space: nowrap
    }

    .page_wrapre .date_block .textbox_wrap {
        width: 222px;
        background: #fff;
        padding: 0;
        border: 1px solid #cdcdcd;
        box-shadow: 0px 0px 5px rgba(0,0,0,.1);
        color: #58595b;
        font-weight: 700;
        font-size: 12px;
        border-radius: 10px;
        min-height: 43px
    }

        .page_wrapre .date_block .textbox_wrap input {
            background: rgba(0,0,0,0);
            color: #f9f9f9;
            padding: 0;
            box-shadow: none;
            border: none;
            width: 100%;
            height: 100%;
            outline: 0;
            padding: 12px 44px
        }

            .page_wrapre .date_block .textbox_wrap input[type=date]::-webkit-calendar-picker-indicator {
                position: absolute;
                width: 100%;
                opacity: 0
            }

        .page_wrapre .date_block .textbox_wrap i {
            pointer-events: none;
            font-size: 16px
        }

.page_wrapre .date_block_xl {
    align-items: flex-start
}

    .page_wrapre .date_block_xl .textbox_wrap {
        width: 100%;
        background: #fff;
        border: 1px solid #cdcdcd;
        box-shadow: 0px 0px 5px rgba(0,0,0,.1)
    }

.page_wrapre .submit_btn {
    width: 100%;
    text-align: center;
    background: #ed1c24;
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    margin-top: 40px
}

.page_wrapre .important_notice_wrap {
    width: 100%;
    padding: 10px;
    border-top: 1px solid #aaacaf
}

    .page_wrapre .important_notice_wrap .notice_title_row {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 10px
    }

        .page_wrapre .important_notice_wrap .notice_title_row img {
            width: 14px
        }

        .page_wrapre .important_notice_wrap .notice_title_row .title {
            font-size: 12px;
            font-weight: 700;
            color: #6d6e71
        }

        .page_wrapre .important_notice_wrap .notice_title_row i {
            margin-left: auto;
            color: #6d6e71;
            transition: .4s
        }

        .page_wrapre .important_notice_wrap .notice_title_row .down {
            transform: rotate(180deg)
        }

    .page_wrapre .important_notice_wrap .notice_ul {
        width: 100%;
        list-style-type: decimal;
        padding: 0 20px;
        margin-top: 15px
    }

        .page_wrapre .important_notice_wrap .notice_ul li {
            color: #8e9094;
            font-size: 10px;
            font-weight: 600;
            margin-bottom: 8px
        }

.page_wrapre .textbox_type {
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border: 1px solid #cdcdcd;
    box-shadow: 0px 0px 5px rgba(0,0,0,.1);
    color: #58595b;
    font-weight: 700;
    font-size: 12px;
    border-radius: 10px;
    gap: 10px;
    justify-content: space-between;
    align-items: center
}

    .page_wrapre .textbox_type input {
        background: rgba(0,0,0,0);
        width: 88%;
        border: 0;
        padding: 0
    }

.page_wrapre .textbox_type_disable {
    pointer-events: none
}

.page_wrapre .usdt_rate {
    color: #919396;
    font-size: 11px;
    font-weight: 500;
    padding-left: 10px
}

.page_wrapre .event_sm_nav_row {
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    overflow: auto
}

    .page_wrapre .event_sm_nav_row .event_sm_nav {
        flex: 1;
        background: #f1f2f2;
        color: #bfc1c3;
        font-size: .6rem;
        font-weight: 600;
        padding: 8px 10px;
        transition: .4s;
        border-radius: 999rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        min-width: 120px
    }

    .page_wrapre .event_sm_nav_row .nav_active {
        background: #ed1c24;
        color: #fff
    }

.page_wrapreacc {
    width: 100%;
    padding: 18px 12px;
    gap: 15px;
    margin-top: 39px
}

.page_topde {
    width: 100%;
    background: #ed1c24;
    padding: 5px 20px 10px;
    border-radius: 0 0 20px 20px;
    gap: 12px;
    margin-top: -2px
}

    .page_topde .login_banner_wrap {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: -20px
    }

        .page_topde .login_banner_wrap .banner_txt {
            width: 28%;
            max-width: 100px
        }

        .page_topde .login_banner_wrap .banner_img {
            transform: translateY(30px);
            width: 40%;
            max-width: 200px
        }

    .page_topde .wallet_balance_row {
        width: 100%;
        gap: 10px
    }

        .page_topde .wallet_balance_row .wallet_infor_col {
            flex: 1;
            gap: 5px
        }

            .page_topde .wallet_balance_row .wallet_infor_col .wallet_title {
                width: 100%;
                text-transform: uppercase;
                color: #fafafa;
                font-size: 10px;
                font-weight: 600;
                gap: 10px;
                padding: 0 8px
            }

                .page_topde .wallet_balance_row .wallet_infor_col .wallet_title i {
                    color: #e4e4e4
                }

            .page_topde .wallet_balance_row .wallet_infor_col .wallet_balance {
                width: 100%;
                position: relative;
                background: #fff;
                border-radius: 999rem
            }

                .page_topde .wallet_balance_row .wallet_infor_col .wallet_balance .value {
                    color: #6d6e71;
                    font-size: 12px;
                    font-weight: 700;
                    top: 50%;
                    transform: translateY(-50%);
                    position: absolute;
                    line-height: 1;
                    left: 20px
                }

                .page_topde .wallet_balance_row .wallet_infor_col .wallet_balance input {
                    width: 88%;
                    border: 0;
                    outline: 0;
                    background: rgba(0,0,0,0);
                    color: #6d6e71;
                    font-size: 12px;
                    font-weight: 700;
                    padding: 10px 20px;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden
                }

                .page_topde .wallet_balance_row .wallet_infor_col .wallet_balance .balance_input {
                    padding-left: 50px
                }

                .page_topde .wallet_balance_row .wallet_infor_col .wallet_balance i {
                    position: absolute;
                    top: 50%;
                    right: 15px;
                    transform: translateY(-50%);
                    color: #bcbec0
                }

    .page_topde .page_nav_row {
        width: 100%;
        padding: 3px;
        background: #f1f2f2;
        border-radius: 999rem;
        overflow: auto;
        align-items: stretch;
        gap: 3px;
        margin-top: 12px
    }

        .page_topde .page_nav_row .page_nav {
            flex: 1;
            min-width: 119px;
            padding: 10px 4px;
            border-radius: 999rem;
            text-align: center;
            color: #939598;
            font-size: .7rem;
            font-weight: 700;
            display: flex;
            white-space: nowrap;
            justify-content: center;
            align-items: center;
            transition: .4s
        }

        .page_topde .page_nav_row .nav_active {
            color: #fff;
            background: #ed1c24
        }

div.a {
    text-align: justify;
    -moz-text-align-last: right;
    text-align-last: center;
    font-size: 10px
}

.page_wrapwi {
    width: 100%;
    gap: 15px;
    margin-top: 75px;
}

    .page_wrapwi .user_bar_row {
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0,0,0,.3);
        border-radius: 15px;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        padding: 12px 16px
    }

        .page_wrapwi .user_bar_row .icon {
            width: 30px
        }

            .page_wrapwi .user_bar_row .icon img {
                width: 100%
            }

        .page_wrapwi .user_bar_row .user_infor_col {
            flex: 1
        }

            .page_wrapwi .user_bar_row .user_infor_col .username {
                flex: 1;
                color: #58595b;
                font-size: 13px;
                font-weight: 700
            }

            .page_wrapwi .user_bar_row .user_infor_col .user_id {
                flex: 1;
                color: #939598;
                font-size: 12px;
                font-weight: 600
            }

        .page_wrapwi .user_bar_row .user_vip {
            width: 70px
        }

            .page_wrapwi .user_bar_row .user_vip img {
                width: 100%;
                border-radius: 5px
            }

        .page_wrapwi .user_bar_row .user_qr {
            width: 38px
        }

            .page_wrapwi .user_bar_row .user_qr img {
                width: 100%
            }

    .page_wrapwi .wallet_wrap {
        width: 100%;
        background: #ed1c24;
        border-radius: 15px;
        padding: 15px
    }

        .page_wrapwi .wallet_wrap .wallet_balance_row {
            width: 100%;
            gap: 10px
        }

            .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col {
                flex: 1;
                gap: 5px
            }

                .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_title {
                    width: 100%;
                    text-transform: uppercase;
                    color: #fafafa;
                    font-size: 10px;
                    font-weight: 600;
                    gap: 10px;
                    margin-top: 12px
                }

                    .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_title i {
                        color: #e4e4e4
                    }

                .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance {
                    width: 100%;
                    position: relative;
                    background: #fff;
                    border-radius: 999rem
                }

                    .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance .value {
                        color: #6d6e71;
                        font-size: 12px;
                        font-weight: 700;
                        top: 50%;
                        transform: translateY(-50%);
                        position: absolute;
                        line-height: 1;
                        left: 20px
                    }

                    .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance input {
                        width: 88%;
                        border: 0;
                        outline: 0;
                        background: rgba(0,0,0,0);
                        color: #6d6e71;
                        font-size: 12px;
                        font-weight: 700;
                        padding: 10px 20px;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        overflow: hidden
                    }

                    .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance .balance_input {
                        padding-left: 50px
                    }

                    .page_wrapwi .wallet_wrap .wallet_balance_row .wallet_infor_col .wallet_balance i {
                        position: absolute;
                        top: 50%;
                        right: 15px;
                        transform: translateY(-50%);
                        color: #bcbec0
                    }

        .page_wrapwi .wallet_wrap .wallet_grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            padding: 14px 0 0
        }

            .page_wrapwi .wallet_wrap .wallet_grid .wallet_block {
                width: 100%;
                background: rgba(0,0,0,.2);
                padding: 12px;
                border-radius: 10px;
                justify-content: center;
                align-items: center;
                gap: 10px
            }

                .page_wrapwi .wallet_wrap .wallet_grid .wallet_block img {
                    width: 22px
                }

                .page_wrapwi .wallet_wrap .wallet_grid .wallet_block span {
                    font-size: 12px;
                    color: #fff;
                    font-weight: 600;
                    width: 62px
                }

    .page_wrapwi .wallet_menu_col {
        width: 100%;
        background: #fff;
        border-radius: 15px;
        padding: 0 12px;
        box-shadow: 0px 0px 5px rgba(0,0,0,.3)
    }

        .page_wrapwi .wallet_menu_col .wallet_menu_row {
            width: 100%;
            gap: 12px;
            align-items: center;
            border-bottom: 1px solid #b6b7ba;
            padding: 12px;
            position: relative
        }

            .page_wrapwi .wallet_menu_col .wallet_menu_row img {
                width: 18px
            }

            .page_wrapwi .wallet_menu_col .wallet_menu_row span {
                color: #6d6e71;
                font-size: 12px;
                font-weight: 600
            }

            .page_wrapwi .wallet_menu_col .wallet_menu_row i {
                margin-left: auto;
                color: #6d6e71
            }

            .page_wrapwi .wallet_menu_col .wallet_menu_row .img_rlt {
                position: relative
            }

                .page_wrapwi .wallet_menu_col .wallet_menu_row .img_rlt .dot {
                    width: 6px;
                    height: 6px;
                    border-radius: 999rem;
                    background: #ed1c24;
                    display: block;
                    position: absolute;
                    top: 1px;
                    left: 1px;
                    animation: attention 1.2s infinite both
                }

@keyframes attention {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.page_wrapwi .wallet_menu_col .wallet_menu_row:last-child {
    border-bottom: 0
}

.page_wrapwi .logout_btn {
    width: 100%;
    text-align: center;
    border: 1px solid #ed1c24;
    color: #fff;
    padding: 10px;
    background-color: #ed1c24;
    border-radius: 10px
}

.page_wrapwi .withdraw_notice {
    font-size: 12px;
    font-weight: 700;
    color: #58595b;
    padding-left: 10px;
    border-bottom: 1px solid #a7a9ac;
    padding-bottom: 27px
}

    .page_wrapwi .withdraw_notice .time {
        color: #ed1c24;
        font-size: 12px;
        font-weight: 700
    }

.page_wrapwi .textbox_block {
    width: 98%;
    padding: 0px 15px;
    gap: 8px;
    margin: 0px auto
}

    .page_wrapwi .textbox_block .textbox_title {
        font-size: 12px;
        font-weight: 700;
        color: #58595b
    }

        .page_wrapwi .textbox_block .textbox_title span {
            color: #ed1c24;
            margin-right: 2px
        }

    .page_wrapwi .textbox_block .textbox_option_row {
        width: 100%;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 8px
    }

        .page_wrapwi .textbox_block .textbox_option_row .option_block {
            max-width: 120px;
            width: calc(33.3333333333% - 6px);
            border-radius: 10px;
            overflow: hidden;
            border: .6mm solid rgba(0,0,0,0);
            transition: .4s
        }

            .page_wrapwi .textbox_block .textbox_option_row .option_block img {
                width: 100%
            }

            .page_wrapwi .textbox_block .textbox_option_row .option_block .amount {
                font-size: 14px;
                font-weight: 700;
                color: #808285;
                padding: 10px;
                text-align: center;
                width: 100%;
                background: #fff
            }

            .page_wrapwi .textbox_block .textbox_option_row .option_block .crypto {
                font-size: 14px;
                font-weight: 700;
                color: #808285;
                padding: 10px;
                text-align: center;
                width: 100%;
                background: #fff
            }

        .page_wrapwi .textbox_block .textbox_option_row .option_active {
            border: .6mm solid #ed1c24;
            box-shadow: 0px 0px 3px rgba(237,28,36,.7607843137)
        }

    .page_wrapwi .textbox_block .row_5 .option_block {
        max-width: 120px;
        width: calc(20% - 7px)
    }

        .page_wrapwi .textbox_block .row_5 .option_block .amount {
            font-size: 12px
        }

    .page_wrapwi .textbox_block .textbox_anim {
        width: 100%;
        position: relative
    }

        .page_wrapwi .textbox_block .textbox_anim input {
            width: 100%;
            background: #fff;
            padding: 20px 25px 10px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1)
        }

        .page_wrapwi .textbox_block .textbox_anim label {
            position: absolute;
            top: 0;
            font-size: 13px;
            margin: 15px;
            padding: 0 10px;
            font-weight: 500;
            color: #d1d3d4;
            z-index: 5;
            letter-spacing: .4px;
            transition: top .2s ease-in-out,font-size .2s ease-in-out
        }

        .page_wrapwi .textbox_block .textbox_anim .active {
            font-weight: 600;
            top: -10px;
            font-size: 10px;
            color: #747474
        }

    .page_wrapwi .textbox_block .textbox_alert_wrap {
        display: none;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 4px;
        margin: -10px 0;
        padding: 0 28px
    }

        .page_wrapwi .textbox_block .textbox_alert_wrap .textbox_elert {
            width: 100%;
            justify-content: flex-start;
            align-items: center;
            gap: 5px;
            color: #ed1c24;
            font-size: 9px;
            font-weight: 600
        }

            .page_wrapwi .textbox_block .textbox_alert_wrap .textbox_elert img {
                width: 12px
            }

    .page_wrapwi .textbox_block .textbox_txt_center {
        width: 100%
    }

        .page_wrapwi .textbox_block .textbox_txt_center input {
            padding: 15px 20px
        }

        .page_wrapwi .textbox_block .textbox_txt_center .btn_otp {
            margin-left: 10px;
            background: #ed1c24;
            padding: 10px 16px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            border-radius: 10px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: .4s
        }

            .page_wrapwi .textbox_block .textbox_txt_center .btn_otp:hover {
                opacity: .7
            }

        .page_wrapwi .textbox_block .textbox_txt_center .usd_textbox, .page_wrapwi .textbox_block .textbox_txt_center .final_textbox {
            background: #f9f9f9
        }

    .page_wrapwi .textbox_block .textbox_wrap {
        width: 100%;
        gap: 3px;
        position: relative
    }

        .page_wrapwi .textbox_block .textbox_wrap input {
            width: 100%;
            background: #f9f9f9;
            padding: 12px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #58595b;
            font-weight: 700;
            font-size: 12px
        }

        .page_wrapwi .textbox_block .textbox_wrap .textbox {
            width: 100%;
            background: #fff;
            padding: 14px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #ed1c24;
            border-radius: 10px;
            outline: 0;
            font-size: 12px;
            font-weight: 700
        }

        .page_wrapwi .textbox_block .textbox_wrap span {
            color: #ed1c24
        }

        .page_wrapwi .textbox_block .textbox_wrap i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            color: #ed1c24;
            cursor: pointer
        }

        .page_wrapwi .textbox_block .textbox_wrap select {
            width: 100%;
            background: #fff;
            padding: 14px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #ed1c24;
            border-radius: 10px;
            outline: 0;
            font-size: 12px;
            font-weight: 700
        }

        .page_wrapwi .textbox_block .textbox_wrap .select_disable {
            width: 100%;
            background: #d7dce0;
            padding: 12px 20px;
            border: 1px solid #cdcdcd;
            box-shadow: 0px 0px 5px rgba(0,0,0,.1);
            color: #58595b;
            font-weight: 700;
            font-size: 12px;
            border-radius: 10px;
            outline: 0
        }

    .page_wrapwi .textbox_block .textbox_wrap_xl input {
        width: 100%;
        background: #fff;
        padding: 15px 20px
    }

    .page_wrapwi .textbox_block p {
        color: #919396;
        font-size: 11px;
        font-weight: 500;
        padding-left: 10px;
        border-bottom: 1px solid #a7a9ac;
        padding-bottom: 10px
    }

    .page_wrapwi .textbox_block .upload_btn {
        background: #939598;
        border-radius: 10px;
        cursor: pointer
    }

        .page_wrapwi .textbox_block .upload_btn input {
            opacity: 0;
            width: 100%;
            cursor: pointer
        }

        .page_wrapwi .textbox_block .upload_btn .receipt {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            gap: 10px;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            cursor: pointer
        }

            .page_wrapwi .textbox_block .upload_btn .receipt img {
                width: 26px
            }

            .page_wrapwi .textbox_block .upload_btn .receipt span {
                color: #fff;
                font-size: 13px;
                text-transform: uppercase;
                font-weight: 700
            }

.page_wrapwi .rate {
    gap: 5px
}

    .page_wrapwi .rate span {
        font-size: 12px;
        font-style: italic;
        color: gray;
        font-weight: 600
    }

.page_wrapwi .fom {
    font-size: 12px;
    font-style: italic;
    color: gray;
    font-weight: 600;
    gap: 4px
}

.page_wrapwi .date_block {
    justify-content: space-between;
    align-items: center
}

    .page_wrapwi .date_block .textbox_title {
        white-space: nowrap
    }

    .page_wrapwi .date_block .textbox_wrap {
        width: 222px;
        background: #fff;
        padding: 0;
        border: 1px solid #cdcdcd;
        box-shadow: 0px 0px 5px rgba(0,0,0,.1);
        color: #58595b;
        font-weight: 700;
        font-size: 12px;
        border-radius: 10px;
        min-height: 43px
    }

        .page_wrapwi .date_block .textbox_wrap input {
            background: rgba(0,0,0,0);
            color: #f9f9f9;
            padding: 0;
            box-shadow: none;
            border: none;
            width: 100%;
            height: 100%;
            outline: 0;
            padding: 12px 44px
        }

            .page_wrapwi .date_block .textbox_wrap input[type=date]::-webkit-calendar-picker-indicator {
                position: absolute;
                width: 100%;
                opacity: 0
            }

        .page_wrapwi .date_block .textbox_wrap i {
            pointer-events: none;
            font-size: 16px
        }

.page_wrapwi .date_block_xl {
    align-items: flex-start
}

    .page_wrapwi .date_block_xl .textbox_wrap {
        width: 100%;
        background: #fff;
        border: 1px solid #cdcdcd;
        box-shadow: 0px 0px 5px rgba(0,0,0,.1)
    }

.page_wrapwi .submit_btn {
    width: 100%;
    text-align: center;
    background: #ed1c24;
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    margin-top: 40px
}

.page_wrapwi .important_notice_wrap {
    width: 100%;
    padding: 10px;
    border-top: 1px solid #aaacaf
}

    .page_wrapwi .important_notice_wrap .notice_title_row {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 10px
    }

        .page_wrapwi .important_notice_wrap .notice_title_row img {
            width: 14px
        }

        .page_wrapwi .important_notice_wrap .notice_title_row .title {
            font-size: 12px;
            font-weight: 700;
            color: #6d6e71
        }

        .page_wrapwi .important_notice_wrap .notice_title_row i {
            margin-left: auto;
            color: #6d6e71;
            transition: .4s
        }

        .page_wrapwi .important_notice_wrap .notice_title_row .down {
            transform: rotate(180deg)
        }

    .page_wrapwi .important_notice_wrap .notice_ul {
        width: 100%;
        list-style-type: decimal;
        padding: 0 20px;
        margin-top: 15px
    }

        .page_wrapwi .important_notice_wrap .notice_ul li {
            color: #8e9094;
            font-size: 10px;
            font-weight: 600;
            margin-bottom: 8px
        }

.page_wrapwi .textbox_type {
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border: 1px solid #cdcdcd;
    box-shadow: 0px 0px 5px rgba(0,0,0,.1);
    color: #58595b;
    font-weight: 700;
    font-size: 12px;
    border-radius: 10px;
    gap: 10px;
    justify-content: space-between;
    align-items: center
}

    .page_wrapwi .textbox_type input {
        background: rgba(0,0,0,0);
        width: 88%;
        border: 0;
        padding: 0
    }

.page_wrapwi .textbox_type_disable {
    pointer-events: none
}

.page_wrapwi .usdt_rate {
    color: #919396;
    font-size: 11px;
    font-weight: 500;
    padding-left: 10px
}

.page_wrapwi .event_sm_nav_row {
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    overflow: auto
}

    .page_wrapwi .event_sm_nav_row .event_sm_nav {
        flex: 1;
        background: #f1f2f2;
        color: #bfc1c3;
        font-size: .6rem;
        font-weight: 600;
        padding: 8px 10px;
        transition: .4s;
        border-radius: 999rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        min-width: 120px
    }

    .page_wrapwi .event_sm_nav_row .nav_active {
        background: #ed1c24;
        color: #fff
    }

.referra_banner_wrap {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: -70px
}

    .referra_banner_wrap .banner_txt {
        width: 28%;
        max-width: 100px
    }

    .referra_banner_wrap .banner_img {
        transform: translateY(30px);
        width: 45%;
        max-width: 200px
    }

    .referra_banner_wrap .reffert {
        width: 34%;
        font-size: 28px;
        font-weight: 800;
        color: #fff;
        text-align: center;
        margin: -8px;
        height: 43px
    }

div.ear {
    text-align: justify;
    -moz-text-align-last: right;
    text-align-last: center;
    font-size: 10px
}

.contact_detail {
    width: 100%;
    padding: 15px 15px
}

    .contact_detail .contact_col:first-child p {
        margin-top: 25px
    }

    .contact_detail img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0,0,0,.4)
    }

    .contact_detail .padding {
        padding: 12px 15px;
        width: 100%;
        gap: 10px;
        margin-top: -23px
    }

    .contact_detail .contact_padding {
        margin-top: 40px;
        margin-bottom: 10%;
    }

    .contact_detail .promo_infor {
        width: 100%;
        gap: 10px
    }

        .contact_detail .promo_infor .event_col {
            width: 100%;
            font-size: 12px;
            gap: 4px;
        }

            .contact_detail .promo_infor .event_col p {
                font-size: 14px;
                font-weight: 700;
                color: #000;
                margin-top: 10px;
                text-align: justify;
            }

            .contact_detail .promo_infor .event_col .name {
                font-size: 13px;
                font-weight: 600;
                color: #6d6d6d;
                text-align: justify;
            }

    .contact_detail .contact_col {
        width: 100%;
        font-size: 12px;
        gap: 4px
    }

        .contact_detail .contact_col p {
            font-size: 14px;
            font-weight: 700;
            color: rgba(237,28,36,.7607843137);
        }

        .contact_detail .contact_col p {
            text-align: justify !important
        }

        .contact_detail .contact_col .infor {
            font-size: 13px;
            font-weight: 600;
            color: #6d6d6d
        }

    .contact_detail .promo_title {
        font-size: 12px;
        font-weight: 600;
        color: #4d4d4d
    }

    .contact_detail .desc {
        font-size: 12px;
        font-weight: 500;
        color: #000;
        text-align: justify;
    }

    .contact_detail .table_wrap {
        width: 100%;
        overflow: auto;
        margin-top: 10px
    }

        .contact_detail .table_wrap table {
            background: #f1f2f2;
            width: 100%;
            min-width: 500px;
            border-collapse: collapse;
            border-spacing: 0;
            border-radius: 10px
        }

            .contact_detail .table_wrap table th, .contact_detail .table_wrap table td {
                padding: 10px;
                font-size: 11px;
                text-align: center
            }

            .contact_detail .table_wrap table th {
                color: #fff;
                background: #ed1c24;
                font-weight: 700;
                border-bottom: 1px solid #fff
            }

                .contact_detail .table_wrap table th:first-child {
                    border-radius: 10px 0 0 0
                }

                .contact_detail .table_wrap table th:last-child {
                    border-radius: 0 10px 0 0
                }

            .contact_detail .table_wrap table td {
                color: #000;
                font-weight: 500
            }

.about_content {
    width: 100%
}

    .about_content p span {
        text-align: justify !important
    }

    .about_content .desc {
        margin-bottom: 20px
    }

    .about_content ol {
        width: 100%;
        padding-left: 15px
    }

        .about_content ol li {
            width: 100%;
            font-size: 12px;
            font-weight: 500;
            color: #000;
            line-height: 1.6;
            list-style-type: decimal;
            margin-bottom: 10px
        }

    .about_content ul {
        margin-top: -10px
    }

        .about_content ul li {
            width: 100%;
            font-size: 12px;
            font-weight: 500;
            color: #000;
            line-height: 1.6;
            margin-bottom: 5px
        }

.page_contact {
    width: 100%;
    position: sticky;
    top: 0;
    border-radius: 0 0 20px 20px;
    z-index: 99;
    height: 79px
}

.contact_grid {
    width: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column
}

    .contact_grid .contact_block {
        width: 100%;
        background: #ffffff;
        padding: 15px;
        box-shadow: 0px 0px 10px rgba(0,0,0,.4);
        border-radius: 10px;
        justify-content: flex-start;
        align-items: center;
        gap: 10px
    }

        .contact_grid .contact_block .sm_title {
            font-size: 12px;
            color: #ed1c24;
            font-weight: 700
        }

        .contact_grid .contact_block img {
            width: 30px;
            border-radius: 0;
            box-shadow: none
        }

        .contact_grid .contact_block .col {
            flex: 1
        }

        .contact_grid .contact_block a {
            color: #202020;
            font-size: 12px;
            text-decoration: underline
        }

.page_contact {
    width: 100%;
    position: sticky;
    top: 0;
    border-radius: 0 0 20px 20px;
    z-index: 99;
    height: 79px
}

.confun {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap
}

.column {
    display: flex;
    align-items: center;
    width: 48%;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px
}

.btnTotop {
    position: fixed;
    bottom: 90px;
    right: 7%;
    z-index: 10;
    cursor: pointer;
    outline: none;
    border: none;
    background: 0 0;
    gap: 10px;
    display: none
}

    .btnTotop .animArrow {
        position: relative;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center
    }

        .btnTotop .animArrow i {
            font-size: 16px;
            color: #a5a5a5
        }

    .btnTotop .animText {
        border-radius: 15px;
        border: none;
        width: 50px;
        height: 50px;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        color: #ed1c24;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        box-shadow: 5px 5px 15px rgba(0,0,0,.08);
        box-shadow: 0px 0px 10px #000
    }

        .btnTotop .animText i {
            color: var(--target_color);
            font-size: 23px
        }

.image {
    width: 40%;
    height: auto;
    border-radius: 8px
}

.text {
    margin-left: 20px;
    font-size: 16px;
    color: #333;
    flex: 1
}

@media(max-width: 768px) {
    .column {
        width: 100%;
        flex-direction: column;
        text-align: center
    }

    .image {
        width: 100%;
        margin-bottom: 10px
    }

    .text {
        margin-left: 0
    }
}

.rw_banner_wrap {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: -13px
}

    .rw_banner_wrap img {
        width: 95%;
        border-radius: 15px
    }

    .rw_banner_wrap .banner_txt {
        width: 28%;
        max-width: 100px
    }

    .rw_banner_wrap .banner_img {
        transform: translateY(30px);
        width: 45%;
        max-width: 200px
    }

    .rw_banner_wrap .reffert {
        width: 34%;
        font-size: 28px;
        font-weight: 800;
        color: #fff;
        text-align: center;
        margin: -8px;
        height: 43px
    }

.lobby_main_wrap {
    width: 100%;
    margin-top: 10px
}

.lobby_wrap {
    width: 100%
}

    .lobby_wrap .provider_row {
        width: 100%;
        white-space: nowrap;
        overflow: auto;
        background: #fdfdfd;
        padding: 10px;
        gap: 10px
    }

        .lobby_wrap .provider_row .provider {
            min-width: 120px;
            padding: 10px;
            border-radius: 10px;
            background: #dfe5ea;
            border: 1px solid #dfe5ea;
            transition: .4s;
            box-shadow: 0px 0px 7px rgba(0,0,0,.4)
        }

            .lobby_wrap .provider_row .provider img {
                width: 100%
            }

        .lobby_wrap .provider_row .active {
            border: 1px solid #ed1c24;
            background: #ed1c24
        }

    .lobby_wrap .cate_block {
        width: 100%;
        padding: 10px 15px;
        gap: 10px;
        background: #fff;
        border-radius: 10px;
    }

        .lobby_wrap .cate_block .cate_wrap {
            flex: 1;
            gap: 15px;
            overflow: auto;
        }

            .lobby_wrap .cate_block .cate_wrap .cate_option {
                flex: 1;
                background: #f1f2f2;
                color: #838383;
                font-size: .6rem;
                font-weight: 600;
                padding: 8px 10px;
                transition: .4s;
                border-radius: 999rem;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                white-space: nowrap;
                min-width: 120px;
            }

                .lobby_wrap .cate_block .cate_wrap .cate_option::after {
                    content: "";
                    position: absolute;
                    bottom: 0px;
                    width: 5px;
                    height: 5px;
                    background: #ed1c24;
                    border-radius: 999rem;
                    left: 50%;
                    transform: translateX(-50%);
                    opacity: 0;
                    transition: .4s
                }

            .lobby_wrap .cate_block .cate_wrap .active {
                background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
                color: #fff;
                border-radius: 15px;
            }

                .lobby_wrap .cate_block .cate_wrap .active::after {
                    opacity: 1
                }

        .lobby_wrap .cate_block .search_wrap {
            width: 40%;
            background: #fff;
            color: #000;
            border-radius: 15px;
            padding: 8px
        }

            .lobby_wrap .cate_block .search_wrap i {
                color: #ed1c24
            }

            .lobby_wrap .cate_block .search_wrap input {
                background: rgba(0,0,0,0);
                outline: 0;
                padding: 0px 8px;
                border: 0;
                color: #000;
                width: 100%
            }

.game_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    margin-bottom: 10%;
}

    .game_grid .game_main_block {
        width: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0px 0px 8px rgba(0,0,0,.5);
        border-radius: 10px
    }

    .game_grid .game_block {
        width: 100%;
        position: relative;
        overflow: hidden
    }

        .game_grid .game_block img {
            width: 100%;
            border-radius: 10px 10px 0 0
        }

        .game_grid .game_block .game_cover {
            position: absolute;
            bottom: -150%;
            left: 0;
            background: rgba(0,0,0,.8);
            border-radius: 10px 10px 0 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            display: flex;
            transition: .4s
        }

            .game_grid .game_block .game_cover .play_btn {
                width: -moz-fit-content;
                width: fit-content;
                background: #ed1c24;
                color: #fff;
                font-size: .6rem;
                border-radius: 10px;
                margin: auto;
                padding: 9px 14px;
                font-weight: 700;
                text-transform: uppercase
            }

        .game_grid .game_block:hover .game_cover {
            bottom: 0
        }

    .game_grid .game_infor {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 6px 10px;
        border-radius: 0 0 10px 10px;
        background: #f9f9f9
    }

        .game_grid .game_infor .name {
            width: 80%;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            color: #000;
            font-size: 12px;
            font-weight: 500
        }

        .game_grid .game_infor i {
            color: #ed1c24;
            font-size: 12px
        }

.mobile_block_wrap {
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: flex-start
}

.mobile_download_block {
    max-width: 720px;
    width: 100%;
    gap: 10px;
    background: #dfe5ea;
    padding: 20px 15px;
    border-radius: 14px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.4)
}

    .mobile_download_block .mobile_top_row {
        width: 100%;
        gap: 10px
    }

        .mobile_download_block .mobile_top_row .mobile_cate_img_col {
            flex: 1;
            align-items: stretch;
            gap: 10px
        }

            .mobile_download_block .mobile_top_row .mobile_cate_img_col .logo {
                width: 50%;
                margin: 0 auto
            }

                .mobile_download_block .mobile_top_row .mobile_cate_img_col .logo img {
                    width: 100%
                }

            .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col {
                flex: 1;
                gap: 10px
            }

                .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn {
                    width: 100%;
                    cursor: pointer;
                    align-items: center
                }

                    .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn .icon {
                        width: 42px;
                        height: 42px;
                        border-radius: 999rem;
                        padding: 10px;
                        background: #ed1c24;
                        transition: .4s;
                        z-index: 4
                    }

                        .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn .icon img {
                            width: 100%;
                            filter: brightness(0) invert(1)
                        }

                    .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn .infor {
                        flex: 1;
                        color: #fff;
                        font-size: 12px;
                        padding: 8px 20px;
                        margin-left: -20px;
                        padding-left: 30px;
                        transition: .4s;
                        border-radius: 8px;
                        color: #000;
                        border: 2px solid #ed1c24
                    }

                    .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn:hover .icon {
                        background: #ed1c24
                    }

                        .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn:hover .icon img {
                            filter: brightness(0) invert(1)
                        }

                    .mobile_download_block .mobile_top_row .mobile_cate_img_col .mobile_down_btn_col .mobile_down_btn:hover .infor {
                        background: #ed1c24;
                        color: #fff
                    }

        .mobile_download_block .mobile_top_row .qr_wrap {
            width: 100%;
            gap: 10px;
            margin: 0 auto
        }

            .mobile_download_block .mobile_top_row .qr_wrap .qr_item {
                width: 50%;
                display: flex;
                flex-direction: column;
                padding: 10px;
                border-radius: 10px;
                border: 2px solid red
            }

                .mobile_download_block .mobile_top_row .qr_wrap .qr_item .qr_header {
                    text-align: center;
                    color: #000;
                    font-size: 12px;
                    font-weight: bold;
                    padding: 2px 0
                }

                .mobile_download_block .mobile_top_row .qr_wrap .qr_item .qr {
                    width: 100%;
                    border: 10px solid #fff;
                    border-radius: 10px
                }

                    .mobile_download_block .mobile_top_row .qr_wrap .qr_item .qr img {
                        width: 100%;
                        border-radius: 10px
                    }

    .mobile_download_block .mobile_bottom_col {
        width: 100%;
        padding: 15px;
        background: #d5d5d5;
        border-radius: 10px;
        gap: 10px;
        border: 2px solid red
    }

        .mobile_download_block .mobile_bottom_col .mobile_infor_row {
            width: 100%;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 10px;
            position: relative
        }

            .mobile_download_block .mobile_bottom_col .mobile_infor_row .title {
                font-size: 12px;
                color: #000;
                font-weight: bold;
                white-space: nowrap
            }

            .mobile_download_block .mobile_bottom_col .mobile_infor_row .infor {
                color: #fff;
                font-size: 11px
            }

            .mobile_download_block .mobile_bottom_col .mobile_infor_row input {
                width: 100%;
                padding: 10px;
                background: #fff;
                border: 0;
                outline: none
            }

            .mobile_download_block .mobile_bottom_col .mobile_infor_row i {
                position: absolute;
                right: 10px;
                bottom: 20px;
                color: #ed1c24
            }

.menu_con .menu_top_row .lang_row .current_lang {
    background: none;
}

    .menu_con .menu_top_row .lang_row .current_lang img {
        width: 100%;
    }

.mb_select, .login_wrap form .textbox_anim input {
    border-width: 0.1rem !important;
    border-color: #dbe0e4 !important;
    border-radius: 15px !important;
}

    .login_wrap form .textbox_anim input:focus {
        border-width: 0.1rem;
        border-color: #ef8d8d;
    }

.page_top .page_nav_row .nav_active, .page_top .page_nav_row .nav_active, .login_wrap form .btn {
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}

.textcolor {
    color: #494949 !important;
}

.login_wrap form .btn {
    border-radius: 15px;
}

.account_page_wrap {
    padding: 14px 12px 0px 12px !important;
    margin-bottom: 5%;
}

.container, .page_wrap .col .page_target .vip_page {
    background-image: url(/resources/mobile/image/login/bg.png) !important;
/*    background-image: url(/resources/mobile/image/raya_bg.png) !important;
*/}

.mb_select, .textbox_anim input {
    border-width: 0.1rem !important;
    border-color: #dbe0e4 !important;
    border-radius: 15px !important;
}

    .textbox_anim input:focus,
    .textbox_anim .textbox_wrap input:focus,
    .textbox_type input:focus,
    .textbox_anim textbox_alert_data {
        border-width: 0.1rem !important;
        border-color: #ed1c24 !important;
    }

.page_top .page_nav_row .nav_active, .page_top .page_nav_row .nav_active, .btn,
.page_wrap .textbox_block .textbox_option_row .option_active {
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
    border: 0.2mm solid rgba(0, 0, 0, 0) !important;
}

.page_top .page_nav_row .bank_option_image {
    width: 100%
}

.page_top .page_nav_row .nav_active .bank_option_image {
    filter: brightness(0) invert(1);
}

.title {
    font-size: 14px !important;
}

.ewallet, .banktransfer, .paynow, .usdt, .transfer, .truepay, .fastpay, .dgpay, .direpay {
    margin-top: 145px;
}

.wallet_title {
    padding-left: 8px;
    padding-right: 8px;
}

.page_top .page_nav_row .page_nav,
.about_wrap p,
.faq_wrap .faq_block .faq_desc {
    font-size: 12px !important;
}

.page_wrap .textbox_block .textbox_option_row .option_block,
.page_wrap .textbox_block .textbox_wrap select {
    border-radius: 15px !important;
    background: #fff;
    border: 1px solid #cdcdcd;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
}

.lobby_main_wrap .lang_row {
    width: 100%;
    background: #fff;
    padding: 14px 20px;
    border: 1px solid #cdcdcd;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
    color: #ed1c24;
    border-radius: 10px;
    outline: 0;
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    gap: 15px;
}

    .lobby_main_wrap .lang_row img {
        width: 20px;
    }

    .lobby_main_wrap .lang_row i {
        color: #ed1c24;
        font-size: 16px;
        margin-left: auto;
    }

.claim {
    width: 100%;
    padding: 18px 12px 0px;
    gap: 15px;
}

.vip_page .cur_vip_block {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .4);
    padding: 15px;
    gap: 20px;
    background-color: #fff;
}

    .vip_page .cur_vip_block .cur_top {
        width: 100%;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }

        .vip_page .cur_vip_block .cur_top .col p {
            font-size: 11px;
            color: #000;
            font-weight: 700;
        }

        .vip_page .cur_vip_block .cur_top img {
            width: 30px;
        }

        .vip_page .cur_vip_block .cur_top .col {
            flex: 1;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .vip_page .cur_vip_block .cur_top .cur_vip {
            width: 100%;
            max-width: 70%;
            border-radius: 15px;
        }

    .vip_page .cur_vip_block .cur_status {
        width: 100%;
        gap: 5px;
    }

        .vip_page .cur_vip_block .cur_status .cur_title {
            font-size: 10px;
            font-weight: 600;
            color: #000;
        }

        .vip_page .cur_vip_block .cur_status .ben_row {
            width: 100%;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

        .vip_page .cur_vip_block .cur_status .ben_row {
            width: 100%;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

            .vip_page .cur_vip_block .cur_status .ben_row .ben_col {
                flex: 1;
                align-items: center;
                gap: 8px;
            }

                .vip_page .cur_vip_block .cur_status .ben_row .ben_col .icon {
                    width: 40px;
                    height: 40px;
                    padding: 10px;
                    border-radius: 999rem;
                    background: #ed1c24;
                    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.44));
                }

                .vip_page .cur_vip_block .cur_status .ben_row .ben_col p {
                    font-size: 14px;
                    font-weight: 700;
                    color: #ed1c24;
                }

                .vip_page .cur_vip_block .cur_status .ben_row .ben_col .icon img {
                    width: 100%;
                }

.vip_page .birth_ben_block {
    width: 100%;
}

    .vip_page .birth_ben_block .block {
        width: 100%;
        border-radius: 15px;
        padding: 15px;
        border: 1px solid gray;
    }

    .vip_page .birth_ben_block .birth_title {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto -10px;
        padding: 0 10px;
        background: #fff;
        position: relative;
        display: block;
        z-index: 10;
        color: #ed1c24;
        font-size: 16px;
        font-weight: 600;
    }

    .vip_page .birth_ben_block .block ul li {
        margin-top: 5%;
        font-size: 14px;
        font-weight: 500;
        color: #000;
        margin-bottom: 10px;
    }

.vip_page .btn {
    width: 100%;
    text-align: center;
    background: #ed1c24;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    border-radius: 10px;
}

.vipbg_con {
    width: 100%;
    background-image: url(/Resources/Mobile/Image/login/bg1.png) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background: none;
}

.vip_page .cur_vip_blockb {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .4);
    padding: 15px;
    gap: 20px;
    background-color: #555;
}

    .vip_page .cur_vip_blockb .cur_top {
        width: 100%;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }

        .vip_page .cur_vip_blockb .cur_top img {
            width: 30px;
        }

        .vip_page .cur_vip_blockb .cur_top .colb {
            flex: 1;
            justify-content: flex-start;
            align-items: flex-start;
        }

            .vip_page .cur_vip_blockb .cur_top .colb p {
                font-size: 11px;
                color: #fff;
                font-weight: 700;
            }

        .vip_page .cur_vip_blockb .cur_top .cur_vip {
            width: 100%;
            max-width: 70%;
            border-radius: 15px;
        }

    .vip_page .cur_vip_blockb .cur_status {
        width: 100%;
        gap: 5px;
    }

        .vip_page .cur_vip_blockb .cur_status .cur_titleb {
            font-size: 10px;
            font-weight: 600;
            color: #fff;
        }

.vip_page .vip_progress_bar {
    width: 100%;
}

.vip_page .cur_vip_blockb .cur_status .ben_rowb {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

    .vip_page .cur_vip_blockb .cur_status .ben_rowb .ben_col {
        flex: 1;
        align-items: center;
        gap: 8px;
    }

        .vip_page .cur_vip_blockb .cur_status .ben_rowb .ben_col .icon {
            width: 40px;
            height: 40px;
            padding: 10px;
            border-radius: 999rem;
            background: #ed1c24;
            filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.44));
        }

            .vip_page .cur_vip_blockb .cur_status .ben_rowb .ben_col .icon img {
                width: 100%;
            }

        .vip_page .cur_vip_blockb .cur_status .ben_rowb .ben_col p {
            font-size: 10px;
            font-weight: 700;
            color: #dfe5ea;
        }

.vip_page .birth_ben_block {
    width: 100%;
}

    .vip_page .birth_ben_block .birth_titleb {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto -10px;
        padding: 0 10px;
        background: #242225;
        position: relative;
        display: block;
        z-index: 10;
        color: #ed1c24;
        font-size: 16px;
        font-weight: 600;
    }

    .vip_page .birth_ben_block .blockb {
        width: 100%;
        border-radius: 15px;
        padding: 15px;
        border: 1px solid red;
    }

        .vip_page .birth_ben_block .blockb ul li {
            font-size: 12px;
            font-weight: 500;
            color: #dfe5ea;
            margin-bottom: 5px;
        }

table.shrink-table {
    min-width: 0px !important;
    margin-bottom: 15px;
}

.login_banner_wrap .row {
    width: 100%;
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
    border-radius: 0 0 35px 35px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .4);
    position: relative;
}

.header_center img {
    width: 28%;
    max-width: 100px;
}

.header_center .banner_img {
    transform: translateY(30px);
    width: 40%;
    max-width: 200px
}

.cata, .about, .tnc, .faq, .ong, .upc, .past, .profile, .password, .bankDetails, .category, .preference {
    margin-top: 20%;
}

.shareButtons {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-buttons button {
    border: none;
    margin: 5px 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Smooth transition */
}

/* Social Media Colors */
.facebook {
    background-color: #3b5998;
    color: white;
}
/* Facebook Blue */
.messenger {
    background-color: #00b2ff;
    color: white;
}
/* Messenger Blue */
.telegram {
    background-color: #0088cc;
    color: white;
}
/* Telegram Blue */
.whatsapp {
    background-color: #25d366;
    color: white;
}
/* WhatsApp Green */
.download {
    background-color: #ff0000;
    color: white;
}
/* Download Red */

/* Icon Colors */
.floating-btn i, .social-buttons button i {
    color: white;
}

/* Hover effect for buttons */
.social-buttons button:hover {
    opacity: 0.9;
}

.tt_select .select_target {
    align-content: center;
    padding: 0 10px;
}

.error_con {
    padding: 0;
    display: flex;
    min-height: 100vh
}

.error_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
    align-items: center;
    padding: 30px
}

    .error_wrap img {
        width: 60%;
        max-width: 300px;
        z-index: 10
    }

    .error_wrap p {
        font-size: 14px;
        color: #000;
        font-weight: 400;
        text-align: center;
    }

    .error_wrap .btn {
        color: #fff;
        background: #ed1c24;
        border: 1px solid #ed1c24;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: .7rem;
        padding: 10px;
        border-radius: 10px;
    }

    .error_wrap .error_title {
        font-size: 22px;
        color: #000;
        font-weight: 600;
    }

    .error_wrap #svgWrap_1, .error_wrap #svgWrap_2 {
        position: absolute;
        width: 600px;
        max-width: 90%;
        top: 15%
    }

    .error_wrap #svgWrap_1, .error_wrap #svgWrap_2, .error_wrap div {
        animation: hueRotate 6s ease-in-out 3s infinite
    }

    .error_wrap #id1_1, .error_wrap #id2_1, .error_wrap #id3_1 {
        stroke: #ff005d;
        stroke-width: 3px;
        fill: rgba(0,0,0,0);
        filter: url(#glow)
    }

    .error_wrap #id1_2, .error_wrap #id2_2, .error_wrap #id3_2 {
        stroke: #12000a;
        stroke-width: 3px;
        fill: rgba(0,0,0,0);
        filter: url(#glow)
    }

    .error_wrap #id3_1 {
        stroke-dasharray: 940px;
        stroke-dashoffset: -940px;
        animation: drawLine3 2.5s ease-in-out 0s forwards,flicker3 4s linear 4s infinite
    }

    .error_wrap #id2_1 {
        stroke-dasharray: 735px;
        stroke-dashoffset: -735px;
        animation: drawLine2 2.5s ease-in-out .5s forwards,flicker2 4s linear 4.5s infinite
    }

    .error_wrap #id1_1 {
        stroke-dasharray: 940px;
        stroke-dashoffset: -940px;
        animation: drawLine1 2.5s ease-in-out 1s forwards,flicker1 4s linear 5s infinite
    }

.disabled-click {
    color: #555; /* Dark gray */
    pointer-events: none; /* Disable clicks */
    text-decoration: none; /* Remove underline */
    cursor: default; /* Change cursor to indicate non-clickable */
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

.image-overlay {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 88%;
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: none;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.maintenance-text {
    color: #fff; /* White text */
    font-size: 13px; /* Adjust size as needed */
    font-weight: bold;
    opacity: 0.9; /* Slight transparency if desired */
}

.table-container {
    overflow-x: auto;
    white-space: nowrap;
}

.currency_btn {
    padding: 5px 10px !important;
    background: white !important;
    border: 2px solid rgba(0, 0, 0, 0);
}

    .currency_btn img {
        width: 20px;
    }

.language_btn {
    padding: 5px 10px !important;
    background: white !important;
    border: 2px solid rgba(0, 0, 0, 0);
}

    .language_btn img {
        width: 20px;
        filter: grayscale(1);
    }

.bottom_login_wrap {
    width: 100%;
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px 25px;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    z-index: 999
}

    .bottom_login_wrap p {
        font-size: 12px;
        font-weight: 600;
        color: #fff
    }

    .bottom_login_wrap .login_btn {
        background: #fff;
        color: #ed1c24;
        font-size: 12px;
        font-weight: 600;
        padding: 8px 15px;
        border-radius: 10px
    }

    .bottom_login_wrap .bottom_close {
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        right: 0;
        overflow: hidden;
        text-align: end;
        color: #ed1c24
    }

        .bottom_login_wrap .bottom_close span {
            display: block;
            position: relative;
            z-index: 999;
            font-size: 12px;
            font-weight: 800;
            padding-right: 4px
        }

        .bottom_login_wrap .bottom_close::after {
            content: "";
            position: absolute;
            transform: translate(-50%, -88%);
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 999rem
        }

.tnc-vip {
    color: #ed1c24;
    font-size: 14px;
    margin-top: 5%;
    text-align: center;
}

.game_flex {
    display: block;
}

.full-width-form {
    width: 100%;
}

.row .login_banner_wrap {
    width: 100%;
    background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.4)
}

    .row .login_banner_wrap .banner_txt {
        width: 28%;
        max-width: 100px;
        margin-top: -18px
    }

    .row .login_banner_wrap .banner_img {
        transform: translateY(30px);
        width: 40%;
        max-width: 200px;
        margin-top: -28px
    }

.login_ads_text {
    margin-top: 10%;
    color: white;
    text-align: justify;
}

.login_ads_text1 {
    font-size: 12px;
}

.login_ads_text2 {
    font-size: 25px;
    font-weight: bold;
}

.login_ads_text3, .login_ads_text4 {
    font-size: 20px;
    font-weight: bold;
}

.index_wrap .cate_nav_row {
    width: 100%;
    padding: 3px;
    border-radius: 999rem;
    overflow: auto;
    align-items: stretch;
    gap: 8px;
    overflow: auto
}

    .index_wrap .cate_nav_row .cate_nav {
        flex: 1;
        min-width: 90px;
        max-width: 120px;
        padding: 9px 2px;
        border-radius: 999rem;
        text-align: center;
        color: #939598;
        font-size: 10px;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .4s;
        white-space: nowrap;
        cursor: pointer
    }

    .index_wrap .cate_nav_row .nav_active {
        color: #fff;
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important
    }

.index_wrap .lobby_sp_row .game_block .special_table {
    width: 100%;
    /*overflow: auto;*/
    margin-bottom: 25%;
}

    .index_wrap .lobby_sp_row .game_block .special_table table {
        background: #f1f2f2;
        width: 100%;
        /*min-width: 500px;*/
        border-collapse: collapse;
        border-spacing: 0;
        border-radius: 15px;
        overflow: hidden
    }

    .index_wrap .lobby_sp_row .game_block .special_table thead {
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
    }

    .index_wrap .lobby_sp_row .game_block .special_table table th, .index_wrap .lobby_sp_row .game_block .special_table table td {
        padding: 10px;
        font-size: 11px;
        text-align: center
    }

    .index_wrap .lobby_sp_row .game_block .special_table table th, table th {
        color: #fff;
        background: #ed1c24;
        font-weight: 700;
        white-space: nowrap;
        border-bottom: 1px solid #fff
    }

        .index_wrap .lobby_sp_row .game_block .special_table table th:first-child, table th:first-child {
            border-radius: 15px 0 0 0
        }

        .index_wrap .lobby_sp_row .game_block .special_table table th:last-child, table th:last-child {
            border-radius: 0 15px 0 0
        }

    .index_wrap .lobby_sp_row .game_block .special_table table td {
        color: #000;
        font-weight: 500
    }

.snake-container {
    position: fixed;
    bottom: 45px;
    left: 12px;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    opacity: 1;
    transform: scale(1);
    animation: growEffect .8s ease-out
}

    .snake-container.hide {
        opacity: 0;
        transform: scale(0.8);
        pointer-events: none;
        transition: opacity .5s ease,transform .5s ease
    }

    .snake-container .floating-image {
        max-width: 100%;
        height: auto;
        max-width: 120px
    }

    .snake-container .image-link {
        display: inline-block;
        text-decoration: none;
        cursor: pointer
    }

    .snake-container .close-button {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: #8b0303;
        border: 2px solid #ffb26f;
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: auto;
        font-weight: bold;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0,0,0,.1);
        transition: background-color .2s ease
    }

        .snake-container .close-button:hover {
            background-color: #d93636
        }

.pager-nav {
    margin: 16px 0;
}

    .pager-nav span {
        display: inline-block;
        padding: 10px 15px;
        margin: 1px;
        cursor: pointer;
        font-size: 14px;
        background-color: #58595b;
        border-radius: 3px;
        box-shadow: 0 1px 1px rgba(0,0,0,.04);
        color: white;
    }

        .pager-nav span:hover,
        .pager-nav .pg-selected {
            background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
        }

.form_title {
    font-size: 14px;
    color: #000;
    font-weight: 700
}

.promo_col {
    width: 100%;
    gap: 10px
}

.promotion_grid {
    width: 100%;
    gap: 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .promotion_grid .promo_block {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
        border-radius: 99rem;
        font-size: 10px;
        font-weight: 600;
        color: #6e6e6e;
        border: 1px solid #b0b0b0;
        cursor: pointer;
        background: #fff
    }

    .promotion_grid .active {
        background: linear-gradient(270deg, #e7242c, #bc1e2c);
        border: 1px solid #bc1e2c;
        color: #fff
    }

.full-width-textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 15px;
}

.form_title {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo_col {
    width: 100%;
    gap: 10px
}

.promotion_grid {
    width: 100%;
    gap: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 10px
}

    .promotion_grid .promo_block {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
        border-radius: 99rem;
        font-size: 11px;
        font-weight: 600;
        color: #6e6e6e;
        border: 1px solid #b0b0b0;
        cursor: pointer;
        background: #fff;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .promotion_grid .active {
        background: linear-gradient(270deg, #e7242c, #bc1e2c);
        border: 1px solid #bc1e2c;
        color: #fff
    }


.language_list {
    position: absolute;
    width: 280px;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0px 0px 10px #000;
    border-radius: 7px;
    display: flex;
    z-index: 10;
    transition: .5s
}

    .language_list .lang_title {
        width: 90%;
        margin: 0 auto;
        color: red;
        font-size: 13px;
        font-weight: 600;
        padding: 12px;
        border-bottom: 1px dashed gray;
        align-items: center
    }

        .language_list .lang_title i {
            color: #000;
            margin-left: auto
        }

    .language_list .language_item {
        width: 100%;
        padding: 10px 15px;
        color: #fff;
        font-size: 12px;
        gap: 5px;
        justify-content: center;
        align-items: center
    }

        .language_list .language_item img {
            width: 30px
        }

        .language_list .language_item .lang_infor_col {
            flex: 1;
            align-items: flex-start;
            gap: 4px
        }

            .language_list .language_item .lang_infor_col .lang_cntry {
                font-size: 12px;
                color: gray;
                font-weight: 600;
                font-style: italic
            }

            .language_list .language_item .lang_infor_col .lang_selection {
                width: 100%;
                gap: 5px;
                align-items: center
            }

                .language_list .language_item .lang_infor_col .lang_selection .lang {
                    font-size: 12px;
                    font-weight: 500;
                    cursor: pointer;
                    transition: .4s;
                    padding: 5px 8px;
                    border-radius: 6px;
                    color: #818284
                }

.lang_select .language_item .lang_infor_col .lang_selection span {
    width: unset !important
}

.language_list .language_item .lang_infor_col .lang_selection .lang:hover {
    color: #b4a280
}

.language_list .language_item .lang_infor_col .lang_selection .lang.active {
    background: #ed1c24;
    color: #fff;
    box-shadow: 0px 0px 8px inset rgba(0,0,0,.2)
}

.language_active {
    right: 10px
}

.lang_select .language_list .lang_title {
    width: 90%;
    margin: 0 auto;
    color: red;
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
    border-bottom: 1px dashed gray;
    align-items: center
}

    .lang_select .language_list .lang_title i {
        color: #000;
        margin-left: auto
    }

.lang_select .language_item {
    width: 100%;
    color: #fff;
    font-size: 12px;
    gap: 5px;
    justify-content: center;
    align-items: center
}

    .lang_select .language_item img {
        width: 30px
    }

    .lang_select .language_item .lang_infor_col {
        align-items: flex-start;
        gap: 4px
    }

        .lang_select .language_item .lang_infor_col .lang_cntry {
            font-size: 12px;
            color: gray;
            font-weight: 600;
            font-style: italic
        }

        .lang_select .language_item .lang_infor_col .lang_selection {
            width: 100%;
            gap: 5px;
            align-items: center
        }

            .lang_select .language_item .lang_infor_col .lang_selection .lang {
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: .4s;
                padding: 5px 8px;
                border-radius: 6px;
                color: #818284
            }

                .lang_select .language_item .lang_infor_col .lang_selection .lang:hover {
                    color: #b4a280
                }

                .lang_select .language_item .lang_infor_col .lang_selection .lang.active {
                    background: #ed1c24;
                    color: #fff;
                    box-shadow: 0px 0px 8px inset rgba(0,0,0,.2)
                }

.language_active {
    right: 10px
}

.lang_selection_wrapper {
    width: 100%;
}

.lang_row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 5px;
    gap: 5px;
}

    .lang_row .lang {
        flex: 1;
        text-align: center;
    }

.floating-banner {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    animation: floatY 3s ease-in-out infinite
}

    .floating-banner a {
        display: block
    }

    .floating-banner img {
        width: 140px;
        height: auto;
        border-radius: 10px;
        /*box-shadow: 0 8px 16px rgba(0,0,0,.2);*/
        display: block
    }

    .floating-banner .close {
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
        width: 30px;
        cursor: pointer
    }

@media(max-width: 768px) {
    .floating-banner {
        left: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
        animation: none
    }

        .floating-banner img {
            width: 100px
        }
}

@keyframes floatY {
    0% {
        transform: translateY(-50%) translateY(0)
    }

    50% {
        transform: translateY(-50%) translateY(-10px)
    }

    100% {
        transform: translateY(-50%) translateY(0)
    }
}

.game_schedule_table_wrap {
    overflow-x: auto;
    /*    margin-top: 1rem;*/
}

.game-schedule {
    width: 100%;
    /*border-collapse: collapse;*/
    text-align: center;
    font-family: sans-serif;
}

    .game-schedule thead th {
        background-color: #d60000;
        color: #fff;
        font-weight: bold;
        font-size: 12px;
    }

    .game-schedule td,
    .game-schedule th {
        border: 1px solid #ccc;
        padding: 10px;
        font-size: 12px;
    }

    .game-schedule tfoot td {
        font-weight: bold;
        font-size: 12px;
    }

.matchSwiper {
    width: 100%
}

    .matchSwiper .swiper-slide {
        width: 100%;
        display: flex !important;
        flex-direction: column
    }

    .matchSwiper .match_bg {
        width: 100%;
        border-radius: 15px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        position: absolute;
        height: 100%
    }

    .matchSwiper .match_block {
        border-radius: 10px;
        width: 100%;
        padding: 30px;
        justify-content: center;
        align-items: center;
        z-index: 9;
        position: relative
    }

        .matchSwiper .match_block .team {
            width: -moz-fit-content;
            width: fit-content;
            align-items: center
        }

            .matchSwiper .match_block .team img {
                width: 60%;
                max-width: 180px
            }

            .matchSwiper .match_block .team span {
                color: #fff;
                font-size: 10px;
                font-weight: 600
            }

        .matchSwiper .match_block .date p {
            font-size: 14px;
            color: #fff;
            font-weight: 600
        }

        .matchSwiper .match_block .date span {
            font-size: 10px;
            color: #fff;
            width: 100%;
            text-align: center;
            white-space: nowrap;
            font-weight: 600
        }

.bracket {
    background: url(../../web/images/fifa2025/stadium.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 20px;
    overflow: auto;
    display: flex;
    flex-direction: column
}

    .bracket h2 {
        margin-bottom: 10px;
        font-size: 18px;
        background: url(../../web/images/fifa2025/gold.jpg);
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(0,0,0,0);
        width: 100%;
        text-align: center
    }

    .bracket .medal {
        width: 50%;
        margin: 0 auto
    }

.match_table {
    padding: 15px 0;
    height: 700px;
    flex: 1;
    gap: 10px;
    justify-content: space-between;
    align-items: center
}

    .match_table .left {
        flex: 1;
        gap: 10px;
        max-width: 200px;
        height: 650px;
        justify-content: center
    }

    .match_table .right {
        flex: 1;
        justify-content: center;
        gap: 10px;
        height: 650px;
        max-width: 200px
    }

    .match_table .table_col {
        width: -moz-fit-content;
        width: fit-content;
        justify-content: space-between;
        align-items: center;
        height: 100%
    }

        .match_table .table_col .table_block {
            width: -moz-fit-content;
            width: fit-content;
            gap: 35px;
            justify-content: center;
            align-items: center
        }

            .match_table .table_col .table_block .circle {
                width: 30px;
                height: 30px;
                border-radius: 999rem;
                border: 2px solid #fff;
                position: relative;
                font-size: 16px;
                font-weight: 800;
                text-align: center;
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 3px
            }

                .match_table .table_col .table_block .circle img {
                    width: 100%
                }

    .match_table .table_out .table_block {
        height: 120px
    }

        .match_table .table_out .table_block .circle_top::after {
            content: "";
            position: absolute;
            top: 75%;
            transform: translateY(-50%);
            right: -110%;
            width: 110%;
            height: 20px;
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
            border-top-right-radius: 10px
        }

        .match_table .table_out .table_block .circle img {
            width: 100%;
            height: auto;
            -o-object-fit: cover;
            object-fit: cover
        }

        .match_table .table_out .table_block .circle_bottom::after {
            content: "";
            position: absolute;
            top: 25%;
            transform: translateY(-50%);
            right: -110%;
            width: 110%;
            height: 20px;
            border-bottom: 1px solid #fff;
            border-right: 1px solid #fff;
            border-bottom-right-radius: 10px
        }

    .match_table .table_right_out .table_block {
        height: 120px
    }

        .match_table .table_right_out .table_block .circle_top::after {
            content: "";
            position: absolute;
            top: 75%;
            transform: translateY(-50%);
            left: -110%;
            width: 110%;
            height: 20px;
            border-top: 1px solid #fff;
            border-left: 1px solid #fff;
            border-top-left-radius: 10px
        }

        .match_table .table_right_out .table_block .circle_bottom::after {
            content: "";
            position: absolute;
            top: 25%;
            transform: translateY(-50%);
            left: -110%;
            width: 110%;
            height: 20px;
            border-bottom: 1px solid #fff;
            border-left: 1px solid #fff;
            border-bottom-left-radius: 10px
        }

    .match_table .table_middle_left .table_block {
        height: 120px
    }

        .match_table .table_middle_left .table_block .circle_top::after {
            content: "";
            position: absolute;
            top: 200%;
            transform: translateY(-50%);
            right: -127%;
            width: 115%;
            height: 297%;
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
            border-top-right-radius: 10px
        }

        .match_table .table_middle_left .table_block .circle_bottom::after {
            content: "";
            position: absolute;
            top: -100%;
            transform: translateY(-50%);
            right: -120%;
            width: 110%;
            height: 297%;
            border-bottom: 1px solid #fff;
            border-right: 1px solid #fff;
            border-bottom-right-radius: 10px
        }

    .match_table .table_semi_left .table_block {
        height: 45%
    }

        .match_table .table_semi_left .table_block .circle_top::after {
            content: "";
            position: absolute;
            top: 375%;
            transform: translateY(-50%);
            right: -110%;
            width: 110%;
            height: 646%;
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
            border-top-right-radius: 10px
        }

        .match_table .table_semi_left .table_block .circle_bottom::after {
            content: "";
            position: absolute;
            top: -273%;
            transform: translateY(-50%);
            right: -110%;
            width: 110%;
            height: 646%;
            border-bottom: 1px solid #fff;
            border-right: 1px solid #fff;
            border-bottom-right-radius: 10px
        }

    .match_table .table_final_left .table_block {
        height: 100%
    }

    .match_table .table_middle_right .table_block {
        height: 120px
    }

        .match_table .table_middle_right .table_block .circle_top::after {
            content: "";
            position: absolute;
            top: 200%;
            transform: translateY(-50%);
            left: -127%;
            width: 115%;
            height: 297%;
            border-top: 1px solid #fff;
            border-left: 1px solid #fff;
            border-top-left-radius: 10px
        }

        .match_table .table_middle_right .table_block .circle_bottom::after {
            content: "";
            position: absolute;
            top: -100%;
            transform: translateY(-50%);
            left: -120%;
            width: 110%;
            height: 297%;
            border-bottom: 1px solid #fff;
            border-left: 1px solid #fff;
            border-bottom-left-radius: 10px
        }

    .match_table .table_semi_right .table_block {
        height: 45%
    }

        .match_table .table_semi_right .table_block .circle_top::after {
            content: "";
            position: absolute;
            top: 375%;
            transform: translateY(-50%);
            left: -110%;
            width: 110%;
            height: 646%;
            border-top: 1px solid #fff;
            border-left: 1px solid #fff;
            border-top-left-radius: 10px
        }

        .match_table .table_semi_right .table_block .circle_bottom::after {
            content: "";
            position: absolute;
            top: -273%;
            transform: translateY(-50%);
            left: -110%;
            width: 110%;
            height: 646%;
            border-bottom: 1px solid #fff;
            border-left: 1px solid #fff;
            border-bottom-left-radius: 10px
        }

    .match_table .table_final_right .table_block {
        height: 100%
    }

.group_row {
    width: 100%;
    gap: 10px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.group_block {
    width: 29%;
    max-width: 120px;
    padding: 0 10px;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    align-items: center
}

    .group_block .title {
        font-size: 14px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
        width: 100%;
        text-align: center
    }

    .group_block .team_grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

        .group_block .team_grid .team {
            width: 100%
        }

            .group_block .team_grid .team img {
                width: 100%
            }

.floating-banner {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    animation: floatY 3s ease-in-out infinite
}

    .floating-banner a {
        display: block
    }

    .floating-banner img {
        width: 140px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0,0,0,.2);
        display: block
    }

@media(max-width: 768px) {
    .floating-banner {
        left: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
        animation: none
    }

        .floating-banner img {
            width: 100px
        }
}

@keyframes floatY {
    0% {
        transform: translateY(-50%) translateY(0)
    }

    50% {
        transform: translateY(-50%) translateY(-10px)
    }

    100% {
        transform: translateY(-50%) translateY(0)
    }
}

.daily-task-wrapper {
    /*background: #ed1c24;*/
    position: relative;
    /*margin-top: 25px;*/
    border-radius: 15px;
    padding: 0 25px 25px 25px;
    color: #58595b;
    overflow: hidden;
}

    .daily-task-wrapper h2 {
        margin-bottom: 10px;
    }

    .daily-task-wrapper .title {
        font-size: 14px !important;
        text-align: justify;
        font-weight: 600;
    }

    .daily-task-wrapper p {
        font-size: 12px;
        text-align: justify;
        font-weight: 600;
    }

    .daily-task-wrapper ol {
        padding-left: 1.5em; /* or 1em for tighter list */
        margin-left: 0;
        list-style-position: outside;
    }

    .daily-task-wrapper ol, .daily-task-wrapper li {
        font-size: 12px;
        text-align: justify !important;
        font-weight: 600;
        text-align: left;
        margin-bottom: 0.5em; /* optional for spacing */
    }

.daily-task-img {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 50%;
    transform: translate(-50%,0);
}

.task_wrap {
    width: 96%;
    margin: 0 auto
}

#task-list, .daily-task-task-container {
    margin-top: 25px
}

#daily-progress-wrapper {
    position: relative;
    width: calc(100% - 70px);
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    margin: 50px auto
}

#daily-progress-fill {
    position: absolute;
    height: 100%;
    width: 0;
    background: #ed1c24;
    border-radius: 10px;
    transition: width .3s
}

#daily-indicator {
    position: absolute;
    top: -25px;
    left: -35px;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #ed1c24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: left .3s;
    margin-left: -25px;
}

.daily_task_treasure {
    position: absolute;
    top: -15px;
    padding: 10px;
    border-radius: 50%;
    height: 40px;
    aspect-ratio: 437/417;
    background: #ed1c24;
    filter: grayscale(100%);
    transition: filter .3s
}

.treasure-wrapper {
    top: -25px;
    width: 60px;
    height: 60px;
    position: absolute;
    transition: .5s
}

.treasure-active {
    filter: none !important;
    cursor: pointer
}

    .treasure-active::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 10px;
        height: 10px;
        background: red;
        border-radius: 50%;
        box-shadow: 0 0 2px rgba(0,0,0,.3)
    }

.claimed-treasure {
    filter: none !important;
    border-radius: 50%;
    box-shadow: 0 0 0 2px gold;
    opacity: 1;
    animation: .8s ease-out forwards aura-pulse;
    pointer-events: none
}

@keyframes aura-pulse {
    0% {
        box-shadow: 0 0 0 2px gold
    }

    50% {
        box-shadow: 0 0 0 16px rgba(255,215,0,0)
    }

    100% {
        box-shadow: none
    }
}

.claimed-treasure::after {
    content: unset
}

.treasure-img {
    width: 100%;
    height: auto;
    aspect-ratio: 437/417
}

.treasure-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    z-index: 9999;
    text-align: center
}

.big-treasure-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0px 0px 23px gold)
}

.treasure-popup {
    background: linear-gradient(to bottom,#ab000a,#ab000a,#6f0115);
    padding: 45px;
    border: 2px solid #ed1c24;
    color: #fff;
    border-radius: 8px;
    max-width: 90%;
    box-shadow: 0 2px 10px rgba(0,0,0,.3)
}

.task-circle {
    border: 1px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: border-color .3s
}

.task-item.completed .task-circle::after {
    content: '';
    background: url(../image/kk_event/tick.png) 0 0/contain no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 8;
    width: 70px;
    height: 54px
}

.task-circle-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap
}

.task-name {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}

.task-name-container {
    flex: 1;
}

.task-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #c6c5c6
}

.task-link {
    padding: 7px 30px;
    border-radius: 999rem;
    background: #ed1c24;
    color: #fff;
    margin-left: auto;
}

.daily-score-wrapper {
    /*background: #ed1c24;*/
    position: relative;
    text-align: center;
    /*margin-top: 25px;*/
    border-radius: 15px;
    padding: 25px;
    color: #58595b;
    overflow: hidden
}

.daily-score-record {
    text-align: center;
    width: 100%
}

    .daily-score-record th {
        border-bottom: 1px solid #fff;
        padding-bottom: 10px
    }

    .daily-score-record td {
        padding: 10px 0
    }

.button-section button {
    background-color: #e3e3e3 !important; /* beige like in your screenshots */
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    color: black !important;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto; /* prevent stretching */
    min-width: 100px; /* 👈 fixed baseline width */
    max-width: 110px; /* optional */
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: none;
}

    /* Hover state: subtle shadow and color change */
    .button-section button:hover {
        background: linear-gradient(79deg, #f53a3a 0%, #e9242c 49.5%, #cb0c14 100%) !important;
        color: white !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Active state: button pressed effect */
    .button-section button:active {
        background-color: #e0e0e0;
        transform: scale(0.98);
        box-shadow: none;
    }

.kk-table {
    /*    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/

    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

    /* Table Headers */
    .kk-table th {
        background-color: #f44336; /* red tone */
        color: white;
        text-align: center;
        padding: 12px 15px;
        border: 1px solid #ddd;
        width: 25% !important;
    }

    /* Table Cells */
    .kk-table td {
        padding: 12px 15px;
        text-align: center;
        border: 1px solid #ddd;
        width: 25% !important;
    }

    .kk-table td,
    .kk-table th {
        white-space: normal; /* Allow wrapping */
        word-break: break-word; /* Break long words if needed */
        overflow-wrap: break-word; /* Ensures break in all browsers */
        text-align: center; /* Optional: center text in cell */
        padding: 8px; /* Optional: spacing for readability */
    }

    .kk-table table th:first-child, table th:first-child {
        border-radius: 15px 0 0 0;
        width: 25% !important;
    }

/* Section Titles */
.kk-section-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
    border-left: 5px solid #f44336;
    padding-left: 10px;
}

.social-share-btns {
    display: flex;
    align-items: center;
    margin-right: -12px;
    margin-left: auto;
}

    .social-share-btns a {
        display: inline-block;
    }

.social-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

    .social-icon:hover {
        transform: scale(1.1);
    }