﻿@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: "infra";
    src: url("../webfonts/InfraRegular.otf");
}

body {
    font-family: "infra", sans-serif;
    line-height: 1.6;
    font-size: 15px;
    margin: 0 auto;
    color: #191919;
    background-color: #031428;
    min-width: 1180px;
    max-width: 1920px;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
}

    a:hover, a:focus {
        text-decoration: none;
        color: #fff;
    }

button:focus {
    outline: 1px dotted;
    outline: transparent;
}

img {
    max-width: 100%;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #666;
    width: 100%;
}

.container {
    width: 1180px;
    max-width: 1180px;
}

.header_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 98;
    background-color: #0c101b;
    /* min-height: 55px; */
    padding: 0 10px;
    font-size: 12px;
    display: flex;
}

.header_main {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.header_left {
    display: flex;
    align-items: center;
    /* width: 100%; */
}

    .header_left ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style-type: none;
        margin-left: 30px;
    }

        .header_left ul li {
            /* padding: 0px 10px; */
            height: 100%;
        }

            .header_left ul li a {
                height: 100%;
                display: flex;
                align-items: center;
                color: #fff;
                background: transparent;
                padding: 0 13px;
                justify-content: center;
                min-height: 65px;
                /* min-width: 80px; */
                text-transform: uppercase;
            }

                .header_left ul li a:hover, .header_left ul li.active a:hover {
                    color: #ffffff;
                    /* background: linear-gradient(180deg,#c622ff,#ff1d91); */
                }

            .header_left ul li.active a, .header_left ul li:hover a {
                color: #ffffff;
                background: linear-gradient(180deg,#c622ff,#ff1d91);
            }

            .header_left ul li:hover .dropinner a {
                background: unset;
            }

.header_right {
    display: flex;
    align-items: center;
    /* width: 100%; */
}

.logo img {
    padding: 10px;
}

.login_btn {
    width: auto;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 130px;
    margin: 0 5px;
    border: solid 1px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(180deg, #24cdeb, #e82c7d);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #0c101b inset;
    min-height: 29px;
}

.reg_btn {
    width: auto;
    border: 1px solid #caa23f00;
    color: #ffffff;
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 130px;
    margin: 0 5px;
    min-height: 29px;
}

.lang-box {
    display: inline-block;
    /* width: 25%; */
    /* float: right; */
    padding: 2px 0;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
}

    .lang-btn img {
        width: 22px;
    }

    .lang-btn:focus {
        outline: none;
    }

    .lang-btn.dropdown-toggle::after {
        color: #fff;
        /* position: absolute; */
        top: 13px;
    }

.dropdown-menu.language {
    padding: 0 5px;
    background: rgba(0,0,0,0.7);
    min-width: auto;
    border: none;
    text-align: center;
}

    .dropdown-menu.language a {
        padding: 1px 5px;
    }

        .dropdown-menu.language a:hover {
            background: transparent;
        }

            .dropdown-menu.language a:hover img {
                filter: drop-shadow(0px 0px 2px #fff);
            }

.dropmenu {
    background: #000000f2;
    position: absolute;
    padding: 15px 0px;
    top: 65px;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    visibility: hidden;
}

.main-nav li.nav-item:hover .dropmenu {
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.dropinner {
    max-width: 1500px;
    margin: auto;
    display: flex;
    /* grid-template-columns: repeat(5, 1fr); */
    /* align-items: flex-end; */
    grid-gap: 20px 1px;
    justify-content: center;
    flex-flow: wrap;
}

.dm-item {
    display: inline-block;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

.dropinner .dm-item img {
    width: 125px;
    border-radius: 0px;
}

.gm_name {
    margin-top: 5px;
    color: #fff;
    transition: all 0.5s;
    font-size: 13px;
}

    .gm_name img {
        max-width: 35px;
        vertical-align: text-bottom;
    }

.dropmenu:hover a {
    opacity: 0.5;
    transition: all 0.5s;
}

    .dropmenu:hover a:hover {
        opacity: 1;
        transition: all 0.5s;
    }

.main-nav .navlink img {
    height: 30px;
}

.body_main {
    padding-top: 64px;
}

.products_tab_wrap {
    display: grid;
    width: 100%;
    grid-template-columns: 57% 43%;
    position: relative;
}

.products_tab_wrap_bullet .nav-tabs {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    border-bottom: none;
}

    .products_tab_wrap_bullet .nav-tabs li {
        width: 20%;
    }

        .products_tab_wrap_bullet .nav-tabs li a.nav-link {
            border: none;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            padding: 0;
        }

            .products_tab_wrap_bullet .nav-tabs li a.nav-link.active {
                background-color: transparent;
                padding: 0;
            }

            .products_tab_wrap_bullet .nav-tabs li a.nav-link img {
                filter: grayscale(1);
            }

            .products_tab_wrap_bullet .nav-tabs li a.nav-link.active img {
                filter: grayscale(0);
            }

            .products_tab_wrap_bullet .nav-tabs li a.nav-link:hover img {
                filter: grayscale(0);
            }

            .products_tab_wrap_bullet .nav-tabs li a.nav-link:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 7px #0f1324;
                -webkit-transition: .3s ease-in-out;
                transition: .3s ease-in-out;
                background-color: transparent;
                padding: 0;
            }

.menubar-coldetailOne {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.iframe_container {
    position: relative;
    width: 100%;
    height: 100%;
}

    .iframe_container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.products_tab_wrap_bullet .nav-tabs li a.nav-link .products_name {
    text-align: center;
    padding: 10px;
    color: #ffffff;
    background-color: #0c101b;
    font-weight: bold;
}

.products_tab_wrap_bullet .nav-tabs li a.nav-link.active .products_name {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    color: #fff;
}

.menubar-coldetail {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.coltext2 {
    width: 64%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.colimgshow {
    position: absolute;
    bottom: 0;
    width: 23%;
    left: 0;
    -webkit-animation: pulse 1.5s;
    animation: pulse 1.5s;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(.95)
    }

    70% {
        transform: scale(1)
    }

    100% {
        transform: scale(.95)
    }
}

.title__product1 {
    font-size: 37px;
    color: #e5b05a;
    text-align: left;
    margin-left: 26px;
}

.des__detailTwo {
    color: #858585;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px !important;
    text-align: left;
    margin: 10px 10px 15px 26px;
}

.box-icon {
    text-align: left;
    margin-left: 26px;
}

    .box-icon > img {
        width: 7%;
        margin: 10px 10px 0 0;
        cursor: pointer;
    }

.index_dep_section {
    background-image: url(../images/index/mobileapp.jpg);
    min-height: 330px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right;
    width: 100%;
}

.index_dep_section_wrap {
    display: grid;
    grid-template-columns: 500px auto;
    padding: 30px;
    text-align: center;
    max-width: 1280px;
    margin-left: auto;
    grid-gap: 138px;
}

.deposit_txt_index {
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    margin-top: 41px;
}

.points_txt {
    background: -webkit-linear-gradient(#f9e885, #caa23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px;
}

.deposit_products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
}

.deposit_products_wrap {
    background-color: #ffffff42;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    width: 114px;
    padding: 5px;
    font-size: 13px;
}

    .deposit_products_wrap img {
        margin-top: -29px;
        height: 105px;
    }

.btn_index_deposit {
    width: auto;
    border: 1px solid #caa23f;
    color: #000000;
    background: linear-gradient(to bottom, #f9e885 0%, #caa23f 100%);
    border-radius: 15px;
    min-width: 93px;
    font-weight: 900;
    font-size: 45px;
    padding: 0 30px;
    margin: auto;
    margin-top: 103px;
}

.winner_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

.winner_wrap_inn {
    background-color: #ffffff42;
    border-radius: 15px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
    padding: 10px;
}

.yellow_txt {
    color: #fdcc04;
}

.winner_title {
    text-align: center;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 10px;
}

/*@media screen and (max-width: 1366px) {
.deposit_txt_index {
    color: #fff;
    font-size: 29px;
    font-weight: bold;
    margin-top: 41px;
}
.index_dep_section_wrap {
    display: grid;
    grid-template-columns: 368px auto;
    padding: 30px;
    text-align: center;
    max-width: 818px;
    margin-left: auto;
    grid-gap: 22px;
}
.deposit_products_wrap img {
    margin-top: -29px;
    height: 70px;
}
.btn_index_deposit {
    width: auto;
    border: 1px solid #caa23f;
    color: #000000;
    background: linear-gradient(to bottom, #f9e885 0%, #caa23f 100%);
    border-radius: 15px;
    min-width: 93px;
    font-weight: 900;
    font-size: 32px;
    padding: 0 30px;
    margin: auto;
    margin-top: 44px;
}
.deposit_products_wrap {
    background-color: #ffffff42;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    width: 82px;
    padding: 5px;
    font-size: 11px;
}
}*/

.index_aff_section {
}

.index_aff_container {
    position: relative;
}

.aff_wrap {
    position: absolute;
    color: #fff;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 27%;
    left: 0;
    right: 52%;
}

.aff_01 {
    font-size: 33px;
}

.aff_02 {
    font-size: 13px;
}

.aff_03 {
    color: #85827a;
    font-size: 12px;
}

.aff_btn {
    min-width: 121px;
    padding: 8px;
}

.footer_top {
    background: linear-gradient(to bottom, #0c101b 0%, #0c101b 100%);
    text-align: center;
    padding: 10px;
    color: #ffffff;
}

.footer_reg_btn {
    color: #ffffff;
    border: 1px solid #23232300;
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    background-color: transparent;
    box-shadow: none;
}

.footer_spon {
    border-top: 1px solid #8d8d98;
    position: relative;
}

    .footer_spon span {
        position: absolute;
        color: #8d8d98;
        left: 0;
        right: 0;
        bottom: -8px;
        display: flex;
        justify-content: center;
        background-color: #000003;
        z-index: 1;
        width: 113px;
        margin: auto;
    }

.footer_bottom {
    padding: 30px 0;
    background: linear-gradient(to bottom, #000001 0%, #020023 100%);
}

.footer_logo {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
    grid-gap: 15px;
    margin-bottom: 30px;
}

.footer_wrap_logo {
    background-color: #021020;
    border-radius: 5px;
    border: 1px solid #07294f;
}

.footer_desc {
    padding: 50px 0 0px 0;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
}

.footer_desc_left {
    /* display: flex; */
    /* align-items: center; */
}

.footer_desc_left_txt {
    color: #8d8d98;
    /* margin-left: 30px; */
    font-size: 13px;
    padding-top: 10px;
    flex: 100%;
}

.footer_desc_right {
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex: 100%;
}

    .footer_desc_right ul {
        padding: 0;
        margin-top: 10px;
        list-style-type: none;
        display: flex;
        gap: 10px;
    }

        .footer_desc_right ul li a {
            color: #8d8d98;
        }

            .footer_desc_right ul li a i {
                margin-right: 10px;
            }

            .footer_desc_right ul li a img {
                margin-right: 10px;
                width: 15px;
            }

.footer_copyright {
    background-color: #020023;
    padding: 20px;
}

.Copyright_txt {
    color: #8d8d98;
    text-align: center;
}

.footer_payment_icon {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

    .footer_payment_icon img {
        margin-right: 10px;
    }
/*modal*/
.modallogin_main .modal-content {
    background: #240030;
    /* background-size: 100% 100%; */
    padding: 25px 55px 38px 55px;
    position: relative;
    border: 1px solid #c622ff;
}

.modallogin_main .modal-header {
    color: #fff;
    text-align: center;
    margin: auto;
    border-bottom: none;
    text-shadow: 0px 0px 6px #c622ff, 0px 0px 6px #c622ff;
}

    .modallogin_main .modal-header .modal-title {
        font-size: 28px;
        text-transform: uppercase;
    }

.modallogin_main .close {
    position: absolute;
    right: 14%;
    color: #ffffff;
    opacity: 1;
    text-shadow: none;
    font-size: 39px;
    top: 16px;
}

form.reg-form {
    display: grid;
    grid-template-columns: 125px auto;
    font-size: 15px;
    grid-gap: 14px 10px;
    max-width: 530px;
    margin: auto;
    color: #6a6a6a;
}

.f-label {
    text-align: right;
    font-weight: 600;
    font-size: 16px;
    align-self: center;
    color: #fff;
}

.f-field {
    position: relative;
}

.reg-form input, .reg-form select {
    border-radius: 4px;
    background: #000000;
    border: 1px solid #969696;
    box-shadow: inset 0px 1px 5px 0px rgb(0 0 0 / 14%);
    padding: 0px 20px;
    height: 36px;
    color: #fff;
}

span.toggle-password {
    position: absolute;
    right: 0;
    height: 36px;
    padding: 11px 10px;
    font-size: 18px;
    border-radius: 0 5px 5px 0;
    border: 1px solid #969696;
}

.f-button {
    grid-column: 1/3;
    text-align: center;
}

select.phone-code {
    width: 27%;
    display: inline-block;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

input.phone-field {
    width: 73% !important;
    display: inline-block;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}

.mobilefield {
    display: flex;
}

.btnNext {
    min-width: 130px;
    border-radius: 5px;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #caa23f00;
    color: #ffffff;
    background: linear-gradient(180deg,#c622ff,#ff1d91);
}

.veri_icon {
    position: absolute;
    right: 0;
    padding: 3px;
}

.modal-dialog {
    max-width: 800px;
}

.forgot_a {
    text-align: center;
}

    .forgot_a a {
        color: #fff;
    }

.support__bar {
    position: fixed;
    background-color: #26272b;
    bottom: 35px;
    right: 0;
    width: 150px;
    height: 200px;
    top: 260px;
    border-radius: 0.25rem;
    transform: translate(103px,0);
    visibility: visible;
    -webkit-transition: all ease-in-out;
    transition: all 110ms ease-in-out;
    cursor: pointer;
    border-radius: 1rem;
    border: 2px solid #c622ff;
    box-shadow: 0 0 15px #c622ff;
    z-index: 5;
}

    .support__bar:hover {
        position: fixed;
        background-color: #26272b;
        bottom: 35px;
        right: 0;
        width: 229px;
        height: 339px;
        top: 260px;
        border-radius: 0.25rem;
        transform: translate(103px,-75px);
        visibility: visible;
        -webkit-transition: all 100ms ease-in-out;
        transition: all 100ms ease-in-out;
        cursor: pointer;
        border-radius: 1rem;
        border: 2px solid #c622ff;
        box-shadow: 0 0 15px #c622ff;
        z-index: 9999;
    }

.text__support {
    position: fixed;
    display: flex;
    align-items: center;
    width: 185px;
    height: 55px;
    right: 0;
    bottom: 63px;
    color: #ffffff;
    transform: translateX(-30px) rotate(90deg);
    padding: 11px;
    font-size: 18px;
    transition: all 130ms ease-in-out;
    z-index: 1;
    font-weight: 700;
}

.support__bar:hover .text__support {
    display: none;
}

.logo__support {
    transform: rotate(270deg);
}

.banner__right {
    display: none;
}

.support__bar:hover .banner__right {
    display: block !important;
    transition-delay: 1s;
}

.btn__sup__contact {
    background-color: transparent;
    border-radius: 10px;
    border: none;
    z-index: 0;
    width: 113px;
    height: auto;
}

.icon__contact__sup1 {
    margin: 4px 0 0 5px;
    z-index: 1;
    padding: 9px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

.btn__sup__contact:hover {
    background-color: transparent;
}

.icon__contact__sup1 i {
    font-size: 25px;
}

.icon__contact__sup1.icon__contact__supimg img {
    width: 20px;
    filter: brightness(2.5);
}

.login_bg {
    background-image: url(../images/Background.png);
    background-repeat: no-repeat;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

.sports_bg {
    background-image: url(../images/Background.png);
    background-repeat: no-repeat;
    min-height: 440px;
    background-position: center;
    background-size: cover;
}

.casino_bg {
    background-image: url(../images/Background.png);
    background-repeat: no-repeat;
    min-height: 647px;
    background-position: center;
    background-size: cover;
}

.fish_bg {
    background-image: url(../images/Background.png);
    background-repeat: no-repeat;
    min-height: 647px;
    background-position: center;
    background-size: cover;
}

.slot_bg {
    /*background-color: #031428;*/
    background-image: url(../images/Background.png);
    background-repeat: no-repeat;
    min-height: 647px;
    background-position: center;
    background-size: cover;
}

.body_product_wrap {
    text-align: center;
    padding-top: 20px;
    display: flex;
    grid-gap: 20px 54px;
    justify-content: center;
    flex-flow: wrap;
}

.ply_btn {
    display: block;
    margin: 20px auto;
    /* min-width: 191px; */
    padding: 6px;
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(180deg,#565656,#565656);
}

    .ply_btn:hover {
        display: block;
        margin: 20px auto;
        /* min-width: 191px; */
        padding: 6px;
        font-size: 15px;
        font-weight: 900;
        background: linear-gradient(180deg,#c622ff,#ff1d91);
    }

.body_product_wrap img {
    width: 300px;
}

.slot_spin {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 342px;
    align-items: center;
}

.jackpot_txt {
    position: absolute;
    color: #ffd55b;
    font-size: 60px;
    font-weight: 600;
    margin-top: 15px;
}

.slots_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    padding: 35px 0;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.slots_product {
    position: relative;
}

.slots_product_btn {
    position: absolute;
    min-width: 100px;
    min-height: 28px;
    width: 180px;
    height: 47px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 25px;
    left: 33px;
    font-size: 17px;
    background: linear-gradient(to bottom, #f9e885 0%, #caa23f 100%);
    font-weight: 900;
    border-radius: 10px;
    border: 1px solid #b2861a;
}

    .slots_product_btn:hover {
        filter: brightness(1.15) drop-shadow(0 0 4px #f0b90b);
    }
/*promotion*/
.filter-menu-bar {
    margin: 15px 0;
    min-height: : 54px;
    text-align: center;
    display: flex;
    justify-content: left;
}

.mix {
    display: none;
}

.promo-boxes {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px 30px;
    text-align: center;
    margin: 30px 0 10px 0;
}

.pmbox {
    display: grid;
    min-height: : 61px;
    position: relative;
    color: #ffd55b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
    font-size: 11px;
    text-align: center;
    padding: 0px 10px;
    cursor: pointer;
    border: 1px solid #c622ff;
    border-radius: 5px;
    margin: 0 10px;
    justify-items: center;
    background-color: #080b0d;
    /* -webkit-box-shadow: inset 0 0 30px #00f; */
    -moz-box-shadow: inset 0 0 30px #00f;
    /* box-shadow: inset 0 0 30px #3c3c3c; */
    min-width: 95px;
    color: #fff;
}

    .pmbox img {
        filter: brightness(3);
    }

    .pmbox.active, .pmbox:hover {
        /* filter: brightness(1.15) drop-shadow(0 0 4px #f0b90b); */
        background: linear-gradient(180deg,#c622ff,#ff1d91);
        color: #fff;
    }

        .pmbox.active img, .pmbox:hover img {
            filter: brightness(3);
        }

.promo-bx {
    /* border: 1px solid; */
    /* border-image-source: linear-gradient(45deg, #fadd91,#815816,#d7a341,#eec95b); */
    /* border-image-slice: 1; */
    border-radius: 10px;
    position: relative;
}

    .promo-bx:hover {
        /* filter: brightness(1.15) drop-shadow(0 0 4px #f0b90b); */
    }

.modal-dialog.promo {
    background: #000f16;
    background-size: cover;
    color: #fff;
    max-width: 800px;
    min-height: 611px;
    border: 2px solid #c622ff;
    filter: drop-shadow(0 0 4px #ffd55b);
    border-radius: 15px;
    top: 10%;
    position: relative;
    overflow: hidden;
}

.modal-content.promo {
    background: none;
    padding: 20px;
}

.pm-title-wrapper {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background: #000408;
    border-bottom: 1px solid #c622ff;
    padding: 12px 2px;
    margin: -20px -20px 25px;
}

.close-promo {
    background: none;
    border: none;
    border-radius: 50%;
    color: #fff;
    line-height: 1;
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    right: 2px;
    top: 5px;
    z-index: 2;
    cursor: pointer;
}

.pmtable-wrapper {
    margin-bottom: 15px;
}

.promo-table tr td {
    background: #031428;
    border: 1px solid #c622ff;
    padding: 7px 10px;
}

.gr-title {
    color: #c622ff;
    font-size: 18px;
    font-weight: 700;
    padding: 0 5px;
}

.grlist ul {
    padding: 0 20px;
    font-size: 13px;
}

.promo-title-wrapper {
    background: #102033;
    width: 100%;
    min-height: 113px;
    text-align: left;
    margin: auto;
    text-transform: uppercase;
    padding: 10px 12px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .promo-title-wrapper h4 {
        color: #ff1d91;
        font-size: 14px;
        font-weight: 700;
        height: 34px;
        margin-bottom: 2px;
        line-height: 1;
        display: grid;
        align-items: center;
    }

.smtitle {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
}

.date-promo {
    font-weight: 600;
    font-size: 11px;
    margin-top: 2px;
    color: #fff;
}

.promo-dl img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
}

.promo_btn {
    margin: 0;
    margin-top: 10px;
    min-width: 130px;
    padding: 6px;
    font-weight: 900;
    font-size: 12px;
    /* position: absolute; */
    right: 27px;
    bottom: 26px;
}
/*promotionEND*/

.info_bg {
    background-color: #010a14;
    padding: 20px 0;
    margin: 20px 0;
    border-radius: 10px;
    min-height: 500px;
}

.info_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

    .info_menu ul li {
        border: 1px solid #ffffff;
        border-radius: 10px;
        margin: 0 20px;
        padding: 10px;
        background-color: #010a14;
    }

        .info_menu ul li.active, .info_menu ul li:hover {
            background: linear-gradient(180deg,#c622ff,#ff1d91);
        }

        .info_menu ul li img {
            filter: brightness(4);
        }

        .info_menu ul li.active img, .info_menu ul li:hover img {
            filter: brightness(0);
        }

        .info_menu ul li a {
            color: #ffffff;
        }

        .info_menu ul li.active a, .info_menu ul li:hover a {
            /* background: linear-gradient(180deg,#c622ff,#ff1d91); */
            color: #000;
        }

.title-info {
    text-align: center;
    background: #013B7A;
    color: #fff;
    font-weight: 700;
    padding: 8px;
    font-size: 17px;
}

.info-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 15px;
    border-bottom: 1px solid #d3d3d3;
}

.info_item {
    display: block;
    color: #8d8d8d;
    text-align: center;
    font-size: 17px;
    padding: 15px 0;
}

    .info_item img {
        filter: grayscale(1);
        margin-bottom: 15px;
    }

    .info_item:hover, .info_item.active {
        color: rgb(0, 112, 209);
    }

        .info_item:hover img, .info_item.active img {
            filter: none;
        }

.faq-card, .tnc-card {
    border-bottom: 1px solid #d3d3d3;
}

button.btn-tnc {
    background: #ffd55b;
    color: #000000;
    font-size: 16px;
    border: none;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 15px;
    position: relative;
}

    button.btn-tnc.collapsed {
        background: none;
        color: #fff;
    }

.tnc-body {
    padding: 20px 15px;
    color: #ffffff;
}

button.btn-tnc::after {
    content: '>';
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 17px;
    transform: rotate(270deg);
    transition: all 0.3s;
}

button.btn-tnc.collapsed::after {
    content: '>';
    transform: rotate(90deg);
    transition: all 0.3s;
}

.copyright-info {
    padding: 15px 15px;
    text-align: right;
    font-size: 12px;
    color: #8d8d8d;
}

.termcaps {
    color: #ffffff;
    font-size: 16px;
    margin: 10px 15px;
    border-top: 1px solid rgb(7 88 175 / 50%);
    padding-top: 10px;
}

/*afterlogin*/
.btn-msg {
    color: #fff;
    font-size: 17px;
    margin-right: 10px;
}

.btn_acc {
    font-size: 13px;
    width: 90px;
    border: 1px solid #d7b556;
    background: #00000094;
    border-radius: 16px;
    color: #d7b556;
}

.btn_bal {
    font-size: 13px;
    background: #00000094;
    border-radius: 5px;
    color: #ffffff;
    min-width: 133px;
    border: 1px solid #c622ff;
    padding: 3px;
}

.acc_login {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.option-drop {
    position: relative;
    text-align: center;
}

.btn_logout {
    font-size: 13px;
    min-width: 180px;
    border: 1px solid #d7b556;
    background: #d7b556;
    border-radius: 26px;
    color: #ffffff;
    min-height: 36px;
    margin-left: 18px;
    margin-bottom: 15px;
}

    .btn_logout:hover {
        background-image: linear-gradient(to bottom, #6a718e 0%, #838db4 100%);
        color: #ffffff;
    }

.dropdown-option {
    display: none;
    position: absolute;
    background: url(../images/index/index-header-bg.jpg)repeat-x;
    background-size: cover;
    z-index: 2;
    top: 100%;
    right: 0;
    width: 250px;
    text-align: center;
    border-radius: 0;
    border: 1px solid #cba98c;
    margin-top: 10px;
}

    .dropdown-option ul {
        padding: 0;
        margin: 0;
    }

        .dropdown-option ul li {
            list-style-type: none;
        }

            .dropdown-option ul li a {
                color: #6a718e;
                padding: 4px 0;
                display: block;
                font-size: 14px;
            }

.option-drop:hover .dropdown-option {
    display: block;
    z-index: 2;
}

.balance-drop:hover .dropdown-balance {
    display: block;
}

.dropdown-balance {
    display: none;
    position: absolute;
    width: 400px;
    background: #031428;
    /* background-size: cover; */
    color: #ffffff;
    z-index: 2;
    text-align: center;
    border: 1px solid #083f7f;
    right: 10%;
    padding-top: 12px;
    margin-top: 10px;
}

.dropdown-balance_emtpy {
    height: 11px;
    top: -12px;
    position: absolute;
    width: 100%;
}

.summary-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 9px 0px;
    font-size: 14px;
    padding-bottom: 10px;
}

.main-item,
.main-amount {
    background: linear-gradient(to bottom, rgba(157, 54, 209, 1) 0%, rgba(66, 9, 93, 1) 100%);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
}

.balc {
    display: inline-block;
    margin: 0 3px;
}

.platform-item {
    text-transform: uppercase;
    font-weight: 500;
    padding: 0px 10px;
}

.amount-item {
    text-align: right;
    height: 25px;
    padding: 0px 10px;
}

button.btn-in {
    display: inline-block;
    border: none;
    margin: 0 5px;
    height: 100%;
    padding: 0px 10px;
    background: #c622ff;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

button.btn-out {
    display: inline-block;
    border: none;
    margin: 0 2px;
    height: 100%;
    padding: 0px 10px;
    background: #353535;
    color: #caa23f;
    text-transform: uppercase;
    font-size: 13px;
}

.wallet-wrapper {
    display: grid;
    grid-template-columns: 200px auto;
    padding: 15px 15px 45px;
}

.wallet-menu {
    background: #000000;
    /* border: 2px solid #c600ff; */
    width: 200px;
    min-height: 563px;
    padding: 8px 8px 8px;
    color: #fff;
    position: relative;
    z-index: 2;
    border-radius: 10px 0 0 10px;
    box-shadow: inset 0px 0px 5px #c622ff, inset 0px 0px 5px #c622ff, 0px 0px 1px 2px #c622ff, 0px 0px 13px 3px #c622ff;
}

.wallet-board {
    position: relative;
    background: #000000;
    /* border: 2px solid #c600ff; */
    border-radius: 10px;
    width: auto;
    min-height: 543px;
    background-size: 100% 100%;
    margin-left: -9px;
    padding: 26px 50px 15px;
    box-shadow: inset 0px 0px 5px #c622ff, inset 0px 0px 5px #c622ff, 0px 0px 1px 2px #c622ff, 0px 0px 13px 3px #c622ff;
}

.user-account {
    text-align: center;
    font-size: 12px;
    margin: 0px -8px 0 -8px;
    min-height: 75px;
    padding: 2px;
    border-bottom: 2px solid #c622ff;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
    display: grid;
    align-items: center;
    justify-content: center;
    grid-gap: 6px;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
    grid-template-columns: 76px auto;
}

.lvl-vip {
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.75);
    word-break: break-word;
}

.menu-account {
    margin: 20px -8px 0 -8px;
}

    .menu-account a {
        display: block;
        border-bottom: 1px solid #c622ff;
        color: #bfbfbf;
        padding: 8px 15px 8px;
        font-size: 14px;
        font-weight: 600;
    }

        .menu-account a:hover, .menu-account a.active {
            background: linear-gradient(180deg,#c622ff,#ff1d91);
            color: #fff;
        }

        .menu-account a.btitle {
            color: #fff;
            font-size: 20px;
            text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
            padding: 0px 15px 0;
            margin-top: 12px;
        }

.nhv {
    pointer-events: none;
}

.menu-account a:last-child {
    border-bottom: none;
}

.main-wallet-wrapper {
    display: grid;
    grid-template-columns: auto 110px 110px;
    padding: 15px 0;
}

.mw-box {
    font-size: 16px;
    text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
    text-align: right;
    color: #fff;
    padding: 0 15px;
    align-self: center;
    font-weight: 600;
}

    .mw-box span {
        box-shadow: inset 1px 2px 5px -2px rgba(0,0,0,0.57);
        background: #032041;
        text-shadow: none;
        text-transform: uppercase;
        padding: 5px 20px;
        border-radius: 9px;
    }

.all-out-btn {
    background: #000;
    width: 100px;
    height: 35px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 0;
    border: 2px solid #c622ff;
    border-radius: 10px;
}

.deposit-btn {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    width: 103px;
    height: 35px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 0;
    border: 2px solid #c622ff;
    border-radius: 10px;
}

    .all-out-btn:hover, .deposit-btn:hover {
        filter: drop-shadow(0 0 1px rgb(255,255,255,0.9)) brightness(1.05);
        transform: scale(0.98);
    }

    .all-out-btn:focus, .deposit-btn:focus {
        outline: none;
    }

.wallet-provider-wrapper {
    background: #032041;
    color: #fff;
    box-shadow: inset 1px 2px 5px -2px rgba(0,0,0,0.7);
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-radius: 10px;
    padding: 25px 10px;
    grid-gap: 27px 0;
}

.wp-box {
    cursor: pointer;
}

    .wp-box:hover {
        filter: brightness(1.1);
    }

.wp-logo {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    width: 125px;
    height: 62px;
    margin: auto;
    text-align: center;
    padding: 8px 0;
    border: 1px solid #c622ff;
}

.wp-amount {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    color: #fff;
    border: 1px solid #c622ff;
    text-align: center;
    font-size: 13px;
    border-radius: 15px;
    padding: 1px;
    font-weight: 600;
    width: 120px;
    margin: auto;
    margin-top: 4px;
}

.nav-tabs.wallet .nav-link {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    width: 100px;
    height: auto;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 14px 10px;
    border: none;
    margin-right: 12px;
    border-radius: 10px;
}

.nav-tabs.wallet {
    border-bottom: none;
    margin-bottom: 15px;
}

    .nav-tabs.wallet .nav-item.show .nav-link, .nav-tabs.wallet .nav-link.active {
        color: #ffffff;
        background: transparent;
        border: 1px solid #c622ff;
    }

/* HIDE RADIO */
.bank-input-wrap label [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
    /* IMAGE STYLES */
    .bank-input-wrap label [type=radio] + .bank-type {
        cursor: pointer;
    }

        .bank-input-wrap label [type=radio] + .bank-type img {
            cursor: pointer;
            filter: grayscale(0.8);
            width: 69px;
        }
    /* CHECKED STYLES */
    .bank-input-wrap label [type=radio]:checked + .bank-type {
        border: 1px solid #c622ff;
        background: linear-gradient(180deg,#c622ff,#ff1d91);
        background-position: right bottom;
        transition: none;
    }

        .bank-input-wrap label [type=radio]:checked + .bank-type img {
            filter: grayscale(0);
        }

.bank-input-wrap label .bank-type {
    border: 1px solid #c622ff;
    border-radius: 6px;
    color: #fff;
}

.bank-input-wrap label {
    margin: 0 5px;
    margin-bottom: 7px;
}

.bank-input-wrap {
    background: #032041;
    padding: 9px 9px;
    border-radius: 8px;
    box-shadow: inset 0px 1px 5px -1px rgba(0,0,0,0.62);
    width: 706px;
}

    .bank-input-wrap.method {
        background: #032041;
        padding: 9px 7px;
        border-radius: 8px;
        box-shadow: inset 0px 1px 5px -1px rgba(0,0,0,0.62);
        /* width: max-content; */
    }

.bank-type {
    display: block;
    text-align: center;
    font-size: 14px;
    padding: 5px 10px;
    color: #484848;
    font-weight: 600;
    width: 125px;
    height: 33px;
}

.banking-wrapper {
    padding: 10px 0;
}

    .banking-wrapper h5, .dp-field h5 {
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

.bank-select-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 10px;
    max-width: 650px;
}

.bank-btn {
    background: none;
    border: none;
    padding: 0 10px;
    border-radius: 6px;
    /* border: 1px solid #caa23f; */
    width: 153px;
    height: 60px;
}

    .bank-btn:focus {
        outline: none;
        box-shadow: none;
        border: 1px solid #c622ff;
    }

.dropdown-menu.bank {
    background: url("../images/bank-info-board.png")no-repeat top center;
    width: 393px;
    height: 244px;
    border: none;
}

.dp-bank-detail {
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 22px 35px;
    background-color: #000;
    border: 1px solid #c622ff;
    border-radius: 10px;
}

.acc-name {
    background: #000000;
    border: 1px solid #c622ff;
    border-radius: 30px;
    padding: 2px;
    font-weight: 600;
    margin-top: 3px;
    margin-bottom: 10px;
}

.depminmax {
    line-height: 1.7;
}

.dp-field {
    margin-bottom: 20px;
    position: relative;
}

select {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

    input.dp-input, select.dp-input {
        width: 50%;
        padding: 3px 10px;
        border-radius: 5px;
        height: 30px;
        border: 1px solid #c622ff;
        display: inline-block;
    }

.dp-input:focus, .date-input:focus, .time-input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #001520;
}

input.date-input {
    width: 18%;
    padding: 3px 10px;
    border-radius: 5px;
    height: 30px;
    border: 1px solid #caa23f;
    display: inline-block;
}

select.time-input {
    width: 15%;
    margin-left: 3px;
    padding: 3px 10px;
    border-radius: 5px;
    height: 30px;
    border: 1px solid #caa23f;
    display: inline-block;
}

button.upload-button {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    font-size: 15px;
    color: #000;
    font-weight: 600;
    border: 1px solid #c622ff;
    padding: 0px 10px;
    width: 12%;
    border-radius: 35px;
    height: 30px;
    text-transform: uppercase;
    margin-left: 5px;
}

.upload-btn {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}

.agree-field {
    color: #fff;
    font-size: 16px;
}

    .agree-field input {
        vertical-align: middle;
    }

button.submit-btn {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    color: #000;
    border: 1px solid #c622ff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 24px;
    border-radius: 15px;
    box-shadow: 0px 0 10px #c622ff;
}

    button.submit-btn:focus {
        box-shadow: 0px 5px 5px -1px rgba(0,0,0,0.65);
        outline: none;
    }

    button.submit-btn:hover {
        box-shadow: none;
        background: #000000;
        color: #fff;
    }

.bank-option {
    display: block;
    text-align: center;
    font-weight: 600;
    border-radius: 7px;
    /* width: 155px; */
    /* height: 43px; */
    border: 1px solid transparent;
}

    .bank-option img {
        filter: grayscale(0.8);
        width: 153px;
        height: 44px;
    }

/* HIDE RADIO */
.ibank-option-wrapper label [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
    /* IMAGE STYLES */
    .ibank-option-wrapper label [type=radio] + .bank-option {
        cursor: pointer;
    }
    /* CHECKED STYLES */
    .ibank-option-wrapper label [type=radio]:checked + .bank-option {
        border: 1px solid #caa23f;
        background: linear-gradient(89deg, #f9e885 0%, #caa23f 100%);
        background-position: right bottom;
        transition: none;
    }

        .ibank-option-wrapper label [type=radio]:checked + .bank-option img {
            filter: grayscale(0);
        }

.ibank-option-wrapper label {
    margin: 0 5px;
    margin-bottom: 0;
}

/*** Tansfer ***/
.transfer-total-wrapper {
    padding: 15px 0;
}

    .transfer-total-wrapper .mw-box {
        text-align: left;
    }

.trans-wallet-wrapper {
    background: #032041;
    color: #fff;
    box-shadow: inset 1px 2px 5px -2px rgba(0,0,0,0.7);
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-radius: 10px;
    padding: 25px 10px;
    grid-gap: 27px 0;
}

.trans-title {
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    margin: 4px 0 5px;
    font-weight: 600;
}

.trans-wallet-wrapper label .wp-box img {
    filter: grayscale(1);
}

.trans-wallet-wrapper label:hover .wp-box img {
    filter: grayscale(0);
}
/* HIDE RADIO */
.trans-wallet-wrapper label [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
    /* IMAGE STYLES */
    .trans-wallet-wrapper label [type=radio] + .wp-box {
        cursor: pointer;
    }
    /* CHECKED STYLES */
    .trans-wallet-wrapper label [type=radio]:checked + .wp-box .wp-logo {
        box-shadow: 0 0 5px 3px #c622ff;
    }

    .trans-wallet-wrapper label [type=radio]:checked + .wp-box img {
        filter: grayscale(0) brightness(1.1);
    }

button.max-button {
    background: #001520;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #c622ff;
    padding: 0px 15px;
    width: auto;
    border-radius: 35px;
    height: 30px;
    text-transform: uppercase;
    margin-left: 5px;
}

    button.max-button:hover {
        background: #9c27b0;
        box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.65);
    }

    button.max-button:focus {
        outline: none;
    }


/** Withdrawal **/
.wbtitle {
    color: #fff;
    font-weight: 600;
    text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    font-size: 24px;
    margin: 10px 0;
}

.withdraw-wrapper {
    display: grid;
    grid-template-columns: 230px auto;
    grid-gap: 24px 4px;
}

    .withdraw-wrapper h5 {
        color: #fff;
        text-transform: uppercase;
        font-size: 15px;
        align-self: center;
        margin-bottom: 0;
    }

input:disabled {
    background: #fff;
}

.date-field span {
    color: #fff;
    padding: 0 5px;
}

input.dp-input.trans-date {
    width: 27%;
}

.max-report {
    color: #949494;
    font-weight: 600;
    font-weight: 13px;
    padding: 3px 5px;
}

.trans-table {
    margin-top: 15px;
    color: #fff;
}

    .trans-table table {
        text-align: center;
        width: 100%;
    }

        .trans-table table tr th {
            border: 1px solid #c622ff;
            padding: 4px;
            background: rgba(0,0,0,0.3);
        }

        .trans-table table tr td {
            border: 1px solid #c622ff;
            padding: 4px;
        }

        .trans-table table tr:nth-child(odd) {
            background: rgba(0,0,0,0.3);
        }

.inbox-table, .inbox-table a {
    color: #fff;
}

    .inbox-table tr th {
        border-bottom: 1px solid #fff;
        font-weight: 700;
        font-size: 17px;
        padding: 4px;
    }

.number-mail {
    text-align: center;
}

.inbox-table tr th {
    border-bottom: 1px solid #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 4px;
}

    .inbox-table tr td.date-mail, .inbox-table tr th.date-mail {
        padding-left: 20px;
    }

.inbox-table tr td {
    font-size: 15px;
    padding: 6px 5px;
}

.mail-title {
    font-weight: 500;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date-mail span {
    padding-left: 20px;
}

.inbox-table tr.read, .inbox-table tr.read a {
    color: #ffffff;
    cursor: pointer;
}

.inbox_modal_content {
    color: #fff;
}

.remark {
    color: #fff;
    margin-bottom: 10px;
    font-size: 12px;
    margin-top: 20px;
}

.qr_grid {
    grid-column: 2 / -1;
}

/*download*/
.downloadTab {
    margin: 20px 0;
}

    .downloadTab .nav-pills .nav-link {
        background: #2e2e2e;
        margin-bottom: 5px;
        height: 50px;
        color: #ffffff;
        display: flex;
        align-items: center;
        font-weight: 900;
    }

        .downloadTab .nav-pills .nav-link.active, .downloadTab .nav-pills .nav-link:hover {
            background-image: linear-gradient(180deg,#c622ff,#ff1d91);
            color: #000;
        }

.downloadbody {
    text-align: center;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}

.ndl-btn {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    color: #001c3c;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 4px;
    width: 78%;
}

    .ndl-btn:hover, .ndl-btn:focus {
        color: #406794;
    }

.adl-btn {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    color: #001c3c;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 4px;
    width: 78%;
}

    .adl-btn:hover, .adl-btn:focus {
        color: #406794;
    }

.dl {
    max-width: 500px;
    margin: auto;
}

    .dl table {
        border-collapse: collapse;
        width: 100%;
        font-size: 12px;
    }

        .dl table th {
            border: 1px solid #c622ff;
            text-align: center;
            padding: 8px;
            background-color: #080a0d;
            color: #fff;
            text-transform: uppercase;
            font-weight: 500;
        }

        .dl table td {
            text-align: left;
            padding: 8px;
            background-color: #250032;
            border: 1px solid #c622ff;
            color: #ffffff;
        }

    .dl .username_custom {
        color: #f0b90b;
    }

.downloadboxContent {
    padding: 10px;
    /* border: 1px solid #f9bb22; */
}
/*downloadEND*/

.dropdown-option.afterlogin_dropdown {
    margin-top: 0px;
    padding-top: 10px;
    background-color: #031428;
    width: 100%;
    min-width: 148px;
}

    .dropdown-option.afterlogin_dropdown ul li a {
        color: #ffffff;
        padding: 4px 0;
        display: block;
        font-size: 14px;
    }

        .dropdown-option.afterlogin_dropdown ul li a:hover {
            color: grey;
        }

.body_product_wrapper {
    width: 200px;
}

.login_wrap {
    width: 700px;
    margin: auto;
}

.logo_login {
    margin: 50px 0;
}

    .logo_login img {
        width: 200px;
    }

.forgot_wrap {
    display: flex;
    justify-content: space-between;
    max-width: 530px;
    padding-top: 30px;
    margin: auto;
}

    .forgot_wrap a {
        color: #fff;
    }

.login_wrap .f-label {
    text-align: left;
}

.login-title_wrap {
    color: #fff;
    text-align: center;
    margin: auto;
    border-bottom: none;
    text-shadow: 0px 0px 6px #083e7e, 0px 0px 6px #083e7e;
}

.login-title {
    font-size: 28px;
    text-transform: uppercase;
}

.notice-sec {
    background: #0c101b;
}

.annouce-in {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    height: 33px;
    background-color: #00a0df;
    padding: 10px;
    background-color: #0c101b;
}

.icon {
    color: #fff;
    font-size: 18px;
}

.runningtext {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    width: 100%;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
}

.vip_badge {
    width: 50px;
    margin: auto;
    font-size: 9px;
}

.aff_agent_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    border: 1px solid #ff00ea;
    padding: 0px;
    margin: 0 auto 25px auto;
    max-width: 530px;
}

.aff_agent_wrap_l {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    color: #fff;
    padding: 5px;
}

.aff_agent_wrap_r {
    color: #fff;
    padding: 5px;
}

.most_txt {
    color: #ffffff;
    margin: 10px 0px 5px 10px;
    font-size: 15px;
    font-weight: 700;
}

.main_most_scroll {
    /* overflow: hidden; */
    /* overflow-x: scroll; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 10px;
}

.main_most_games {
    /* width: 165px; */
    padding: 10px;
    margin-right: 10px;
    padding-bottom: 0.6rem;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    background: -webkit-gradient(linear, left top, left bottom, from(whitesmoke), to(#e6e6e6));
    background: -webkit-linear-gradient(whitesmoke, #e6e6e6);
    background: -o-linear-gradient(whitesmoke, #e6e6e6);
    background: linear-gradient(whitesmoke, #e6e6e6);
    background: linear-gradient(to bottom, #0c101b 0%, #3c005b 100%);
    text-align: center;
}

    .main_most_games .p1_main {
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 12px;
        margin-top: 5px;
        text-transform: uppercase;
        font-size: 12px;
    }

.p2_main {
    color: #6a6a6a;
    margin-bottom: 0;
    font-size: 10px;
}

.main_most_games .main_play {
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    background-image: linear-gradient(180deg,#c622ff,#ff1d91);
    width: 96px;
    font-size: 12px;
    padding: 3px;
    border-radius: 5px;
    margin: auto;
}

.download_main_wrap {
    position: relative;
}

.index_dw_wrap {
    max-width: 475px;
}

.index_dw_wrap_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    text-align: center;
}

.download_index_btn {
    width: auto;
    border: 1px solid #caa23f00;
    color: #ffffff;
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 130px;
    margin: 0 5px;
    min-height: 29px;
    margin-top: 16px;
}

.download_content_wrap {
    position: absolute;
    top: 50%;
    left: 29%;
    transform: translate(-50%, -50%);
}

.index_dw_wrap_download_box02 img {
    width: 177px;
}

#annoucement_modal.modallogin_main .modal-content {
    background: transparent;
    /* background-size: 100% 100%; */
    padding: 0;
    position: relative;
    border: 1px solid transparent;
}

.annocebody {
    text-align: center;
}

    .annocebody img {
        max-width: 600px;
    }
/*dailychanllege*/
.body_product_wrap_tou {
    display: grid;
    margin: 0px auto;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 25px;
    padding: 20px 0;
}

.chall-info-box {
    background: #235895;
    height: 100%;
    padding: 5px 10px;
    filter: grayscale(1);
    border-radius: 0 18px 18px 0;
}

.challe-box {
    min-width: 480px;
    max-width: 1500px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid #c622ff;
    box-shadow: 0px 0px 8px 4px rgb(223 32 209);
    /* margin-bottom: 20px; */
}

.beach-box {
    background-size: cover;
    background-position: center;
    height: 300px;
    width: calc(100% - 262px);
    float: left;
    position: relative;
    border-radius: 18px 0 0 18px;
}

.challe-1 {
    background: url("../images/pt-challe.jpg?v1")no-repeat;
}

.challe-2 {
    background: url("../images/gp-challe.jpg")no-repeat;
}

.challe-3 {
    background: url("../images/gss-challe.jpg?v1")no-repeat;
}

.challe-4 {
    background: url("../images/pp-challe.jpg?v1")no-repeat;
}

.light-box-1 {
    background: #26272b;
    float: left;
    width: 262px;
    height: 100%;
    padding: 0 15px;
}

.tbox-1 {
    font-size: 30px;
    display: inline-block;
    font-weight: 600;
    background: #fff;
    padding: 3px 3px;
    border-radius: 6px;
    margin: 1px;
    /* box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.9); */
    color: #fff;
    border: 1px solid #2f4a08;
    width: 60px;
    height: 38px;
    line-height: 1;
    background: linear-gradient(to bottom, rgba(89,89,89,1) 0%, rgba(19,19,19,1) 100%);
}

.dbox-1 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin: 3px;
    line-height: 1;
}

.btitle {
    position: absolute;
    right: 15px;
    bottom: 25px;
}

.btitle-1 {
    position: absolute;
    right: 33px;
    bottom: 26px;
}

img.logo-beach {
    position: absolute;
    right: 13px;
    top: 10px;
}

.countdown-wrap {
    background: #000;
    max-width: 252px;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.56);
    border-radius: 5px;
    margin: auto;
    text-align: center;
    margin-top: 13px;
    padding: 9px 10px;
    height: 70px;
}

.cd-1 {
    background: #950019;
}

.cd-2 {
    background: #950019;
}

.cd-3 {
    background: #07924c;
}

.cd-4 {
    background: #c622ffad;
}

.time-cap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    padding: 2px 0 0 0;
}

.tcap-1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.prize-grid- {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
    padding: 13px 0 8px 0;
}

.prize-grid-1 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
    padding: 13px 0 8px 0;
}

.p-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    padding: 0 10px;
    height: 40px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-title-1 {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    padding: 0 10px;
    height: 60px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-info {
    background: #fff;
    border-radius: 4px;
    margin: auto;
    width: 100%;
    padding: 2px 0px;
    color: #6443b3;
    font-size: 13px;
    font-weight: 600;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 5px;
}

.c-info-1 {
    background: #fff;
    border-radius: 50px;
    max-width: 215px;
    max-height: 37px;
    margin: auto;
    width: 100%;
    padding: 7px 0px;
    color: #6443b3;
    font-size: 14px;
    font-weight: bold;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.s-info-1 {
    font-weight: bold;
}

.prizes-1 {
    background: #fff;
    border-radius: 10px;
    max-width: 215px;
    max-height: 37px;
    margin: auto;
    width: 100%;
    padding: 9px 0px;
    color: #6443b3;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    line-height: 22px;
}

    .prizes-1 a {
        color: #6443b3;
    }

        .prizes-1 a:hover {
            color: #000;
        }

.medal-1 {
    position: absolute;
    left: 14px;
    top: 0px;
}

.prz-1 {
    margin-left: 40px;
}

.winner_list_btn {
    margin-top: 6px;
    display: block;
}

    .winner_list_btn:hover {
        filter: grayscale(0) drop-shadow(0px 0px 3px rgb(255,255,255));
        transition: 0.3s;
    }

a.winner_list_btn {
    display: block;
    margin-top: 10px;
}

a.winner_list_btn {
    transition: 0.3s;
    transform: scale(1);
}

    a.winner_list_btn:hover {
        filter: grayscale(0) drop-shadow(0px 0px 3px rgb(255,255,255));
        transform: scale(0.96);
        transition: 0.3s;
    }

.tnc-applied {
    color: #fff;
    font-size: 11px;
    margin-top: 0px;
    display: block;
    line-height: 0px;
}

    .tnc-applied:hover {
        color: #f6c000;
    }

.tour-bg {
    max-width: 1280px;
    display: flex;
    margin: 0px auto;
}

h4.btn-start {
    font-size: 16px;
    color: #00ff00;
    margin: 10px 0px;
    cursor: pointer;
}

h4.btn-end {
    font-size: 16px;
    color: #ffff00;
    margin: 10px 0px;
    cursor: pointer;
}

.win-list {
    position: relative;
    top: -6px;
}

.modal-content.winner {
    background: #26272b;
}

.rank-top-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    border: 1px solid #fff;
    padding: 5px 0px;
    color: #fff;
}

.winner-rank-1 {
}

.rank-row2 {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    align-content: center;
    border: 1px solid #fff;
    padding: 5px 0px;
    color: #fff;
    margin-top: 5px;
}

.rb2 {
    width: 50%;
    text-align: center;
}

.rb3 {
}

.rb3 {
    width: 50%;
    text-align: center;
}

.winner-bg h5 {
    color: #fff;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.wxclose {
    position: absolute;
    right: 15px;
    border: none;
    border-radius: 50%;
    top: 15px;
    width: 30px;
    height: 30px;
}

.rank-box {
    margin-top: 10px;
}

/*blog*/
.blog-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #0000009c;
    padding: 30px;
    /* margin-bottom: 20px; */
    color: #fff;
    border: 1px solid #ee60ff;
}

.blog-title-box {
    background: linear-gradient(to right, rgb(200 45 224) 0%, rgb(152 15 193) 100%);
    padding: 5px;
}

    .blog-title-box i {
        font-size: 28px;
        color: #ffffff;
        margin-left: 10px;
        margin-right: 10px;
    }

.blog-boxer {
    display: grid;
    grid-template-columns: 40% 60%;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 25px 0;
    grid-gap: 10px;
}

    .blog-boxer h4 {
        color: #ffffff;
        font-weight: 600;
        font-size: 26px;
    }

.blog-time-title {
    color: #ffffff;
}

    .blog-time-title p i {
        margin-right: 10px;
    }

.blog-content {
    color: #cacaca;
    margin-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.blog-boxer .moreinfo_btn {
    display: flex;
    align-items: center;
    width: 24%;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
    background: linear-gradient(to right, rgb(200 45 224) 0%, rgb(152 15 193) 100%);
    color: #fff;
}

    .blog-boxer .moreinfo_btn:hover {
        color: #fff;
        background: linear-gradient(to right, rgb(152 15 193) 0%, rgb(200 45 224) 100%);
    }

.blog-boxer_inner {
    display: grid;
    padding-bottom: 10px;
}

.blog-boxer .moreinfo_btn i {
    background: #fff;
    color: #000000;
    border-radius: 50%;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    padding: 0px;
    padding-left: 4px;
}

.seperate-line {
    height: 5px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 5px;
}

.blog-content p {
    font-weight: 700;
}

.body_product_wrap_blog {
    padding: 20px 0;
}

.gift_reward_colm {
    margin: 30px 0 50px 0;
}

span.detailrew-label {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 40px;
    color: #fff;
    background: linear-gradient(to bottom, rgba(216,160,254,1) 0%,rgba(118,131,217,1) 100%);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-transform: uppercase;
}

span.reward-points {
    font-size: 19px;
    font-weight: 800;
    padding: 5px 25px;
    color: #000;
    background: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.fa-question-circle.icon3we {
    background: linear-gradient(to bottom, rgba(216,160,254,1) 0%,rgba(118,131,217,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    font-size: 22px;
}

.gift-title {
    grid-gap: 15px;
}

.promo_close .pm-title-wrapper {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    background: #000408;
    border-bottom: 1px solid #c622ff;
    padding: 12px 28px;
    margin: -20px -20px 25px;
}

.list-reward {
    /* box-shadow: 0px 6px #6b64b3; */
    border-radius: 15px;
    /* margin-bottom: 30px; */
    background-position-y: 387px;
    overflow: hidden;
    background-size: 100%;
    background: #181717;
    border-bottom: 4px solid #6b64b3;
    position: relative;
    overflow: hidden;
}

    .list-reward:after {
        right: 0;
        border-radius: 35px;
        position: absolute;
        content: "";
        background: #6b64b3;
        width: 100px;
        height: 4px;
        left: -70px;
        bottom: 0px;
        transform: perspective(0.5em) rotateX(8deg);
        margin: auto;
    }

.reward-title {
    font-weight: 600;
    color: #7a7f8e;
    padding: 10px;
    font-size: 16px;
    min-height: 68px;
    padding-bottom: 0;
}

.reward-action {
    padding: 20px 10px;
    display: grid;
    grid-gap: 15px;
    align-items: center;
    grid-template-columns: repeat(3,1fr);
}

.rewardimg-holder img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    /* height: 241px; */
}

.reward-action span {
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    /* height: 100%; */
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
}

.reward-action .redeem {
    background: linear-gradient(to bottom, rgba(216,160,254,1) 0%,rgba(118,131,217,1) 100%);
    color: #fff;
}

span.rewardinfo {
    /* padding: 3px 18px; */
    color: #fff;
    background: linear-gradient(to bottom, rgba(216,160,254,1) 0%,rgba(118,131,217,1) 100%);
}

span.needpoints {
    font-size: 14px;
    color: #7a7f8e;
    text-align: center;
}

.reward-list {
    min-height: 500px;
}

.img_gift_wrap {
    display: flex;
    align-items: normal;
    grid-gap: 15px;
    justify-content: space-between;
}

.gift_btn_modal {
    color: #fff;
    background: linear-gradient(to bottom, rgba(216,160,254,1) 0%,rgba(118,131,217,1) 100%);
    border: none;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    margin: 0 0px;
    transition: all 0.3s;
    width: 150px;
    text-align: center;
    margin-left: auto;
    position: absolute;
    bottom: 26px;
    right: 28px;
}

.gift_tit_modal {
    color: #ab93ed;
    padding: 10px 0;
    display: grid;
    text-align: justify;
}

.img_gift_ul ul {
    padding: 0 20px;
}

@media screen and (max-width: 1280px) {
    .header_top {
        font-size: 11px;
    }
}

/* 28112023 */
.rewardlist {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

.nav > li > a {
    padding: 0;
}

.nav-tabs {
    border-bottom: none !important;
    gap: 80px;
    margin-bottom: 20pxs;
    justify-content: center;
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active,
    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
        color: #495057;
        background-color: transparent;
        border-color: #c622ff;
    }

.reward-box img {
    padding: 10px;
}

div#myTabContent {
    padding-bottom: 20px;
}

/* 08042024 */

.seo-content-wrap h5 {
    font-weight: 700;
}

.seo-content-wrap a {
    font-weight: 700;
}

.footer_desc_1 {
    padding: 50px 0 0px 0;
    display: grid;
    gap: 20px;
    grid-template-columns: 65% 35%;
}

.seo-toogle-button {
    display: inline-block;
    border-bottom: 1px solid #f71ea1;
    color: #f71ea1;
    cursor: pointer;
}

    .seo-toogle-button p {
        margin-bottom: 0px;
    }

/*21052024*/
.floating {
    position: fixed;
    width: 150px;
    z-index: 1;
    animation: floating 20s infinite;
    bottom: 248px;
    right: 3%;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-245px);
    }
}

#closeButton {
    border: none;
    background: none;
    position: absolute;
    left: -15px;
    font-size: 20px;
    font-weight: bold;
    color: #b7b7b7;
}

/* 19062024 */
.special-bg {
    background: url(../images/special/bg.jpg) no-repeat top center;
    min-height: 100vh;
    /* height: 100%; */
    background-size: cover;
}

.special-top {
    margin: 0 auto;
    text-align: center;
    padding-top: 10%;
}

.special-name span {
    color: #fff;
    font-weight: 500;
}

.special-name {
    background: linear-gradient(180deg,#c622ff,#ff1d91);
    padding: 5px 10px;
    text-align: center;
    border: none;
    border-radius: 20px;
    margin-top: 20px;
    white-space: nowrap;
    color: #fff;
    width: 150px;
}

.special-logo img {
    max-width: 50px;
    /* margin-right: 8px; */
}

.special-top img {
    max-width: 400px;
}

@keyframes blinkingEffect {
    0%, 100% {
        filter: drop-shadow(0px 0px 5px #e82c7d);
    }

    50% {
        filter: drop-shadow(0px 0px 5px #0184e2);
    }
}

.special-img {
    text-align: center;
}

.special-content {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin: 0 auto;
    padding: 50px 30px;
}

.special-product {
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
    .special-content {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 50px;
    }

    .special-top img {
        max-width: 200px;
    }
}

@media screen and (max-width: 991px) {
    .special-bg {
        background: url(../images/special/mobile-bg.jpg) no-repeat top center;
        min-height: 100vh;
        /* height: 100%; */
        background-size: cover;
    }

    .special-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-top img {
        max-width: 70%;
    }

    .special-img img {
        max-width: 100px;
    }
}

.special-logo {
    width: auto;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 0 5px;
    border: solid 1px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(180deg, #24cdeb, #e82c7d);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #0c101b inset;
    padding: 5PX;
}

.special-img {
    width: auto;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 0 5px;
    border: solid 1px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(180deg, #24cdeb, #e82c7d);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #000 inset;
    padding: 15px 0px;
    border-radius: 50%;
    animation: blinkingEffect 1s infinite;
    height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .special-img img {
        max-width: 100px;
    }

.special-body {
    height: 100%;
    min-width: 0px;
}
