@import"https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap";

@font-face {
    font-family: heiti;
    src: url("../Fonts/heiti.otf")
}

@font-face {
    font-family: garamond;
    src: url("../Fonts/garamond.ttf")
}

@font-face {
    font-family: "Noto";
    src: url("../Fonts/NotoSansTC-Regular.otf")
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Noto"
}

button {
    cursor: pointer;
}

.btn1 {
    cursor: pointer;
}

.popup_btn {
    cursor: pointer;
}


body, html {
    background: #000
}

a {
    text-decoration: none
}

.row {
    display: flex;
    align-items: center
}

.col {
    display: flex;
    flex-direction: column
}

.bling {
    position: relative;
    overflow: hidden
}

    .bling::after {
        content: "";
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
        width: 20px;
        height: 100px;
        position: absolute;
        left: 0;
        top: 50%;
        rotate: 65deg;
        translate: 0 -50%;
        -webkit-animation: bling 3s infinite;
        animation: bling 3s infinite
    }

@-webkit-keyframes bling {
    0% {
        left: -150%
    }

    20% {
        left: 150%
    }

    100% {
        left: 150%
    }
}

@keyframes bling {
    0% {
        left: -150%
    }

    20% {
        left: 150%
    }

    100% {
        left: 150%
    }
}

.btn1 {
    box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(110,80,20,.4),inset 0 -2px 5px 1px #8a0000,inset 0 -1px 1px 3px #ffb820;
    background-image: linear-gradient(#f16e00, #b41e00);
    border: 1px solid #a55d07;
    padding: 8px 15px 10px;
    color: #fff;
    border-radius: 99px;
    cursor: pointer
}

    .btn1:hover {
        filter: contrast(1.5);
        transform: scale(1.05)
    }

.btn2 {
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(20,20,20,.4),inset 0 -2px 5px 1px #646464,inset 0 -1px 1px 3px #dcdcdc;
    background-image: linear-gradient(160deg, #969696, #b3b3b3, #ffffff, #b8b8b8, #929292);
    border: 1px solid #9b9b9b;
    padding: 8px 15px 10px;
    border-radius: 99px;
    color: #3c3c3c
}

    .btn2:hover {
        filter: contrast(1.5);
        transform: scale(1.05)
    }

.btn3 {
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(110,80,20,.4),inset 0 -2px 5px 1px #8b4208,inset 0 -1px 1px 3px #fae385;
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    padding: 8px 15px 10px;
    border-radius: 99px;
    color: #783205
}

    .btn3:hover {
        filter: contrast(1.5);
        transform: scale(1.05)
    }

.hot_item {
    position: relative
}

    .hot_item::after {
        content: "";
        z-index: 2;
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 30px;
        background: url("../Images/icon/hot2.png");
        background-size: 100% 100%
    }

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 1200px;
    padding-top: 150px;
    width: 100%;
    overflow-x: hidden
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #181717;
    min-width: 1200px
}

    .section .content {
        margin: 0 auto;
        width: 100%;
        max-width: 1200px;
        position: relative
    }

        .section .content h1 {
            color: #fff;
            font-size: 24px;
            position: absolute;
            top: 0;
            left: 0
        }

.header {
    background: #161616;
    background-repeat: no-repeat;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    height: 150px;
}

    .header .logo {
        width: 160px
    }

    .header .content {
        flex: 1
    }

    .header nav {
        align-self: stretch;
        margin-left: auto;
        align-items: stretch;
        padding-top: 10px
    }

        .header nav a {
            color: #a2aabd;
            font-size: 13px;
            margin-left: 25px;
            position: relative
        }

            .header nav a::after {
                content: "";
                height: 3px;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                background: #f16e00;
                display: none
            }

            .header nav a:hover, .header nav .active {
                color: #f16e00
            }

                .header nav a:hover::after, .header nav .active::after {
                    display: block
                }

        .header nav .hot::before {
            content: "";
            height: 30px;
            width: 35px;
            background: url("../Images/icon/hot.png");
            background-size: 100% 100%;
            position: absolute;
            left: 50%;
            top: 5%;
            transform: translateX(-50%)
        }

    .header .header_btm {
        background: #252525;
        font-size: 13px;
        margin-top: auto;
        padding: 5px 0 3px;
        position: relative;
        cursor: pointer;
        color: #a2aabd
    }

        .header .header_btm::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #462523, #a07433, #462523);
            background: linear-gradient(to right, #462523, #f16e00, #462523);
            opacity: .5
        }

        .header .header_btm::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #462523, #a07433, #462523);
            background: linear-gradient(to right, #462523, #f16e00, #462523);
            opacity: .5
        }

        .header .header_btm .datetime span {
            margin-right: 20px
        }

        .header .header_btm .language {
            color: #a2aabd;
            font-size: 12px;
            margin-right: auto;
            padding-left: 20px;
            border-left: solid 1px #d6a799
        }

            .header .header_btm .language img {
                width: 20px;
                margin-right: 5px
            }

            .header .header_btm .language::after {
                content: "";
                width: 0;
                height: 0;
                border-left: 5px solid rgba(0,0,0,0);
                border-right: 5px solid rgba(0,0,0,0);
                border-top: 5px solid #a2aabd;
                margin-left: 10px
            }

        .header .header_btm .language_btn_active::after {
            transform: rotate(180deg)
        }

        .header .header_btm .language_dropdown {
            position: absolute;
            top: 100%;
            left: 177px;
            background: rgba(0,0,0,.8);
            border-radius: 0 0 10px 10px;
            padding: 10px;
            display: none
        }

            .header .header_btm .language_dropdown .language_item {
                color: #d6a799;
                align-items: center;
                padding: 5px
            }

                .header .header_btm .language_dropdown .language_item img {
                    width: 25px;
                    margin-right: 10px
                }

                .header .header_btm .language_dropdown .language_item a {
                    color: #fff;
                    text-align: center;
                    margin: 0;
                    padding: 0 5px
                }

                    .header .header_btm .language_dropdown .language_item a:hover {
                        color: #fff
                    }

        .header .header_btm .language_open {
            display: flex
        }

        .header .header_btm .user_btn, .header .header_btm .balance {
            align-self: center;
            color: #fff;
            font-weight: bold;
            padding: 5px 0px;
            font-size: 12px;
            margin-left: 10px;
            border-radius: 999px;
            position: relative;
            overflow: hidden
        }

            .header .header_btm .user_btn img, .header .header_btm .balance img {
                width: 20px;
                margin-left: 10px;
                margin-right: 10px;
            }

            .header .header_btm .user_btn .overlay, .header .header_btm .balance .overlay {
                display: none;
                position: absolute;
                background-color: #252525;
                right: 30px;
                width: calc(100% - 30px);
                justify-content: center
            }

                .header .header_btm .user_btn .overlay .lds-ellipsis, .header .header_btm .balance .overlay .lds-ellipsis {
                    transform: scale(0.5)
                }

        .header .header_btm .refreshing .overlay {
            display: flex
        }

        .header .header_btm .user_btn::after {
            content: "";
            width: 0;
            height: 0;
            border-left: 5px solid rgba(0,0,0,0);
            border-right: 5px solid rgba(0,0,0,0);
            border-top: 5px solid #fff;
            margin-left: 10px
        }

        .header .header_btm .user_btn_active::after {
            transform: rotate(180deg)
        }

        .header .header_btm .user_menu {
            position: absolute;
            top: 100%;
            right: 442px;
            background: rgba(0,0,0,.8);
            padding: 5px;
            border-radius: 0 0 10px 10px;
            display: none
        }

            .header .header_btm .user_menu span {
                color: #d6a799;
                font-size: 10px;
                padding: 0 10px;
                margin-top: 10px
            }

            .header .header_btm .user_menu a {
                color: #a2aabd;
                padding: 8px 10px;
                width: 100%;
                font-size: 12px;
                border-radius: 3px
            }

                .header .header_btm .user_menu a:hover {
                    color: #fff;
                    background: #1e1e1e
                }

        .header .header_btm .user_menu_active {
            display: flex
        }

        .header .header_btm a {
            margin-right: 20px;
            color: #a2aabd
        }

            .header .header_btm a img {
                width: 25px
            }

        .header .header_btm .header_btn {
            box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(110,80,20,.4),inset 0 -2px 5px 1px #8a0000,inset 0 -1px 1px 3px #ffb820;
            background-image: linear-gradient(#f16e00, #b41e00);
            padding: 5px 15px 7px;
            color: #fff;
            border-radius: 99px;
            margin: 3px 0;
            margin-left: 10px;
            font-size: 14px;
            min-width: 110px;
            text-align: center;
            border: outset 2px #a3612b
        }

            .header .header_btm .header_btn:hover {
                filter: contrast(1.5);
                transform: scale(1.05)
            }

        .header .header_btm .header_btn2 {
            box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(20,20,20,.4),inset 0 -2px 5px 1px #646464,inset 0 -1px 1px 3px #dcdcdc;
            background-image: linear-gradient(160deg, #969696, #b3b3b3, #ffffff, #b8b8b8, #929292);
            border: 1px solid #9b9b9b;
            color: #3c3c3c
        }

        .header .header_btm .header_btn3 {
            box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(110,80,20,.4),inset 0 -2px 5px 1px #8b4208,inset 0 -1px 1px 3px #fae385;
            background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
            border: 1px solid #a55d07;
            color: #551708
        }

.mySwiper {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border-radius: 5px;
    border-bottom: solid 3px #000
}

    .mySwiper .swiper-slide {
        width: 100%;
        justify-content: center;
        background-color: #181717;
        overflow: hidden;
    }

        .mySwiper .swiper-slide img {
            height: 400px
        }

    .mySwiper .swiper-button-next, .mySwiper .swiper-button-prev {
        color: #f16e00
    }

.marquee {
    width: 100%;
    color: #d8d8d8;
    font-size: 12px;
    margin: 5px 0;
    padding: 5px 10px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent)
}

    .marquee img {
        width: 20px;
        margin-right: 10px
    }

    .marquee marquee {
        flex: 1
    }

.index {
    background: url("../Images/index/bg.jpg");
    background-size: cover;
    background-position: bottom
}

    .index .steps {
        padding: 10px 0;
        justify-content: center;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3), transparent)
    }

        .index .steps .step {
            align-items: center;
            margin: 0 20px
        }

            .index .steps .step .scroll {
                margin-right: 20px;
                background: url("../Images/index/step.png");
                background-size: 100% 100%;
                padding: 10px 20px 18px
            }

                .index .steps .step .scroll span {
                    font-size: 20px;
                    color: #3a0e00;
                    font-weight: bold;
                    font-family: "Yeseva One",cursive
                }

            .index .steps .step p {
                color: #fff;
                font-size: 20px;
                font-weight: bold
            }

    .index .best {
        overflow: hidden;
        justify-content: space-between
    }

    .index .best_prod {
        margin-top: 30px;
        padding-top: 20px;
        align-items: stretch;
        position: relative
    }

        .index .best_prod h1 {
            text-align: center;
            font-size: 25px;
            opacity: .6
        }

        .index .best_prod .best_nav {
            margin-top: 30px;
            align-items: flex-start;
            position: absolute;
            bottom: 0px;
            right: 50px;
            z-index: 10;
            align-items: flex-end
        }

            .index .best_prod .best_nav .best_nav_item {
                padding: 10px 20px;
                min-width: 130px;
                background: linear-gradient(rgb(37, 37, 37), rgb(22, 22, 22));
                border-radius: 5px 5px 0 0;
                border-left: solid 3px #f16e00;
                margin-left: 10px;
                filter: saturate(0.5);
                opacity: .8;
                position: relative;
                transition: .2s;
                justify-content: center;
                cursor: pointer
            }

                .index .best_prod .best_nav .best_nav_item img {
                    height: 30px;
                    filter: grayscale(1)
                }

                .index .best_prod .best_nav .best_nav_active, .index .best_prod .best_nav .best_nav_item:hover {
                    filter: none;
                    opacity: 1;
                    padding-bottom: 20px
                }

                    .index .best_prod .best_nav .best_nav_active img, .index .best_prod .best_nav .best_nav_item:hover img {
                        filter: none
                    }

        .index .best_prod .models {
            margin-top: 30px;
            margin-left: 20px;
            position: relative;
            width: 300px;
            z-index: 5
        }

            .index .best_prod .models .model {
                width: 100%;
                transition: .4s;
                opacity: 0;
                position: relative;
                transform: translateY(20px)
            }

                .index .best_prod .models .model img {
                    width: 100%
                }

            .index .best_prod .models .model_active {
                opacity: 1;
                position: absolute;
                left: 0;
                top: 0;
                transform: none
            }

        .index .best_prod .best_info {
            margin-top: 30px;
            width: 150px;
            color: #f8d690;
            font-size: 13px;
            display: none;
            margin-left: 15px;
            margin-right: 30px;
            -webkit-animation: fade-in .3s linear both;
            animation: fade-in .3s linear both;
            position: relative
        }

            .index .best_prod .best_info > * {
                z-index: 2
            }

            .index .best_prod .best_info::after {
                content: "";
                position: absolute;
                right: -120px;
                top: -20px;
                width: 400px;
                height: 300px;
                background-image: url("../Images/index/flag.png");
                background-size: 100% 100%;
                z-index: 1;
                opacity: .5
            }

            .index .best_prod .best_info img {
                width: 120px;
                margin-bottom: 10px
            }

            .index .best_prod .best_info a {
                margin-top: 20px;
                color: #fff;
                text-align: center;
                width: 120px;
                align-self: flex-start
            }

        .index .best_prod .lc_info::after {
            background-image: url("../Images/index/flag_lc.png");
            background-size: 100% 100%
        }

.index_slot {
    background: #181717;
    padding-top: 30px;
    position: relative;
    overflow: hidden;
    border-top: solid 3px #000;
    border-bottom: solid 3px #000;
}

    .index_slot .content {
        position: relative;
        align-items: stretch
    }

    .index_slot .jackpot {
        align-self: flex-end;
        position: relative;
        margin-right: 30px
    }

        .index_slot .jackpot img {
            width: 450px
        }

        .index_slot .jackpot h2 {
            position: absolute;
            bottom: 24%;
            left: 3%;
            width: 100%;
            font-size: 18px;
            letter-spacing: 2px;
            color: #fff;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.88), transparent);
            padding: 5px
        }

        .index_slot .jackpot .jackpot_number {
            position: absolute;
            width: 40%;
            left: 54%;
            transform: translateX(-50%);
            bottom: 13.5%;
            color: #3a0e00;
            font-size: 25px;
            text-align: center;
            border-radius: 5px;
            overflow: hidden
        }

            .index_slot .jackpot .jackpot_number .j_number {
                flex: 1;
                overflow: hidden;
                font-weight: bold;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 25px;
                height: 40px;
                position: relative;
                border-radius: 3px
            }

                .index_slot .jackpot .jackpot_number .j_number .numbers {
                    display: flex;
                    flex-direction: column;
                    position: absolute;
                    top: -80px;
                    left: 0;
                    width: 100%
                }

                    .index_slot .jackpot .jackpot_number .j_number .numbers span {
                        height: 40px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-weight: bold
                    }

    .index_slot .lobby {
        margin-left: 20px;
        /*padding: 20px 0 20px;*/
        flex: 1
    }

        .index_slot .lobby h1 {
            position: static;
            margin-bottom: 20px
        }

        .index_slot .lobby .game_nav {
            margin-bottom: 20px;
            border-bottom: solid 1px gray
        }

            .index_slot .lobby .game_nav .nav_item {
                border: solid 1px #f16e00;
                border-bottom: 0;
                color: #f16e00;
                border-radius: 3px 3px 0 0;
                padding: 7px 10px;
                font-size: 12px;
                margin-right: 15px;
                cursor: pointer
            }

                .index_slot .lobby .game_nav .nav_item:hover, .index_slot .lobby .game_nav .nav_active {
                    background: linear-gradient(#f16e00, #b41e00);
                    color: #fff;
                    border-color: rgba(0,0,0,0)
                }

            .index_slot .lobby .game_nav a {
                margin-left: auto;
                font-size: 12px;
                color: gray
            }

        .index_slot .lobby .games {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-gap: 10px;
            display: none
        }

            .index_slot .lobby .games .game {
                border-radius: 5px;
                overflow: hidden;
                position: relative;
                transition: .3s;
                margin-bottom: 10px
            }

                .index_slot .lobby .games .game img {
                    width: 100%;
                    height: 120px;
                }

                .index_slot .lobby .games .game .game_name {
                    background: #000;
                    padding: 10px 15px;
                    color: #c8c8c8;
                    font-size: 12px;
                    border-bottom: solid 2px #f16e00;
                    border-radius: 0 0 5px 5px;
                    z-index: 2;
                    transition: .3s;
                    flex: 1;
                }

                .index_slot .lobby .games .game .hover {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,.5);
                    align-items: center;
                    padding-top: 10px;
                    transform: translateY(100%);
                    transition: .3s
                }

                    .index_slot .lobby .games .game .hover a {
                        width: 80%;
                        text-align: center;
                        color: #fff;
                        background: linear-gradient(#f16e00, #b41e00);
                        font-size: 12px;
                        padding: 5px;
                        margin-top: 50px;
                        border-radius: 5px
                    }

                        .index_slot .lobby .games .game .hover a:nth-child(2) {
                            background: #646464
                        }

                .index_slot .lobby .games .game:hover {
                    transform: translateY(-5px)
                }

                    .index_slot .lobby .games .game:hover .hover {
                        transform: none
                    }

                    .index_slot .lobby .games .game:hover .game_name {
                        filter: brightness(2)
                    }

        .index_slot .lobby .recommended {
            display: grid
        }

.cards {
    padding: 40px 0;
    background: url("../Images/index/card_bg.jpg");
    background-position: bottom
}

    .cards .content {
        padding: 70px 0 20px;
        justify-content: center;
        align-items: stretch;
        gap: 20px
    }

        .cards .content h1 {
            width: 100%;
            text-align: center
        }

        .cards .content .card {
            color: #fff;
            width: 200px;
            border-radius: 10px;
            transition: .3s;
            position: relative;
            overflow: hidden;
            transform: perspective(500px) rotateX(5deg) rotateY(10deg);
            margin: 0 -10px
        }

            .cards .content .card .card_img {
                width: 100%;
                border-radius: 10px;
                transition: .3s
            }

            .cards .content .card a {
                font-size: 14px;
                background: rgba(0,0,0,.5);
                color: #fff;
                font-weight: bold;
                font-size: 20px;
                position: absolute;
                left: 0%;
                top: 0%;
                height: 100%;
                width: 100%;
                opacity: 0;
                transition: .2s;
                z-index: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                -webkit-backdrop-filter: blur(5px);
                backdrop-filter: blur(5px)
            }

            .cards .content .card .icon_row {
                position: absolute;
                left: 10px;
                bottom: 8px
            }

                .cards .content .card .icon_row span {
                    color: #fff;
                    width: 40px;
                    height: 40px;
                    -o-object-fit: cover;
                    object-fit: cover;
                    border-radius: 99px;
                    background-color: #380000;
                    text-align: center;
                    font-size: 22px;
                    line-height: 100%;
                    margin-left: -5px;
                    box-shadow: -2px 2px 2px #000
                }

                .cards .content .card .icon_row img {
                    width: 40px;
                    height: 40px;
                    -o-object-fit: cover;
                    object-fit: cover;
                    border-radius: 99px;
                    background-color: #380000;
                    padding: 3px;
                    margin-left: -5px;
                    box-shadow: -2px 2px 2px #000;
                    border: solid 1px #b49770
                }

            .cards .content .card:hover {
                margin: 0;
                align-items: center
            }

                .cards .content .card:hover a {
                    opacity: 1
                }

.particles img {
    position: absolute;
    bottom: 20%;
    right: 40%
}

.products {
    background: url("../Images/index/bg.jpg");
    background-size: cover;
    background-position: bottom
}

    .products .content {
        padding: 40px 0;
        align-items: flex-start
    }

        .products .content .model {
            margin-right: 50px;
            -webkit-animation: puff-in-center .6s cubic-bezier(0.47, 0, 0.745, 0.715) both;
            animation: puff-in-center .6s cubic-bezier(0.47, 0, 0.745, 0.715) both;
            display: none
        }

            .products .content .model .model_img {
                width: 450px
            }

        .products .content .products_right {
            flex: 1
        }

        .products .content .product_info {
            align-items: flex-start;
            display: none
        }

            .products .content .product_info h1 {
                position: static;
                font-size: 50px;
                color: #f16e00;
                letter-spacing: 2px;
                -webkit-animation: fade-in-bottom .6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
                animation: fade-in-bottom .6s cubic-bezier(0.39, 0.575, 0.565, 1) both
            }

            .products .content .product_info h2 {
                color: #fff;
                margin-bottom: 10px;
                -webkit-animation: fade-in-bottom .6s cubic-bezier(0.39, 0.575, 0.565, 1) both .3s;
                animation: fade-in-bottom .6s cubic-bezier(0.39, 0.575, 0.565, 1) both .3s
            }

            .products .content .product_info p {
                color: #fff;
                font-size: 13px;
                -webkit-animation: fade-in-bottom .6s cubic-bezier(0.39, 0.575, 0.565, 1) both .6s;
                animation: fade-in-bottom .6s cubic-bezier(0.39, 0.575, 0.565, 1) both .6s
            }

            .products .content .product_info button {
                border: none;
                font-size: 20px;
                padding: 10px 35px 12px;
                margin-top: 20px;
                cursor: pointer;
                margin-right: 10px
            }

                .products .content .product_info button:hover {
                    transform: scale(1.05);
                    filter: contrast(1.5)
                }

        .products .content .product_nav {
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 25px;
            padding-top: 25px;
            border-top: solid 1px rgba(255,255,255,.2)
        }

            .products .content .product_nav .products_nav_item {
                cursor: pointer;
                border-radius: 5px;
                transition: .2s;
                position: relative
            }

                .products .content .product_nav .products_nav_item img {
                    width: 130px
                }

                .products .content .product_nav .products_nav_item:hover {
                    background-color: rgba(255,255,255,.1)
                }

                .products .content .product_nav .products_nav_item::after {
                    content: "";
                    width: 50px;
                    height: 50px;
                    position: absolute;
                    left: -10px;
                    top: -10px;
                    background: url("../Images/other/flare.png");
                    background-size: 100% 100%;
                    -webkit-animation: glowing 2s infinite;
                    animation: glowing 2s infinite;
                    display: none;
                    pointer-events: none
                }

                .products .content .product_nav .products_nav_item::before {
                    content: "";
                    width: 40px;
                    height: 40px;
                    position: absolute;
                    right: 0px;
                    bottom: 0px;
                    background: url("../Images/other/flare.png");
                    background-size: 100% 100%;
                    -webkit-animation: glowing 2s infinite 1s;
                    animation: glowing 2s infinite 1s;
                    display: none;
                    pointer-events: none
                }

            .products .content .product_nav .products_nav_active {
                z-index: 2;
                transform: scale(1.1);
                filter: drop-shadow(0 2px 3px black)
            }

                .products .content .product_nav .products_nav_active::after, .products .content .product_nav .products_nav_active::before {
                    display: block
                }

.lottery {
    background-color: #211001
}

    .lottery .magnum .table_header {
        background: #262626
    }

    .lottery .magnum th {
        background: #262626
    }

    .lottery .dmc .table_header {
        background: #0f1468
    }

    .lottery .dmc th {
        background: #0f1468
    }

    .lottery .toto .table_header {
        background: #ed363f
    }

    .lottery .toto th {
        background: #ed363f
    }

    .lottery .singapore .table_header {
        background: #12689b
    }

    .lottery .singapore th {
        background: #12689b
    }

    .lottery .sabah .table_header {
        background: #e02217
    }

    .lottery .sabah th {
        background: #e02217
    }

    .lottery .sandakan .table_header {
        background: #2f9505
    }

    .lottery .sandakan th {
        background: #2f9505
    }

    .lottery .cash .table_header {
        background: #083e04
    }

    .lottery .cash th {
        background: #083e04
    }

    .lottery .gd .table_header {
        background: linear-gradient(#feda47 50%, #c56801);
        color: #000 !important
    }

    .lottery .gd th {
        background: linear-gradient(#feda47 50%, #c56801);
        color: #000 !important
    }

    .lottery .lottery_tables {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 15px;
        padding: 20px 0
    }

        .lottery .lottery_tables .table {
            width: 100%;
            background: #e0d9ca;
            border-right: 3px outset gray;
            border-bottom: 3px outset gray;
            border-radius: 10px;
            overflow: hidden
        }

            .lottery .lottery_tables .table .table_header {
                position: relative;
                color: #fff;
                font-size: 13px;
                padding: 10px
            }

                .lottery .lottery_tables .table .table_header img {
                    position: absolute;
                    right: 10px;
                    width: 70px
                }

            .lottery .lottery_tables .table table {
                align-self: center;
                margin: 10px 0;
                width: calc(100% - 20px);
                border-collapse: collapse;
                text-align: center;
                font-size: 13px;
                border: solid 1px gray
            }

                .lottery .lottery_tables .table table th {
                    padding: 5px;
                    color: #fff
                }

                .lottery .lottery_tables .table table td {
                    border: solid 1px gray
                }

.slot {
    background: #1d1d1d;
    padding: 20px 0;
    background: url("../Images/index/bg.jpg");
    background-size: cover;
    background-position: bottom
}

    .slot .content {
        align-items: stretch
    }

    .slot .slot_nav {
        background: rgba(255,255,255,.1);
        margin-top: 15px;
        border-radius: 8px;
        padding: 10px;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px)
    }

        .slot .slot_nav .slot_nav_item {
            cursor: pointer;
            font-weight: bold;
            border-bottom: solid 1px gray;
            padding: 5px
        }

            .slot .slot_nav .slot_nav_item img {
                width: 140px;
                filter: grayscale(0.8)
            }

            .slot .slot_nav .slot_nav_item:hover, .slot .slot_nav .slot_nav_active {
                background: rgba(0,0,0,.1);
                border-radius: 5px 5px 0 0
            }

                .slot .slot_nav .slot_nav_item:hover img, .slot .slot_nav .slot_nav_active img {
                    filter: none
                }

    .slot .slot_lobby {
        color: gray;
        margin-left: 20px;
        padding-top: 10px;
        display: none;
        flex: 1;
        -webkit-animation: fade-in-bottom .3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
        animation: fade-in-bottom .3s cubic-bezier(0.39, 0.575, 0.565, 1) both
    }

        .slot .slot_lobby .lobby_nav .lobby_nav_item {
            color: gray;
            cursor: pointer;
            font-weight: bold;
            padding: 10px 30px
        }

            .slot .slot_lobby .lobby_nav .lobby_nav_item:hover, .slot .slot_lobby .lobby_nav .lobby_nav_active {
                color: #f16e00
            }

        .slot .slot_lobby .lobby_nav .slot_search {
            position: relative;
            margin-left: auto
        }

            .slot .slot_lobby .lobby_nav .slot_search img {
                width: 15px;
                position: absolute;
                right: 5px
            }

            .slot .slot_lobby .lobby_nav .slot_search input {
                background: none;
                border: none;
                background-color: rgba(255,255,255,.1);
                border-radius: 3px;
                padding: 5px;
                color: #fff
            }

        .slot .slot_lobby .games {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            grid-gap: 10px;
            padding: 20px 0;
            display: none
        }

            .slot .slot_lobby .games .game {
                border-radius: 5px;
                overflow: hidden;
                position: relative;
                transition: .3s;
                margin-bottom: 10px
            }

                .slot .slot_lobby .games .game img {
                    width: 100%;
                    height: 120px
                }

                .slot .slot_lobby .games .game .game_name {
                    background: #000;
                    padding: 10px 15px;
                    color: #c8c8c8;
                    font-size: 12px;
                    border-bottom: solid 2px #f16e00;
                    border-radius: 0 0 5px 5px;
                    z-index: 2;
                    transition: .3s;
                    flex: 1;
                }

                .slot .slot_lobby .games .game .hover {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,.5);
                    align-items: center;
                    padding-top: 10px;
                    transform: translateY(100%);
                    transition: .3s
                }

                    .slot .slot_lobby .games .game .hover a {
                        width: 80%;
                        text-align: center;
                        color: #fff;
                        background: linear-gradient(#f16e00, #b41e00);
                        font-size: 12px;
                        padding: 5px;
                        /*margin-top: 5px;*/
                        margin-top: 50px;
                        border-radius: 5px
                    }

                        .slot .slot_lobby .games .game .hover a:nth-child(2) {
                            background: #646464
                        }

                .slot .slot_lobby .games .game:hover {
                    transform: translateY(-5px)
                }

                    .slot .slot_lobby .games .game:hover .hover {
                        transform: none
                    }

                    .slot .slot_lobby .games .game:hover .game_name {
                        filter: brightness(2)
                    }

        .slot .slot_lobby .games_active {
            display: grid
        }

    .slot .slot_login {
        width: 100%;
        align-items: center
    }

        .slot .slot_login .login_info {
            flex: 1;
            /*padding: 20px;*/
            justify-content: center;
            width: 450px;
            margin-bottom: 30px
        }

            .slot .slot_login .login_info .col {
                margin-bottom: 5px;
                position: relative
            }

                .slot .slot_login .login_info .col .copy_btn {
                    position: absolute;
                    right: 10px;
                    bottom: 12px;
                    width: 16px;
                    filter: brightness(0) invert(1);
                    cursor: pointer
                }

                .slot .slot_login .login_info .col input {
                    background-color: #211001;
                    border: none;
                    color: #fff;
                    padding: 10px;
                    border-radius: 3px
                }

            .slot .slot_login .login_info button {
                margin-top: 2%;
                margin-left: 38%;
            }

        .slot .slot_login .qrs .qr {
            margin: 0 10px;
            align-items: center
        }

            .slot .slot_login .qrs .qr img {
                width: 150px;
                border-radius: 5px
            }

.create_btn {
    box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(110,80,20,.4),inset 0 -2px 5px 1px #8a0000,inset 0 -1px 1px 3px #ffb820;
    background-image: linear-gradient(#f16e00, #b41e00);
    padding: 5px 15px 7px;
    color: #fff;
    border-radius: 99px;
    margin: 3px 0;
    margin-left: 10px;
    font-size: 14px;
    min-width: 110px;
    text-align: center;
    border: outset 2px #a3612b
}

    .create_btn:hover {
        filter: contrast(1.5);
        transform: scale(1.05)
    }

.promo {
    padding: 30px 0;
    background: url("../Images/index/bg2.jpg");
    background-size: cover;
    background-position: center
}

    .promo .promo_nav {
        color: gray;
        font-size: 25px
    }

        .promo .promo_nav .promo_nav_item {
            color: #fff;
            font-size: 14px;
            padding: 0 20px;
            opacity: .5;
            cursor: pointer;
            transition: .3s;
            font-weight: bold
        }

            .promo .promo_nav .promo_nav_item b {
                font-size: 13px;
                color: #f8d690;
                padding: 5px;
                text-align: center;
                border-radius: 99px
            }

            .promo .promo_nav .promo_nav_item:hover, .promo .promo_nav .promo_nav_active {
                opacity: 1
            }

    .promo .promos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin-top: 30px
    }

        .promo .promos .promo_item {
            -webkit-animation: fade-in-bottom .3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
            animation: fade-in-bottom .3s cubic-bezier(0.39, 0.575, 0.565, 1) both
        }

            .promo .promos .promo_item img {
                width: 100%
            }

            .promo .promos .promo_item .promo_info {
                background: #141414;
                padding: 10px 20px 20px;
                border-radius: 0 0 10px 10px;
                position: relative;
                border: solid 1px gray
            }

                .promo .promos .promo_item .promo_info h2 {
                    color: #fff;
                    font-size: 20px;
                    margin-bottom: 20px;
                    height: 50px
                }

                .promo .promos .promo_item .promo_info p {
                    margin-top: 15px;
                    color: gray;
                    font-size: 13px;
                    padding: 5px;
                    position: absolute;
                    right: 10px;
                    bottom: 10px
                }

                    .promo .promos .promo_item .promo_info p b {
                        color: #f8d690
                    }

                .promo .promos .promo_item .promo_info .promo_btns {
                    margin-top: auto;
                    justify-content: center;
                }

                    .promo .promos .promo_item .promo_info .promo_btns .promo_btn {
                        background: linear-gradient(#f16e00, #b41e00);
                        font-size: 13px;
                        padding: 6px 10px;
                        border-radius: 3px;
                        margin-right: 5px;
                        color: #fff
                    }

                        .promo .promos .promo_item .promo_info .promo_btns .promo_btn:first-child {
                            background: linear-gradient(#ffffff, #b8b8b8, #929292);
                            color: #000
                        }

.download .content {
    padding: 40px 0
}

.download .download_list {
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
    width: 100%
}

    .download .download_list .download_item {
        width: calc(50% - 10px)
    }

        .download .download_list .download_item .download_info {
            align-items: stretch;
            background: #141414;
            padding: 10px 20px 20px;
            border-radius: 0 0 10px 10px;
            position: relative;
            border: solid 1px gray
        }

            .download .download_list .download_item .download_info img {
                width: 100%
            }

            .download .download_list .download_item .download_info .qr {
                color: #fff;
                margin-right: 10px
            }

                .download .download_list .download_item .download_info .qr span {
                    margin-bottom: 5px;
                    font-size: 12px
                }

                .download .download_list .download_item .download_info .qr img {
                    width: 130px
                }

            .download .download_list .download_item .download_info .login_info {
                color: #f8d690;
                font-size: 13px;
                margin-left: auto
            }

                .download .download_list .download_item .download_info .login_info .row input {
                    border: none;
                    background-color: #282828;
                    color: #fff;
                    padding: 5px;
                    width: 200px;
                    border-radius: 2px
                }

                .download .download_list .download_item .download_info .login_info .row button {
                    border: none;
                    padding: 5px;
                    background-color: #b49770;
                    margin-left: 5px;
                    border-radius: 2px
                }

                .download .download_list .download_item .download_info .login_info .download_btn {
                    width: 245px;
                    margin-top: auto;
                    background: linear-gradient(#f16e00, #b41e00);
                    border-radius: 3px;
                    border: none;
                    padding: 5px;
                    color: #fff
                }

.info {
    padding: 30px 0
}

    .info .content {
        background: #141414;
        padding: 10px 20px 20px 20px;
        border: solid 1px #3c3c3c;
        border-radius: 5px;
        font-size: 13px;
        color: #fff
    }

    .info .info_nav {
        margin-bottom: 20px;
        background: linear-gradient(#f16e00, #b41e00);
        align-self: flex-start;
        border-radius: 99px;
        overflow: hidden
    }

        .info .info_nav a {
            color: #fff;
            padding: 10px 20px;
            font-size: 13px
        }

            .info .info_nav a:hover, .info .info_nav .info_nav_active {
                background: rgba(255,255,255,.2);
                color: #fff
            }

    .info h2 {
        border-bottom: solid 2px gray;
        padding: 10px
    }

    .info p, span {
        color: gray
    }

    .info ul, .info ol {
        padding-left: 15px
    }

        .info ul li, .info ol li {
            padding: 3px 0;
            color: grey;
        }

    .info table {
        width: 600px;
        text-align: left;
        border-collapse: collapse;
        background: #323232;
        color: #c8c8c8
    }

        .info table th {
            padding: 5px;
            background: #380000;
            color: #f8d690;
            border: solid 2px #141414
        }

        .info table td {
            padding: 5px 10px;
            border: solid 2px #141414
        }

        .info table tr:nth-child(even) {
            background: #1e1e1e
        }

    .info .contact_item {
        border-radius: 99px;
        overflow: hidden;
        background: #dcdcdc;
        width: 400px;
        margin-bottom: 10px;
        align-items: stretch
    }

        .info .contact_item span {
            padding: 10px 20px;
            width: 150px;
            color: #000
        }

            .info .contact_item span img {
                width: 30px;
                border-radius: 3px;
                margin-right: 10px
            }

        .info .contact_item a {
            align-self: center;
            flex: 1;
            text-align: right;
            padding: 10px;
            color: #000;
            font-weight: bold
        }

.error {
    padding: 30px 0;
    color: #fff
}

    .error .content {
        padding: 20px;
        border-radius: 5px;
        font-size: 13px;
        align-items: center
    }

    .error h2 {
        font-size: 30px
    }

    .error img {
        width: 300px;
        margin-bottom: 20px
    }

    .error .maintenance_img {
        position: relative
    }

        .error .maintenance_img img {
            position: relative;
            z-index: 2
        }

        .error .maintenance_img .gear {
            z-index: 1;
            position: absolute;
            width: 90px;
            left: 13px;
            -webkit-animation: rotating 3s linear infinite;
            animation: rotating 3s linear infinite
        }

    .error p {
        margin: 10px 0
    }

    .error .row {
        margin: 10px 0
    }

        .error .row a {
            background: #a30a00;
            padding: 10px;
            color: #fff;
            border-radius: 3px;
            width: 150px;
            text-align: center;
            margin: 0 10px
        }

.vip {
    padding: 30px 0 0 0;
    background: url("../Images/index/bg2.jpg");
    background-size: cover;
    background-position: bottom
}

    .vip .content {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px)
    }

    .vip .level {
        position: relative;
        align-items: center
    }

        .vip .level::after {
            content: "";
            width: 50px;
            height: 50px;
            position: absolute;
            left: 0px;
            top: -10px;
            z-index: 2;
            background: url("../Images/other/flare.png");
            background-size: 100% 100%;
            -webkit-animation: glowing 2s infinite;
            animation: glowing 2s infinite;
            pointer-events: none
        }

        .vip .level::before {
            content: "";
            z-index: 2;
            width: 40px;
            height: 40px;
            position: absolute;
            right: 10px;
            bottom: 10px;
            background: url("../Images/other/flare.png");
            background-size: 100% 100%;
            -webkit-animation: glowing 2s infinite 1s;
            animation: glowing 2s infinite 1s;
            pointer-events: none
        }

    .vip table {
        width: 100%;
        border-collapse: collapse
    }

        .vip table thead tr {
            border-bottom: 1px solid #3e3b2f
        }

        .vip table thead th {
            font-size: 30px;
            color: #f16e00;
            vertical-align: bottom;
            text-align: left
        }

        .vip table thead td {
            color: #fff;
            font-size: 13px;
            text-align: center;
            padding: 5px 0;
            font-weight: bold;
            letter-spacing: 2px
        }

            .vip table thead td img {
                height: 40px;
                margin-bottom: 5px
            }

        .vip table tbody th {
            color: #fff;
            text-align: left;
            padding: 30px 0 5px 10px;
            font-size: 20px
        }

            .vip table tbody th i {
                color: gray;
                font-size: 12px
            }

        .vip table tbody tr {
            background: rgba(0,0,0,.5)
        }

            .vip table tbody tr td {
                color: #f8d690;
                text-align: center;
                padding: 10px;
                font-size: 14px
            }

                .vip table tbody tr td:first-child {
                    color: #a9acb6;
                    text-align: left
                }

            .vip table tbody tr:nth-child(odd) {
                background: rgba(0,0,0,.3)
            }

.register {
    padding: 30px 0;
    background: url("../Images/index/menu_bg.jpg");
    background-size: cover;
    background-position: bottom
}

    .register .register_window {
        align-self: center;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        align-items: center
    }

        .register .register_window .step_header {
            padding: 15px;
            text-align: center;
            color: #f8d690;
            font-weight: bold;
            font-size: 20px;
            width: 100%
        }

        .register .register_window .step {
            padding: 20px 0;
            width: 70%;
            align-items: center;
            margin-bottom: 10px
        }

            .register .register_window .step .row {
                justify-content: space-between;
                width: 100%;
                font-size: 12px;
                color: gray;
                text-align: center;
                margin-bottom: 10px
            }

                .register .register_window .step .row .step_label {
                    width: 120px;
                    text-align: center
                }

                .register .register_window .step .row .step_label_active {
                    color: #ff4d00
                }

            .register .register_window .step img {
                width: 90%
            }

        .register .register_window .step_content {
            width: 85%;
            padding: 7% 15%;
            min-height: 580px;
            align-items: stretch;
            background: url("../Images/other/scroll2.png");
            background-size: 100% 100%
        }

            .register .register_window .step_content .form {
                width: 50%
            }

                .register .register_window .step_content .form .input {
                    margin-bottom: 12px;
                    width: 100%
                }

                    .register .register_window .step_content .form .input input, .register .register_window .step_content form .input select {
                        width: 100% !important;
                        background-color: #211001;
                        padding: 6px 10px;
                        border: none;
                        color: #fff;
                        border-radius: 6px
                    }

                        .register .register_window .step_content .form .input input:focus + p, .register .register_window .step_content form .input select:focus + p {
                            display: block
                        }

                    .register .register_window .step_content .form .input span {
                        width: 170px;
                        color: #000
                    }

                    .register .register_window .step_content .form .input p {
                        font-size: 12px;
                        color: red;
                        font-weight: bold;
                        padding: 2px 5px;
                        display: none
                    }

                .register .register_window .step_content .form summary {
                    font-size: 13px;
                    color: #000;
                    cursor: pointer;
                    margin-bottom: 5px
                }

                .register .register_window .step_content .form button {
                    align-self: flex-end;
                    padding: 10px 20px;
                    border-radius: 3px;
                    background: #a30a00;
                    color: #f8d690;
                    border: none;
                    font-size: 15px;
                    font-weight: bold;
                    margin-top: auto;
                    cursor: pointer
                }

            .register .register_window .step_content .step_text {
                padding: 0 10px;
                margin-left: 20px
            }

                .register .register_window .step_content .step_text h2 {
                    color: #a30a00;
                    margin-bottom: 10px;
                    font-size: 20px;
                    padding-left: 20px
                }

                .register .register_window .step_content .step_text ul {
                    padding-left: 20px
                }

                    .register .register_window .step_content .step_text ul li {
                        font-size: 15px;
                        color: #323232;
                        margin-bottom: 5px
                    }

        .register .register_window .complete {
            width: 50%;
            align-self: center;
            align-items: center;
            padding-bottom: 30px
        }

            .register .register_window .complete img {
                width: 150px;
                margin-bottom: 20px
            }

            .register .register_window .complete h2 {
                font-weight: normal
            }

            .register .register_window .complete h3 {
                font-weight: normal;
                font-size: 14px
            }

            .register .register_window .complete a {
                background: #a30a00;
                color: #fff;
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                width: 300px;
                margin: 20px 0
            }

            .register .register_window .complete p {
                font-size: 12px;
                text-align: center;
                width: 300px;
                color: #000
            }

                .register .register_window .complete p b {
                    color: #e73101
                }

    .register .step2, .register .step3 {
        display: none
    }

.footer {
    background: #191919;
    padding: 20px 0;
    border-top: solid 1px #282828;
}

    .footer .footer_nav {
        padding: 10px 0;
        border-bottom: solid 1px #282828;
        margin-bottom: 30px
    }

        .footer .footer_nav a {
            color: rgba(162,170,189,.4);
            font-size: 13px;
            margin-right: 10px;
            padding-right: 10px
        }

            .footer .footer_nav a:hover {
                color: #fff
            }

    .footer .infos {
        align-items: stretch;
        gap: 30px
    }

        .footer .infos .col b {
            color: #fff;
            margin-bottom: 15px;
            white-space: nowrap;
            font-size: 12px
        }

        .footer .infos .col a {
            color: rgba(162,170,189,.4);
            font-size: 12px;
            padding: 3px 0
        }

            .footer .infos .col a:hover {
                color: #fff;
                text-decoration: underline
            }

        .footer .infos .col .providers {
            flex-wrap: wrap
        }

            .footer .infos .col .providers img {
                width: 85px
            }

        .footer .infos .col .payment {
            flex-wrap: wrap;
            gap: 10px
        }

            .footer .infos .col .payment img {
                height: 25px
            }

.footer_text {
    padding: 30px 0;
    border-top: solid 1px #282828
}

    .footer_text h3 {
        color: #fff;
        font-size: 12px;
        margin-bottom: 5px
    }

    .footer_text p {
        color: rgba(162,170,189,.4);
        font-size: 12px
    }

        .footer_text p a {
            color: #f16e00;
            text-decoration: underline
        }

    .footer_text ul {
        padding-top: 10px
    }

        .footer_text ul li {
            color: rgba(162,170,189,.4);
            font-size: 12px
        }

            .footer_text ul li a {
                color: #f16e00;
                text-decoration: underline
            }

    .footer_text .expand_btn, .footer_text .collapse_btn {
        color: rgba(162,170,189,.4);
        text-decoration: underline;
        font-size: 12px;
        margin-top: 20px;
        cursor: pointer
    }

    .footer_text .collapse_btn {
        display: none
    }

.collapsed_text {
    display: none
}

footer {
    background: #191919;
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    color: rgba(162,170,189,.7)
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

    .popup .popup_window {
        padding: 20px;
        border-radius: 10px;
        background: #141414;
        border: solid 1px #323232;
        position: relative;
        align-items: center;
        margin-top: 50px
    }

        .popup .popup_window .close_popup {
            position: absolute;
            right: 0;
            top: 0;
            -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
            width: 30px;
            cursor: pointer
        }

        .popup .popup_window h1 {
            background: #380000;
            border-bottom: solid 2px #583200;
            color: #fff;
            font-size: 15px;
            margin: 0;
            padding: 10px 20px;
            text-align: left
        }

    .popup .popup_close {
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 10px 0;
        cursor: pointer;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
        letter-spacing: 2px;
        margin-top: 10px
    }

.login .popup_window {
    background: url("../Images/other/scroll1.png");
    background-size: 100% 100%;
    width: 600px;
    border: none;
    padding: 40px 60px
}

.login .logo {
    width: 180px;
    margin-bottom: 20px
}

.login form {
    margin-bottom: 10px;
    width: 60%
}

    .login form .input {
        background-color: #211001;
        padding: 5px 10px;
        margin-top: 10px;
        border-radius: 5px
    }

        .login form .input img {
            width: 20px
        }

        .login form .input input {
            width: 100%;
            border: none;
            background: none;
            color: #fff;
            padding: 5px 10px;
            font-size: 13px
        }

            .login form .input input:focus {
                outline: none
            }

    .login form a {
        align-self: flex-end;
        font-size: 13px;
        margin: 10px 0;
        color: #211001;
        text-decoration: underline
    }

    .login form .btns {
        gap: 10px
    }

        .login form .btns button {
            align-self: center;
            border: none;
            padding: 10px;
            font-size: 14px;
            width: 100%;
            cursor: pointer
        }

            .login form .btns button:hover {
                filter: contrast(1.5);
                transform: scale(1.05)
            }

.login hr {
    width: 80%;
    opacity: .2;
    border-color: #211001
}

.login p {
    color: #000;
    font-size: 12px;
    text-align: center;
    padding: 15px 0;
    width: 80%
}

    .login p a {
        font-weight: bold;
        color: #a30a00
    }

.promo_popup .promo_window {
    width: 800px;
    color: gray;
    font-size: 13px
}

    .promo_popup .promo_window h2 {
        color: #fff;
        text-align: left;
        width: 100%
    }

    .promo_popup .promo_window img {
        width: 100%;
        border-bottom: solid 1px #646464;
        padding-bottom: 20px;
        margin-bottom: 20px
    }

    .promo_popup .promo_window a {
        margin-top: 20px;
        align-self: flex-end;
        background: linear-gradient(#f16e00, #b41e00);
        font-weight: bold;
        font-size: 13px;
        padding: 6px 10px;
        border-radius: 3px;
        color: #fff
    }

.payout .popup_window {
    width: 800px;
    padding: 0
}

    .payout .popup_window h1 {
        width: 100%
    }

.payout .payout_content {
    width: 100%;
    padding: 20px;
    max-height: 600px;
    overflow-y: auto
}

    .payout .payout_content h2 {
        color: #fff;
        font-size: 18px;
        margin-top: 10px
    }

    .payout .payout_content p {
        color: gray;
        opacity: .8;
        font-size: 12px;
        margin: 5px 0
    }

    .payout .payout_content table {
        width: 100%;
        margin-top: 5px;
        border-collapse: collapse;
        text-align: center;
        font-size: 13px;
        border-radius: 5px;
        overflow: hidden;
        color: #c8c8c8
    }

        .payout .payout_content table th {
            background: #8b461d;
            padding: 10px;
            color: #fff;
            border-right: solid 2px #141414
        }

        .payout .payout_content table tr {
            background: #323232
        }

            .payout .payout_content table tr:nth-child(even) {
                background: #1e1e1e
            }

        .payout .payout_content table td {
            padding: 5px;
            border: solid 2px #141414
        }

.gdlpayout .popup_window {
    width: 800px;
    padding: 0
}

    .gdlpayout .popup_window h1 {
        width: 100%
    }

.gdlpayout .payout_content {
    width: 100%;
    padding: 20px;
    max-height: 600px;
    overflow-y: auto
}

    .gdlpayout .payout_content h2 {
        color: #fff;
        font-size: 18px;
        margin-top: 10px
    }

    .gdlpayout .payout_content p {
        color: gray;
        opacity: .8;
        font-size: 12px;
        margin: 5px 0
    }

    .gdlpayout .payout_content table {
        width: 100%;
        margin-top: 5px;
        border-collapse: collapse;
        text-align: center;
        font-size: 13px;
        border-radius: 5px;
        overflow: hidden;
        color: #c8c8c8
    }

        .gdlpayout .payout_content table th {
            background: #8b461d;
            padding: 10px;
            color: #fff;
            border-right: solid 2px #141414
        }

        .gdlpayout .payout_content table tr {
            background: #323232
        }

            .gdlpayout .payout_content table tr:nth-child(even) {
                background: #1e1e1e
            }

        .gdlpayout .payout_content table td {
            padding: 5px;
            border: solid 2px #141414
        }

.ninelottopayout .popup_window {
    width: 800px;
    padding: 0
}

    .ninelottopayout .popup_window h1 {
        width: 100%
    }

.ninelottopayout .payout_content {
    width: 100%;
    padding: 20px;
    max-height: 600px;
    overflow-y: auto
}

    .ninelottopayout .payout_content h2 {
        color: #fff;
        font-size: 18px;
        margin-top: 10px
    }

    .ninelottopayout .payout_content p {
        color: gray;
        opacity: .8;
        font-size: 12px;
        margin: 5px 0
    }

    .ninelottopayout .payout_content table {
        width: 100%;
        margin-top: 5px;
        border-collapse: collapse;
        text-align: center;
        font-size: 13px;
        border-radius: 5px;
        overflow: hidden;
        color: #c8c8c8
    }

        .ninelottopayout .payout_content table th {
            background: #8b461d;
            padding: 10px;
            color: #fff;
            border-right: solid 2px #141414
        }

        .ninelottopayout .payout_content table tr {
            background: #323232
        }

            .ninelottopayout .payout_content table tr:nth-child(even) {
                background: #1e1e1e
            }

        .ninelottopayout .payout_content table td {
            padding: 5px;
            border: solid 2px #141414
        }

.game_transfer .popup_window {
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    align-items: stretch
}

.game_transfer .row_input {
    justify-content: space-between
}

    .game_transfer .row_input .input {
        width: 46%
    }

.game_transfer .input {
    align-items: stretch
}

    .game_transfer .input span {
        margin-bottom: 3px;
        font-size: 12px;
        color: #f8d690
    }

    .game_transfer .input input, .game_transfer .input select {
        padding: 10px 15px;
        background-color: #282828;
        border: solid 1px gray;
        border-radius: 3px;
        color: #fff
    }

    .game_transfer .input em {
        color: #fff;
        padding: 3px
    }

        .game_transfer .input em:before {
            display: none
        }

.game_transfer .shortcuts {
    margin-top: 10px
}

    .game_transfer .shortcuts .shortcut {
        color: #000;
        background: linear-gradient(rgb(240, 240, 240), rgb(210, 210, 210));
        border: solid 1px gray;
        padding: 5px 10px;
        border-radius: 3px;
        margin-right: 5px;
        font-size: 13px;
        width: 60px;
        text-align: center;
        cursor: pointer;
        flex: 1
    }

.game_transfer em {
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    color: gray;
    align-items: flex-start
}

    .game_transfer em::before {
        content: "*";
        padding-right: 5px;
        font-size: 15px
    }

.game_transfer .btns {
    justify-content: center;
    gap: 10px
}

    .game_transfer .btns button {
        min-width: 150px;
        text-align: center;
        padding: 10px;
        border-radius: 5px;
        font-size: 12px;
        border: none
    }

.fund {
    background: url("../Images/index/bg.jpg");
    background-size: cover;
    background-position: bottom;
    padding: 20px 0
}

    .fund .content {
        align-items: stretch;
        padding: 15px 0
    }

    .fund .fund_nav {
        background: #f2f1f1;
        border-radius: 5px;
        padding-bottom: 20px
    }

        .fund .fund_nav .userinfo {
            padding: 30px 25px
        }

            .fund .fund_nav .userinfo img {
                width: 25px;
                margin-right: 10px
            }

            .fund .fund_nav .userinfo h3 {
                color: #b41e00;
                font-size: 13px
            }

        .fund .fund_nav hr {
            border-color: rgba(140,140,140,.3);
            width: 80%;
            align-self: center
        }

        .fund .fund_nav h2 {
            padding: 0 20px;
            color: #000;
            font-size: 15px;
            margin-top: 20px;
            margin-bottom: 5px;
            text-transform: uppercase
        }

        .fund .fund_nav a {
            padding: 8px 18px;
            font-size: 13px;
            color: #000;
            border-left: 4px solid rgba(0,0,0,0)
        }

            .fund .fund_nav .nav_active, .fund .fund_nav a:hover {
                color: #a30a00;
                border-color: #a30a00;
                font-weight: bold
            }

    .fund .fund_body {
        background: #f2f2f1;
        flex: 1;
        border-radius: 10px;
        margin-left: 15px
    }

        .fund .fund_body .wallet {
            background: #161616;
            border-bottom: solid 3px #646464;
            padding: 20px;
            border-radius: 10px 10px 0 0
        }

            .fund .fund_body .wallet .wallet_info {
                padding: 0 10px
            }

                .fund .fund_body .wallet .wallet_info .col {
                    padding: 0px 20px;
                    color: #b4b4b4;
                    font-size: 13px;
                    border-right: 1px solid #646464
                }

                    .fund .fund_body .wallet .wallet_info .col b {
                        color: #f16e00
                    }

                .fund .fund_body .wallet .wallet_info .myvip {
                    position: relative;
                    padding-left: 50px
                }

                    .fund .fund_body .wallet .wallet_info .myvip img {
                        width: 40px;
                        position: absolute;
                        left: 0;
                        top: 45%;
                        transform: translateY(-50%)
                    }

        .fund .fund_body .fund_content {
            padding: 30px;
            position: relative;
            overflow: auto;
            /*            max-height: 600px;
*/
        }

            .fund .fund_body .fund_content .fund_subnav {
                margin-bottom: 30px
            }

                .fund .fund_body .fund_content .fund_subnav a {
                    color: #fff;
                    background-color: #c4a39b;
                    padding: 5px 15px;
                    font-size: 13px;
                    border-radius: 3px;
                    margin-right: 10px
                }

                    .fund .fund_body .fund_content .fund_subnav a:hover, .fund .fund_body .fund_content .fund_subnav .active {
                        background: linear-gradient(#f16e00, #b41e00)
                    }

            .fund .fund_body .fund_content form {
                display: none
            }

            .fund .fund_body .fund_content .form_active {
                display: flex
            }

            .fund .fund_body .fund_content .input {
                margin-bottom: 20px;
                align-items: flex-start;
                position: relative
            }

                .fund .fund_body .fund_content .input .label {
                    color: gray;
                    font-size: 13px;
                    min-width: 160px;
                    margin-right: 10px
                }

                    .fund .fund_body .fund_content .input .label b {
                        color: #ff4e00
                    }

                .fund .fund_body .fund_content .input input, .fund .fund_body .fund_content .input textarea, .fund .fund_body .fund_content .input select {
                    width: 250px;
                    padding: 5px 10px;
                    height: 35px;
                    font-size: 13px;
                    border-radius: 3px;
                    border: solid 1px #e0d7d5 !important;
                    background: #fff !important;
                    margin-top: 2px
                }

                    .fund .fund_body .fund_content .input input:-moz-read-only, .fund .fund_body .fund_content .input select:-moz-read-only {
                        background: #ebebeb
                    }

                    .fund .fund_body .fund_content .input input:read-only, .fund .fund_body .fund_content .input select:read-only {
                        background: #ebebeb
                    }

                    .fund .fund_body .fund_content .input input:focus, .fund .fund_body .fund_content .input select:focus {
                        outline-color: #0e6557
                    }

                        .fund .fund_body .fund_content .input input:focus + p, .fund .fund_body .fund_content .input select:focus + p {
                            display: block
                        }

                .fund .fund_body .fund_content .input .copy_btn, .fund .fund_body .fund_content .input .search_btn, .fund .fund_body .fund_content .input .addbank_btn, .fund .fund_body .fund_content .input .allin, .fund .fund_body .fund_content .input .view, .fund .fund_body .fund_content .input .noview {
                    margin-top: 1px;
                    padding: 7px 15px;
                    font-size: 13px;
                    background: linear-gradient(#f16e00, #b41e00);
                    color: #fff;
                    border-radius: 3px;
                    margin-left: 10px;
                    border: none
                }

                .fund .fund_body .fund_content .input .noview {
                    background: gray
                }

                .fund .fund_body .fund_content .input p {
                    font-size: 10px;
                    color: #ff4e00;
                    display: none
                }

                .fund .fund_body .fund_content .input .bank_info {
                    position: relative
                }

                    .fund .fund_body .fund_content .input .bank_info .copy {
                        position: absolute;
                        right: 10px;
                        width: 15px;
                        top: 50%;
                        transform: translateY(-50%);
                        cursor: pointer
                    }

            .fund .fund_body .fund_content .bank_infos {
                display: none
            }

            .fund .fund_body .fund_content .bank_infos_active {
                display: flex
            }

            .fund .fund_body .fund_content .agreement {
                font-size: 13px;
                color: gray;
                margin-left: 170px;
                cursor: pointer
            }

                .fund .fund_body .fund_content .agreement input {
                    margin-right: 5px
                }

            .fund .fund_body .fund_content .radios {
                padding: 5px 10px;
                border-radius: 5px;
                border: solid 1px #e0d7d5;
                flex: 1;
                flex-wrap: wrap
            }

                .fund .fund_body .fund_content .radios .radio {
                    position: relative;
                    color: gray;
                    padding: 2px 15px;
                    border-right: 1px #e0d7d5 solid;
                    cursor: pointer;
                    width: 125px;
                    margin: 5px 0
                }

                    .fund .fund_body .fund_content .radios .radio span {
                        font-size: 11px;
                        white-space: nowrap;
                        text-align: center;
                        width: 100%;
                    }

                    .fund .fund_body .fund_content .radios .radio input {
                        position: absolute;
                        opacity: 0;
                        width: 10px;
                        height: 10px
                    }

                        .fund .fund_body .fund_content .radios .radio input:checked ~ img {
                            filter: none
                        }

                        .fund .fund_body .fund_content .radios .radio input:checked ~ span {
                            color: #a30a00;
                            font-weight: bold
                        }

                    .fund .fund_body .fund_content .radios .radio img {
                        width: 28px;
                        margin-right: 3px;
                        filter: grayscale(1)
                    }

                    .fund .fund_body .fund_content .radios .radio:last-child {
                        border: none
                    }

            .fund .fund_body .fund_content .image_preview {
                width: 150px;
                margin-top: 20px;
                margin-left: 170px
            }

            .fund .fund_body .fund_content .buttons {
                margin-top: 50px;
                margin-left: 170px
            }

                .fund .fund_body .fund_content .buttons button, .fund .fund_body .fund_content .buttons .btn {
                    min-width: 120px;
                    font-size: 13px;
                    margin-right: 10px
                }

            .fund .fund_body .fund_content .file_btn {
                position: relative;
                cursor: pointer
            }

                .fund .fund_body .fund_content .file_btn input {
                    opacity: 0;
                    position: absolute;
                    width: 0;
                    height: 0
                }

                .fund .fund_body .fund_content .file_btn .button {
                    background: linear-gradient(rgb(200, 200, 200), rgb(150, 150, 150))
                }

            .fund .fund_body .fund_content .note {
                background: #f2f1f1;
                margin-left: 160px;
                margin-top: 30px;
                border-radius: 10px;
                color: #000;
                font-size: 12px;
                padding: 30px;
                width: 500px
            }

                .fund .fund_body .fund_content .note h3 {
                    color: #ff4e00
                }

                .fund .fund_body .fund_content .note ul, .fund .fund_body .fund_content .note ol {
                    padding-left: 20px
                }

            .fund .fund_body .fund_content .transfer_wallet {
                position: relative
            }

                .fund .fund_body .fund_content .transfer_wallet .custom_select, .fund .fund_body .fund_content .transfer_wallet .option_balance {
                    width: 250px;
                    padding: 5px 10px;
                    font-size: 13px;
                    background: rgba(0,0,0,0);
                    border-radius: 3px;
                    background: #e0d7d5
                }

                .fund .fund_body .fund_content .transfer_wallet .custom_select {
                    cursor: pointer
                }

                    .fund .fund_body .fund_content .transfer_wallet .custom_select::after {
                        content: "";
                        width: 0;
                        height: 0;
                        border-left: 5px solid rgba(0,0,0,0);
                        border-right: 5px solid rgba(0,0,0,0);
                        border-top: 5px solid #0a493f;
                        margin-left: auto;
                        transition: .3s
                    }

                .fund .fund_body .fund_content .transfer_wallet .custom_select_active {
                    outline: 1px solid #0e6557
                }

                    .fund .fund_body .fund_content .transfer_wallet .custom_select_active::after {
                        transform: rotate(180deg)
                    }

                .fund .fund_body .fund_content .transfer_wallet .option_balance {
                    background: #e6e6e6;
                    margin-top: 5px
                }

                .fund .fund_body .fund_content .transfer_wallet .custom_options {
                    position: absolute;
                    top: 105%;
                    left: 0;
                    z-index: 10;
                    background: #fff;
                    outline: 1px solid #0e6557;
                    border-radius: 2px;
                    padding: 5px;
                    display: none
                }

                    .fund .fund_body .fund_content .transfer_wallet .custom_options .row .option_filter {
                        font-size: 12px;
                        align-items: center;
                        white-space: nowrap;
                        width: 80px;
                        cursor: pointer;
                        border-radius: 99px;
                        padding: 5px
                    }

                        .fund .fund_body .fund_content .transfer_wallet .custom_options .row .option_filter img {
                            width: 40px
                        }

                        .fund .fund_body .fund_content .transfer_wallet .custom_options .row .option_filter:hover, .fund .fund_body .fund_content .transfer_wallet .custom_options .row .option_filter_active {
                            background: #e0d7d5
                        }

                    .fund .fund_body .fund_content .transfer_wallet .custom_options .grid {
                        background: #f0f0f0;
                        margin-top: 5px;
                        padding: 10px;
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        grid-gap: 5px;
                        min-height: 100px;
                        align-items: start;
                        border-radius: 3px;
                        display: none
                    }

                        .fund .fund_body .fund_content .transfer_wallet .custom_options .grid .custom_option {
                            text-align: center;
                            border: solid 1px #000;
                            border-radius: 3px;
                            font-size: 13px;
                            padding: 5px;
                            cursor: pointer
                        }

                            .fund .fund_body .fund_content .transfer_wallet .custom_options .grid .custom_option:hover {
                                background: #a30a00;
                                color: #f8d690
                            }

                .fund .fund_body .fund_content .transfer_wallet .custom_options_active {
                    display: flex
                }

            .fund .fund_body .fund_content .switch_btn {
                position: absolute;
                top: 10px;
                right: 40px;
                align-items: flex-end
            }

                .fund .fund_body .fund_content .switch_btn img {
                    width: 15px;
                    margin: 5px 0;
                    margin-right: -7px;
                    cursor: pointer
                }

                .fund .fund_body .fund_content .switch_btn::after {
                    content: "";
                    height: 30px;
                    width: 25px;
                    border: solid 1px gray;
                    border-left: 0;
                    border-top: 0
                }

                .fund .fund_body .fund_content .switch_btn::before {
                    content: "";
                    height: 30px;
                    width: 25px;
                    border: solid 1px gray;
                    border-left: 0;
                    border-bottom: 0
                }

            .fund .fund_body .fund_content .wallet_list {
                flex: 1;
                border-radius: 10px;
                padding: 20px;
                margin-left: 20px;
                background: #eee9e9
            }

                .fund .fund_body .fund_content .wallet_list .wallet_nav {
                    border-bottom: solid 1px #c8c8c8
                }

                    .fund .fund_body .fund_content .wallet_list .wallet_nav .wallet_nav_item {
                        padding: 7px 10px;
                        font-size: 13px;
                        margin-right: 5px;
                        border-radius: 5px 5px 0 0;
                        color: #fff;
                        background: #646464;
                        transition: .3s;
                        cursor: pointer
                    }

                        .fund .fund_body .fund_content .wallet_list .wallet_nav .wallet_nav_item:hover, .fund .fund_body .fund_content .wallet_list .wallet_nav .wallet_nav_active {
                            background: linear-gradient(#f16e00, #b41e00)
                        }

                .fund .fund_body .fund_content .wallet_list .wallet_total {
                    background: #fff;
                    align-self: flex-end;
                    padding: 4px;
                    border-radius: 3px;
                    font-size: 13px;
                    margin: 10px 0
                }

                    .fund .fund_body .fund_content .wallet_list .wallet_total b {
                        min-width: 80px;
                        text-align: right
                    }

                    .fund .fund_body .fund_content .wallet_list .wallet_total img {
                        width: 12px;
                        filter: brightness(0.8) saturate(2);
                        margin-left: 5px;
                        cursor: pointer
                    }

                .fund .fund_body .fund_content .wallet_list h3 {
                    font-size: 13px;
                    color: #f16e00;
                    border-bottom: solid 1px #c8c8c8;
                    margin-bottom: 5px
                }

                .fund .fund_body .fund_content .wallet_list .wallet_item {
                    font-size: 12px;
                    padding: 5px
                }

                    .fund .fund_body .fund_content .wallet_list .wallet_item span {
                        margin-left: auto
                    }

            .fund .fund_body .fund_content .date-input {
                align-items: center
            }

                .fund .fund_body .fund_content .date-input input {
                    width: 150px
                }

                .fund .fund_body .fund_content .date-input b {
                    font-size: 12px;
                    margin: 0 10px
                }

                .fund .fund_body .fund_content .date-input button {
                    margin-left: 10px;
                    padding: 8px 20px
                }

            .fund .fund_body .fund_content .record_table {
                width: 100%;
                border-collapse: collapse;
                border-radius: 3px;
                overflow: hidden;
                text-align: center;
                outline: solid 1px #dcdcdc
            }

                .fund .fund_body .fund_content .record_table th {
                    background: #282828;
                    color: #fff;
                    padding: 5px;
                    font-size: 14px
                }

                .fund .fund_body .fund_content .record_table td {
                    font-size: 13px;
                    padding: 3px
                }

                .fund .fund_body .fund_content .record_table tr:nth-child(even) {
                    background: #e0d7d5
                }

            .fund .fund_body .fund_content .referral p {
                color: gray;
                font-size: 12px
            }

            .fund .fund_body .fund_content .referral .qr {
                width: 200px
            }

            .fund .fund_body .fund_content .my_referral {
                justify-content: center
            }

                .fund .fund_body .fund_content .my_referral .row {
                    margin: 20px;
                    position: relative
                }

                    .fund .fund_body .fund_content .my_referral .row .col {
                        font-size: 13px;
                        position: absolute;
                        align-items: center;
                        left: 0;
                        bottom: 0;
                        width: 100%;
                        height: 55%;
                        color: #fff
                    }

                        .fund .fund_body .fund_content .my_referral .row .col strong {
                            font-size: 30px
                        }

                    .fund .fund_body .fund_content .my_referral .row img {
                        width: 120px
                    }

            .fund .fund_body .fund_content .refer_steps {
                margin: 20px 0 50px 0
            }

                .fund .fund_body .fund_content .refer_steps .row {
                    font-size: 12px;
                    border-radius: 5px;
                    overflow: hidden;
                    margin-right: 10px;
                    padding: 8px 20px 10px;
                    padding-right: 20px;
                    border-radius: 999px;
                    color: #fff;
                    background: linear-gradient(#f16e00, #b41e00)
                }

                    .fund .fund_body .fund_content .refer_steps .row b {
                        margin-right: 10px
                    }

            .fund .fund_body .fund_content .copy {
                margin-left: 10px
            }

            .fund .fund_body .fund_content .notice {
                position: absolute;
                right: 30px;
                top: 170px;
                width: 300px;
                background-color: #eee9e9;
                border-radius: 5px;
                padding: 15px
            }

                .fund .fund_body .fund_content .notice h3 {
                    margin-bottom: 10px;
                    font-size: 15px
                }

                .fund .fund_body .fund_content .notice ol {
                    padding-left: 15px
                }

                    .fund .fund_body .fund_content .notice ol li {
                        font-size: 12px;
                        margin-bottom: 5px;
                        color: gray
                    }

    .fund .reward {
        position: relative;
    }

.reward_point {
    min-width: 160px;
    border: solid 1px #f16e00;
    font-size: 13px;
    align-self: flex-start;
    color: #f16e00;
    font-weight: bold;
    margin: 20px 0;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    right: 0;
    top: -80px;
}

.fund .reward .reward_point span {
    padding: 5px 10px;
    background-color: #f16e00;
    color: #fff
}

.fund .reward .reward_point b {
    flex: 1;
    text-align: right;
    padding: 0 10px
}

.fund .reward .rewards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px
}

    .fund .reward .rewards .reward_item {
        background: #e0d7d5;
        padding: 2px;
        border-radius: 5px;
        color: #000
    }

        .fund .reward .rewards .reward_item img {
            border-radius: 5px 5px 0 0;
            width: 100%
        }

        .fund .reward .rewards .reward_item h2 {
            font-size: 12px;
            padding: 5px
        }

        .fund .reward .rewards .reward_item .row {
            margin-top: auto;
            padding: 5px 5px
        }

            .fund .reward .rewards .reward_item .row b {
                font-size: 14px
            }

            .fund .reward .rewards .reward_item .row .redeem_btn {
                background: linear-gradient(#f16e00, #b41e00);
                color: #fff;
                margin-left: auto;
                font-size: 13px;
                padding: 5px 15px;
                border-radius: 3px
            }

.fund .reward ol {
    padding-left: 20px;
    font-size: 13px
}

    .fund .reward ol li {
        margin-bottom: 10px
    }

.addbank .popup_window {
    width: 400px;
    padding: 0;
    overflow: hidden
}

.addbank h1 {
    width: 100%
}

.addbank form {
    width: 100%;
    padding: 20px
}

    .addbank form .input {
        margin-bottom: 10px
    }

        .addbank form .input span {
            color: gray;
            font-size: 13px;
            margin-bottom: 3px
        }

        .addbank form .input input, .addbank form .input select {
            width: 100%;
            padding: 5px 10px;
            font-size: 13px;
            height: 40px;
            border-radius: 3px;
            border: none;
            background: #323232 !important;
            color: #fff
        }

            .addbank form .input input:-moz-read-only, .addbank form .input select:-moz-read-only {
                background: #ebebeb
            }

            .addbank form .input input:read-only, .addbank form .input select:read-only {
                background: #ebebeb
            }

            .addbank form .input input:focus + p, .addbank form .input select:focus + p {
                display: block
            }

    .addbank form button {
        background: linear-gradient(#f16e00, #b41e00);
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        border: none;
        margin-top: 30px
    }

.redeem_reward .popup_window {
    width: 700px;
    padding: 30px;
    align-items: stretch;
    border-radius: 10px;
    background: #141414;
    border: solid 1px #323232
}

.redeem_reward .reward_info {
    width: 50%;
    margin-right: 30px
}

    .redeem_reward .reward_info img {
        width: 100%;
        border-radius: 2px;
        margin-bottom: 5px
    }

    .redeem_reward .reward_info h2 {
        color: #f16e00;
        font-size: 15px;
        line-height: 3ch;
        margin-bottom: 10px
    }

    .redeem_reward .reward_info p {
        font-size: 12px;
        color: gray;
        line-height: 3ch
    }

.redeem_reward form {
    width: 50%
}

    .redeem_reward form input, .redeem_reward form textarea {
        width: 100%;
        margin-bottom: 5px;
        padding: 5px 10px;
        font-size: 13px;
        border-radius: 2px;
        border: solid 1px #e0d7d5 !important;
        background: #fff !important
    }

    .redeem_reward form button {
        border: none;
        padding: 5px;
        background: linear-gradient(#f16e00, #b41e00);
        color: #fff;
        border-radius: 3px;
        font-weight: bold;
        margin-top: auto
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #fff;
        -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
        animation-timing-function: cubic-bezier(0, 1, 1, 0)
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            -webkit-animation: lds-ellipsis1 .6s infinite;
            animation: lds-ellipsis1 .6s infinite
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            -webkit-animation: lds-ellipsis2 .6s infinite;
            animation: lds-ellipsis2 .6s infinite
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            -webkit-animation: lds-ellipsis2 .6s infinite;
            animation: lds-ellipsis2 .6s infinite
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            -webkit-animation: lds-ellipsis3 .6s infinite;
            animation: lds-ellipsis3 .6s infinite
        }

.alert {
    color: #c8c8c8
}

    .alert .popup_window {
        max-width: 500px;
        padding: 10px 20px
    }

    .alert .icon {
        width: 40px;
        margin-right: 10px
    }

    .alert p {
        font-size: 14px;
        padding: 10px
    }

    .alert .btns {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 20px
    }

        .alert .btns button {
            min-width: 120px;
            margin: 0 10px
        }

.non_iconSelect {
    appearance: none;
}

/* Loading */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
        background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 150ms infinite linear;
            -moz-animation: spinner 150ms infinite linear;
            -ms-animation: spinner 150ms infinite linear;
            -o-animation: spinner 150ms infinite linear;
            animation: spinner 150ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
            box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
        }

/*.floating_item {
    position: fixed;
    left: 20px;
    bottom: 10px;
    -webkit-animation: pulsate-fwd 1s ease-in-out infinite both;
    animation: pulsate-fwd 1s ease-in-out infinite both;
    z-index: 999999;
}

    .floating_item img {
        width: 200px
    }

    .floating_item .close {
        width: 20px;
        position: absolute;
        right: 0;
        bottom: 100%;
        cursor: pointer
    }

.floating_right {
    left: auto;
    right: 20px
}*/

.floating_item {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 100;
    align-items: center
}

    .floating_item img {
        width: 50px;
        margin-bottom: 5px
    }

    .floating_item span {
        color: #fff;
        font-size: 10px
    }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes lds-ellipsis1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes lds-ellipsis3 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

@-webkit-keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(24px, 0)
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(24px, 0)
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fade-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes t1 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 80%;
        right: 0%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t1 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 80%;
        right: 0%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t2 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(120deg)
    }

    100% {
        bottom: 30%;
        right: 90%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t2 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(120deg)
    }

    100% {
        bottom: 30%;
        right: 90%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t3 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 45%;
        right: 45%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t3 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 45%;
        right: 45%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t4 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 20%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t4 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 20%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t5 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 40%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t5 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 40%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t6 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 55%;
        right: 40%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t6 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 55%;
        right: 40%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t7 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 50%;
        right: 88%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t7 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 50%;
        right: 88%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t8 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 20%;
        right: 75%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t8 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 20%;
        right: 75%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes p1 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateX(-10px) rotate(10deg)
    }
}

@keyframes p1 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateX(-10px) rotate(10deg)
    }
}

@-webkit-keyframes p2 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateY(-10px) rotate(10deg)
    }
}

@keyframes p2 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateY(-10px) rotate(10deg)
    }
}

@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes puff-in-center {
    0% {
        transform: scale(2);
        filter: blur(4px);
        opacity: 0
    }

    100% {
        transform: scale(1);
        filter: blur(0px);
        opacity: 1
    }
}

@keyframes puff-in-center {
    0% {
        transform: scale(2);
        filter: blur(4px);
        opacity: 0
    }

    100% {
        transform: scale(1);
        filter: blur(0px);
        opacity: 1
    }
}

@-webkit-keyframes glowing {
    0%,100% {
        opacity: 0;
        transform: scale(0) rotate(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg)
    }
}

@keyframes glowing {
    0%,100% {
        opacity: 0;
        transform: scale(0) rotate(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg)
    }
}

@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.loading_overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px)
}

    .loading_overlay .lds-facebook {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px
    }

        .loading_overlay .lds-facebook div {
            display: inline-block;
            position: absolute;
            left: 8px;
            width: 16px;
            background: #e73101;
            -webkit-animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
            animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite
        }

            .loading_overlay .lds-facebook div:nth-child(1) {
                left: 8px;
                -webkit-animation-delay: -0.24s;
                animation-delay: -0.24s;
                background: #fe8869
            }

            .loading_overlay .lds-facebook div:nth-child(2) {
                left: 32px;
                -webkit-animation-delay: -0.12s;
                animation-delay: -0.12s;
                background: #fe6036
            }

            .loading_overlay .lds-facebook div:nth-child(3) {
                left: 56px;
                -webkit-animation-delay: 0;
                animation-delay: 0
            }

@-webkit-keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px
    }

    50%,100% {
        top: 24px;
        height: 32px
    }
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px
    }

    50%,100% {
        top: 24px;
        height: 32px
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fade-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes t1 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 80%;
        right: 0%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t1 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 80%;
        right: 0%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t2 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(120deg)
    }

    100% {
        bottom: 30%;
        right: 90%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t2 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(120deg)
    }

    100% {
        bottom: 30%;
        right: 90%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t3 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 45%;
        right: 45%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t3 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 45%;
        right: 45%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t4 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 20%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t4 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(200deg)
    }

    100% {
        bottom: 20%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t5 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 40%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t5 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 40%;
        right: 50%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t6 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 55%;
        right: 40%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t6 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 55%;
        right: 40%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t7 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 50%;
        right: 88%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t7 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 50%;
        right: 88%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes t8 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 20%;
        right: 75%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@keyframes t8 {
    0% {
        bottom: 20%;
        right: 40%;
        opacity: 0;
        transform: scale(0.1) rotate(100deg)
    }

    100% {
        bottom: 20%;
        right: 75%;
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

@-webkit-keyframes p1 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateX(-10px) rotate(10deg)
    }
}

@keyframes p1 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateX(-10px) rotate(10deg)
    }
}

@-webkit-keyframes p2 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateY(-10px) rotate(10deg)
    }
}

@keyframes p2 {
    0%,100% {
        transform: none
    }

    50% {
        transform: translateY(-10px) rotate(10deg)
    }
}

@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes puff-in-center {
    0% {
        transform: scale(2);
        filter: blur(4px);
        opacity: 0
    }

    100% {
        transform: scale(1);
        filter: blur(0px);
        opacity: 1
    }
}

@keyframes puff-in-center {
    0% {
        transform: scale(2);
        filter: blur(4px);
        opacity: 0
    }

    100% {
        transform: scale(1);
        filter: blur(0px);
        opacity: 1
    }
}

@-webkit-keyframes glowing {
    0%,100% {
        opacity: 0;
        transform: scale(0) rotate(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg)
    }
}

@keyframes glowing {
    0%,100% {
        opacity: 0;
        transform: scale(0) rotate(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg)
    }
}

/* INFORMATION */
.information {
    padding: 30px 0;
    background: url("../Images/index/bg2.jpg");
    background-size: cover;
    background-position: center
}

    .information .information_nav {
        color: gray;
        font-size: 25px;
        margin-bottom: 20px
    }

        .information .information_nav .information_nav_item {
            color: #fff;
            font-size: 14px;
            padding: 0 20px;
            opacity: .5;
            cursor: pointer;
            transition: .3s;
            font-weight: bold
        }

            .information .information_nav .information_nav_item b {
                font-size: 13px;
                color: #f8d690;
                padding: 5px;
                text-align: center;
                border-radius: 99px
            }

            .information .information_nav .information_nav_item:hover, .information .information_nav .information_nav_active {
                opacity: 1
            }

    .information .information_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        display: none
    }

        .information .information_list .info_item {
            background: #191919;
            padding: 10px;
            border-radius: 5px;
            color: #fff
        }

            .information .information_list .info_item img {
                width: 350px;
                margin-right: 10px
            }

            .information .information_list .info_item .detail {
                align-items: center;
                justify-content: flex-end;
                flex: 1
            }

            .information .information_list .info_item .label {
                font-size: 15px;
                margin-bottom: 5px
            }

            .information .information_list .info_item .remain_time {
                gap: 6px
            }

                .information .information_list .info_item .remain_time .time_col {
                    align-items: center;
                    font-size: 15px;
                    color: gray
                }

                    .information .information_list .info_item .remain_time .time_col strong {
                        text-align: center;
                        padding: 5px 10px;
                        color: #fff;
                        border-radius: 2px;
                        background-color: rgba(255,255,255,.1)
                    }

            .information .information_list .info_item .popup_btn {
                white-space: nowrap;
                font-size: 14px;
                margin-top: 20px;
                text-align: center
            }

    .information .ongoing {
        display: grid
    }

.numbers span {
    color: black;
}

.balance span {
    color: white;
}

.wallet_info span {
    color: white;
}

.index .best_prod .maintenance {
    pointer-events: none;
    filter: grayscale(1);
}

    .index .best_prod .maintenance::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        background-image: url('../images/icon/maintenance.png');
        background-size: 8vmin 8vmin;
        background-position: left 75%;
        background-repeat: no-repeat;
        z-index: 2;
        border-radius: 10px;
    }

.index_slot .lobby .games .maintenance {
    pointer-events: none;
    filter: grayscale(1);
}

    .index_slot .lobby .games .maintenance::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        background-image: url('../images/icon/maintenance.png');
        background-size: 10vmin 10vmin;
        background-position: center 20%;
        background-repeat: no-repeat;
        z-index: 2;
        border-radius: 10px;
    }

.products .content .product_info .maintenance {
    pointer-events: none;
    filter: grayscale(1);
}

    .products .content .product_info .maintenance::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        background-image: url('../images/icon/maintenance.png');
        background-size: 3.5vmin 3.5vmin;
        background-position: center 40%;
        background-repeat: no-repeat;
        z-index: 2;
        border-radius: 25px;
    }

.slot .maintenance {
    pointer-events: none;
    filter: grayscale(1);
}

    .slot .maintenance::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        background-image: url('../images/icon/maintenance.png');
        background-size: 7vmin 7vmin;
        background-position: center 50%;
        background-repeat: no-repeat;
        z-index: 2;
        border-radius: 10px;
    }

.slot .slot_lobby .maintenance {
    pointer-events: none;
    filter: grayscale(1);
}

    .slot .slot_lobby .maintenance::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        background-image: url('../images/icon/maintenance.png');
        background-size: 12vmin 12vmin;
        background-position: center 50%;
        background-repeat: no-repeat;
        z-index: 2;
        border-radius: 10px;
    }

/* PAGINATION */
.pager-nav {
    margin: 16px 0;
}

    .pager-nav span {
        display: inline-block;
        padding: 10px 15px;
        margin: 1px;
        cursor: pointer;
        font-size: 14px;
        background-image: linear-gradient(#f16e00, #b41e00);
        border-radius: 3px;
        border: 1px solid #a55d07;
        box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4), inset 0 -2px 5px 1px #8a0000, inset 0 -1px 1px 3px #ffb820;
        color: white;
    }

        .pager-nav span:hover,
        .pager-nav .pg-selected {
            box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4), inset 0 -2px 5px 1px #8a0000, inset 0 -1px 1px 3px #ffb820;
        }

.fund .reward .rewards .reward_item .row {
    margin-top: auto;
    padding: 5px 5px;
    gap: 5px;
}

    .fund .reward .rewards .reward_item .row .popup_btn {
        flex: 1;
        padding: 5px 0 10px;
        font-size: 12px;
        text-align: center;
    }

.fund .reward .rewards .reward_item b {
    font-size: 14px;
    padding: 0 5px;
}

.details_reward .popup_window, .reward_detail .popup_window {
    width: 500px;
    padding: 30px;
    align-items: stretch;
    border-radius: 10px;
    background: #141414;
    border: solid 1px #323232;
}

.details_reward .reward_info {
    width: 100%;
}

    .details_reward .reward_info img {
        width: 100%;
        border-radius: 2px;
        margin-bottom: 5px;
    }

    .details_reward .reward_info h2 {
        color: #f16e00;
        font-size: 15px;
        line-height: 3ch;
        margin-bottom: 10px;
    }

    .details_reward .reward_info h4 {
        color: #f16e00;
        line-height: 3ch;
        margin-bottom: 10px;
    }

    .details_reward .reward_info p {
        font-size: 12px;
        color: gray;
        line-height: 3ch;
    }
