@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;300;400;500;600&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
}

html{
    overflow-x: hidden;
}

body{
    background-image: url('../images/rm380-03-scaled.jpg')!important;
    overflow-x: hidden;
    -ms-overflow-style: none;  
  scrollbar-width: none;
}

/* National Colors */
:root{
    --body-bg: #20252A;
    --bg-primay-: linear-gradient(180deg, #000000 0%, #ff0000 100%);
    --bg-secondary: #262B2F;
    --bg-ternary-: #414141;
    --icon-primary: #e5e5e5;
    --icon-secondary: #fff;
    --icon-active: #fff;
    --text-primary: #fff;
    --text-secondary: #ff9800;
    --text-ternary: #fff;
    --border-primary: #383E43;
    --graph-bg: #454545;
    --search-bg: #2C3137;
    --bottom-nav-bg:linear-gradient(0deg, rgba(46,46,46,1), rgba(0,0,0,1));
    --box-shadow:-2px 0px 10px rgba(0,0,0,0.5);
    --box-shadow-left:-5px 0px 15px rgba(0,0,0,0.15);
    --box-shadow-content:0px 5px 6px rgba(0,0,0,0.5);
    --box-shadow-inset:inset 0px 3px 6px rgba(0,0,0,0.15);
    --linear-btn-top: linear-gradient(180deg, #090909 0%, #ff0000 100%);
    --linear-primary-top: linear-gradient(180deg, #090909 0%, #ff0000 100%);
    --linear-mobile-top:linear-gradient(1deg, rgba(23,23,23,1), rgba(67,67,67,1));
}
    

/* National Colors */


.dataTables_wrapper{
	width:100%;
	overflow:scroll;
}


/* Main Container Start */

.container{
    width: 100%;
    height: 100%;
}

.flex{
    display: flex;
}

.column-left,.column-center,.column-right{
    height: 100vh;
}

.column-left{
    width: 10%;
    position: fixed;
    display: flex;
    flex-direction: column;
    max-width: 200px;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

.column-center{
    width: 60%;
    padding-right: 25px;
    margin-left: 10%;
}

.column-right{
    width: 25%;
    position: fixed;
    right: 0;
    max-width: 500px;
    padding: 25px 10px;
   /* background: var(--bg-secondary);*/
    box-shadow: var(--box-shadow-left);
	overflow:scroll;
	background-image: url(https://i.imgur.com/EbvnN2v.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.column-right::-webkit-scrollbar{
display:none;	
}


/* Main Container */



/* Sidebar Navigation */

.side-nav{
    height: 90%;
    max-height: 1000px;
    width: 100px;
    margin: auto;
    background-color: var(--bg-primay-);
    border-radius: 15px;
    padding: 10px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.menu{
    display: flex;
    flex-direction: column;
    margin: auto;
    list-style: none;
}

.menu-link{
    width: 60px;
    margin:auto;
    height: 60px;
    margin-bottom: 5px;
}

.menu-link a{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 12px;
}

.menu-link a svg{
    width: 30px;
    fill: var(--icon-primary);
    transition: 500ms;
}

.menu-link a svg:hover{
    fill: var(--icon-secondary);
}


.menu-active{
    background:var(--linear-btn-top) ;
    border-radius: 15px;
}

.menu-active a svg{
    fill: var(--icon-secondary);
}

/* Sidebar Navigation */



/* Profile Container */

.profile{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom:10px;
}

.profile-pic{
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
    border-radius: 100%;
    overflow: hidden;
}

.profile-pic img{
    width: 100%;
    object-fit: cover;
}

.profile-name{
    font-size: 1.2rem;
    color: var(--text-primary);
}

.prfoile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.profile-nav{
    width: 100%;
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.profile-link a{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: .8rem;
}

.link-icon {
    padding: 5px;
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #000000 0%, #ff0000 100%);
    border-radius: 100%;
}

.link-icon svg{
    width: 25px;
    fill: var(--icon-active);
}

/* Profile Container */




/* Asset */

.asset {

	width: 100%;
    padding: 0px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.asset-box{
    width: 50%;
    padding: 3px 10px 0px 5px;
    margin-left: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border:1px solid var(--border-primary);
    border-radius: 10px;
    box-shadow: inset 0px 3px 6px rgba(0,0,0,0.15);
}

.asset-icon img{
    width: 35px;
}

.asset-box span{
    font-size: 1rem;
    color: var(--text-primary);
}

/* Asset */




/* Turn */
.turn{
    padding: 10px 20px;
    color: var(--text-primary);
}

.turn-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

#turn-amount{
    padding-right: 10px;
}

.turn-graph{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
}

.graph{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

.graph-line{
    width: 20px;
    height: 150px;
    margin: 5px 0px 10px 0px;
    border-radius: 5px;
    background-color: var(--graph-bg);
    box-shadow: var(--box-shadow-inset);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1px;
    
}

.graph-progress{
    width: 100%;
    background: var(--linear-primary-top);
    border-radius: 5px;
}
/* Turn */


/* Free Credit */
.free-credit-container{
    display: flex;
    margin: 15px 15px 10px 25px;
    padding: 10px;
    justify-content: space-between;
    color: var(--text-primary);
    align-items: center;
	background: var(--body-bg);
}

.free-credit-container button{
    padding: 5px 15px;
    background: var(--linear-primary-top);
    border-radius: 5px;
    border: none;
}

.free-credit-container button:hover{
    cursor: pointer;
}

/* Free Credit */


/* Reward */
.reward{
    width: 100%;
    padding: 0px 25px;
}

.reward-header{
    font-size: 0.8rem;
    color: var(--text-primary);
    display: flex;
}

.reward-header .question{
    border: 1px solid var(--border-primary);
    border-radius: 100%;
    width: 25px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
}

.reward-header .question svg{
    width: 8px;
    fill: var(--icon-primary);
}

.reward-header .question:hover .popup-detail{ 
    opacity: 1;
}

.popup-detail{
    position: absolute;
    width: 230px;
    left: 0;
    padding: 10px;
    background-color: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    border-radius: 5px;
    transform: translateY(-100%);
    opacity: 0;
}
.reward-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reward-box{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
}

.reward-box img{
	width: 60px;
    padding: 5px;
}

.reward-progress-wrap{
    display: flex;
    width: 100%;
    flex-direction: column;
	margin: 5px 10px;
}

.reward-progress-info{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--text-primary);
}

.reward-progress-bar{
    background: var(--graph-bg);
    border: 1px solid var(--border-primary);
    height: 15px;
    border-radius: 5px;
    padding: 1px;
}

.reward-progress{
    background: var(--linear-primary-top);
    height: 100%;
    border-radius: 3px;
}

.reward-btn{
    height: 35px;
    width: 100px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    padding: 5px 5px;
    margin-left: 5px;
    font-size: .8rem;
    background: var(--linear-primary-top);
    color: var(--text-ternary);
    border: none;
}

.reward-btn:hover{
    cursor: pointer;
}


.reward-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    margin-top: 10px;
}

.reward-item{
    display: flex;
    flex-direction: column;
    margin: 5px;
    border-radius: 15px;
    overflow: hidden;
}

.reward-item img{
    width: 100%;
    object-fit: contain;
}

.reward-item button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-size: 1rem;
    border-radius: 0px 0px 15px 15px;
    border: none;
    width: 100%;
}

.reward-item button:hover{
    cursor: pointer;
}


.reward-item button img{
    width: 30px;
}

.reward-three{
    display: none;
}

.daily-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.daily-reward{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.daily-reward:hover .daily-reward-item{
    border: 1px solid #e3ff00;
    cursor: pointer;
    transition: 400ms;
}

.recieve-succeed .daily-reward-item{
    border: 1px solid #e3ff00;
    background: linear-gradient(to top,#141516,#2B2F31);
    
}

.recieve-wait .daily-reward-item{
    background: black;
    filter: blur(3px);
}

.recieve-wait .daily-date{
    color: var(--text-secondary);
}

.daily-reward-item{
    display: flex;
    padding: 5px 10px;
    width: 90px;
    border: 1px solid var(--border-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    border-radius: 5px;
    margin-bottom: 5px;
    background: var(--bg-secondary);
}

.daily-reward-item img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.daily-date{
    color: var(--text-primary);
}



.prize-active{
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh !important;
    position: absolute;
    z-index: 100 !important;
    
}

.reward-prize{
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.prize-active .reward-popup{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reward-popup{
    background: var(--body-bg);
    border-radius: 20px;
    display: none;
    padding: 25px 15px;
    position: absolute;
    width: 100%;
    max-width: 320px;
}

.recieve-btn{
    background: var(--linear-primary-top);
    padding: 10px;
    width: 80%;
    border: none;
    border-radius: 5px;
    transition: 400ms;
}

.recieve-btn:hover{
    cursor: pointer;
    background: var(--linear-btn-top);
    transition: 400ms;
}

.reward-popup img{
    width: 60%;
}

.reward-popup h3{
    color: var(--text-primary);
    font-size: 1.5rem;
}

.reward-popup h2{
    color: var(--text-primary);
    font-size: 3rem;
    padding: 10px 0px;
}

@media only screen and (max-width:768px){
    .reward-grid{
        grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
        height: unset;
    }

    .content-full{
        height: 20vh !important;
    }

    .reward-three{
        display: block;
    }


.reward-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    margin-top: 10px;
}
}
/* Reward */


/* Center */

.center-container{
    padding: 50px 20px;
    margin: auto;
}

.center-header{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.header-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img{
    height: 90px;
}

.header-search{
    display: flex;
    height: 50px;
    width: 300px;
    background: var(--search-bg);
    padding-right:10px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
}

.header-search input{
    height: 40px;
    width: 90%;
    background: var(--search-bg);
    outline: none;
    border: none;
    color: #fff;
    padding: 0px 15px 0px 25px;
    border-radius: 100px;
}
.header-search button{
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    outline: none;
    border: none;
}

.header-search button:hover{
    cursor: pointer;
}

.header-search button svg{
    height: 20px;
    position: absolute;
    fill: var(--icon-primary);
}
/* Center */

/* Content */
.center-content{
}

.content-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px 10px 0px;
    color: var(--text-primary);
}

.content-header a{
    text-decoration: none;
    color: var(--text-secondary);
}

.content-header:hover a{
    color: var(--text-primary);
    transition: 300ms ease-in;
}

.content-full{
    width: 100%;
    height: 20vw;
    background: var(--bg-primay-);
    border: 2px solid var(--border-primary);
    border-radius: 25px;
    box-shadow: var(--box-shadow-content);
    animation: fadeLeft .8s ;
    margin-top: 10px;
    position: relative;
    min-height: 300px;
}

.banner-text{
    position: absolute;
    top: 0;
    height: 100%;
    padding: 25px 0px 25px 40px;
}

.banner-text img{
    width: 40%;
    padding: 0;
}

.banner-text h3{
    font-size: 2.5rem;
    color: var(--text-primary);
    text-shadow: var(--box-shadow-content);
    margin-bottom: 40px;
    margin-top: 0;
}

.banner-text a{
    padding: 10px 50px;
    border-radius: 5px;
    background: var(--linear-primary-top);
    text-decoration: none;
    margin-top: 10px;
    color: var(--text-ternary);
}

.full-banner{
    width: 100%;
    transform: translateX(0) !important;
    height: 100%;
    object-fit: cover;
}

.banner-overflow{
    width: 105%;
    transform: translateX(-15px) !important;
}

.overflow-hidden{
    overflow: hidden;
}

.promotion-text{
    margin-top: 15px;
    padding: 15px 30px;
    background-color: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    box-shadow: var(--box-shadow-content);
}

.promotion-text h2{
    color: var(--icon-active);
}

.promotion-text{
    color: var(--text-primary);
}

.promotion-text ul li{
    margin-left: 50px;
}
/* Content */



/* Splide */
.content-third{
}


.splide__pagination{
    bottom: -20px !important;
}

.splide__arrow{
    display: none !important;
}

.third-box{
    width: 95%;
    height: 150px;
    background-color: #191e22;
    border: 0px solid var(--border-primary);
    box-shadow: var(--box-shadow-content);
    margin-bottom: 15px;
    margin-left: 5px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
}

.third-box img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.big-box{
    width: 100%;
    height: 100%;
    background-color: #191e22;
    border: 2px solid var(--border-primary);
    box-shadow: var(--box-shadow-content);
    margin-bottom: 15px;
    margin-left: 5px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
}

.big-box img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.splide__list li{
width: calc(25%) !important;
}


.splide-btn{
    width: 100%;
    height: 50%;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0;
    align-items: center;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: 100ms ease-in-out;
}


.third-box:hover .splide-btn{
    transform: translateY(0%);
    transition: 100ms ease-in-out;
}

.splide-btn a{
    width: 70%;
    text-decoration: none;
    padding: 5px;
    font-size: .8rem;
    text-align: center;
    border-radius: 5px;
    margin-top: 5px;
    background: var(--linear-primary-top);
    color: var(--text-ternary);
}
/* Splide */



/* Content Item */
.content-item{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
}

.content-item-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 15px 20px 15px;
    background-color: #191e22;
    border: 1px solid var(--border-primary);
    box-shadow: var(--box-shadow-content);
    border-radius: 20px;
    height: 150px;
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.content-item-box:hover{
    transform: scale(1.05);
    transition: 0.3s;
}

.content-item-box a{
    height: 100%;
    width: 100%;
}

.content-item-box a img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.content-item-box span{
    position: absolute;
    z-index: 100;
    width: 100%;
    bottom: 0px;
    color: #fff;
    padding: 3px;
    text-align: center;
    font-size: 12px;
    background-color: rgb(7 7 7 / 77%);
    backdrop-filter: blur(5px);
}

.slot-play{
    padding: 0 !important;
}

.slot-play a img{
    object-fit: cover;
}

@media only screen and (max-width:768px) {
    .content-item {
        grid-template-columns: repeat(auto-fit,minmax(155px,1fr)) !important;
    }
    .content-item-box{
        height: unset;
        border-radius: 15px!important;
    }
	
}
/* Content Item */




/* Content Half */
.content-half{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(50%,1fr));
}

.content-half-item{
    background-color: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    margin: 5px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    overflow: hidden;
}

.content-half-item img{
    width: 100%;
    
}

@media screen and (max-width:768px) {
    .content-half{
        width: 100%;
        grid-template-columns: repeat(auto-fit,minmax(100%,1fr));
    }
}

/* Content Half */


/* Bank */
.bank-list{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bank-box{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 5px 20px 0px 10px;
    color: var(--text-primary);
    background-color: var(--bg-primay-);
    margin-bottom: 10px;
}

.bank-icon img{
    height: 60px;
}

.bank-icon{
    width: 10%;
}

.bank-name{
    width: 25%;
}

.bank-number{
    width: 25%;
}

.bank-number input{
    background: none;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    justify-content: center;
}

.bank-holder{
    width: 25%;
}

.bank-qr{
    width: 20%;
    border-radius: 5px;
    background: var(--linear-primary-top);
    color: var(--text-ternary);
    height: 30px;
    outline: none;
    border: none;
    font-size: .8rem;
    padding: 0px 5px;
}

.bank-qr:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 500ms;
}

#qr-popup{
    position: absolute;
    backdrop-filter: blur(10px);
    backdrop-filter: contrast(-13);
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    z-index: 11;
    display: none;
    
}

.qr-box{
    
    margin: auto;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 450px;
    height: 450px;
    margin: 15px;
    background-color: var(--bg-primay-);
    border-radius: 15px;
    border: 2px solid var(--border-primary);
}

.qr-box img{
    width: 70%;
}

.qr-bank{
    padding-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.5rem;
}

#qr-quit{
    padding: 5px 15px;
    width: 50%;
    margin: 20px 0px 10px 0px;
    background: var(--linear-primary-top);
    border: none;
    font-size: 1rem;
    border-radius: 5px;
}

#qr-quit:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 300ms;
}

.qr-active{
    display: flex !important;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width:768px) {
    .bank-box{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding:10px 10px;
    }

    .bank-icon , .bank-name , .bank-number ,.bank-holder , .bank-qr{
        width: 100%;
        align-items: center;
        display: flex;
        justify-content: center;
        padding-bottom: 5px;
    }

    .bank-number input {
        text-align: center;
    }

    .bank-icon img{
        width: 100px;
        height: unset;
        object-fit: contain;
    }

    .bank-qr{
        width: 80%;
        color: var(--text-ternary);
    }

    .qr-box img{
        width: 95%;
    }
    
}
/* Bank */



/* Withdraw */
.withdraw{
    width: 100%;
    height: 350px;
    padding: 25px 50px 25px 30px;
    display: flex;
    background: var(--bg-primay-);
    border-radius: 20px;
    box-shadow: var(--box-shadow-content);
    
}
.withdraw-bank{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.withdraw-bank img{
    width: 100%;
    
}

.withdraw-detail{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-primary);
}

.detail-box{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.detail-box input{
    border-radius: 5px;
    width: 50%;
    border: 1px solid var(--border-primary);
    padding: 0px 15px;
    background: var(--search-bg);
    color: var(--text-primary);
    font-size: 1.2rem;
    text-align: center;
}

.deposit-btn{
    padding: 10px;
    border-radius: 10px;
    background: var(--linear-primary-top);
    font-size: 1.2rem;
    border: none;
}

.deposit-btn a{
    text-decoration: none;
    color: var(--text-ternary);
}

.deposit-btn:hover{
    cursor: pointer;
}

@media only screen and (max-width:768px) {
    .withdraw{
        flex-direction: column;
        height: auto;
        padding: 25px 20px;
    }
    .withdraw-bank{
        width: 100%;
    }

    .withdraw-detail{
        width: 100%;
        margin-top: 10px;
    }

    .detail-box{
        font-size: 1rem;
    }

    .withdraw-bank img {
        width: 100%;
    }

    .withdraw-detail{
        padding: 0px 10px;
    }
}
/* Withdraw*/


/* Pro Container */

.pro-container{
     width: 100%;
     display: flex;
     justify-content: space-between;
}

.pro-left{
    width: 70%;
    display: flex;
    justify-content: flex-end;
    padding: 25px 30px;
    border-radius: 15px;
    background: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    margin-right: 10px;
    color: var(--text-primary);
}

.pro-left-info{
}
.pro-left-info p{
    padding: 5px 0px;
}
.pro-left-info button{
    padding: 5px 15px;
    width: 100%;
    border: none;
    background: var(--linear-primary-top);
    margin-top: 30px;
    border-radius: 5px;
}

.pro-left-info button:hover{
    cursor: pointer;
}

.pro-condition{
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: var(--text-primary);
    padding: 5px 0px;
    margin-top: 5px;
}

.pro-right{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-primay-);
    border: 1px solid var(--border-primary);
}

.pro-right select{
    padding: 5px;
    border-radius: 5px;
    box-shadow: var(--box-shadow-inset);
}

@media only screen and (max-width:768px){
    .pro-container{
        flex-direction: column;
    }

    .pro-left , .pro-right{
        width: 100%;
    }

    .pro-left{
        flex-direction: column;
        margin-bottom: 10px;
    }
    
}

/* Pro Container */


/* History */
.history-filter{
   padding: 2px;
   display: flex;
    background-color: var(--bg-primay-);
    border-radius: 5px;
    box-shadow: var(--box-shadow-content);
}

.filter-box{
    text-align: center;
    width: 65px;
    padding: 5px;
    font-size: .8rem;
}

.filter-box:hover{
    cursor: pointer;
}

.history-active{
    background: var(--linear-primary-top);
    color: var(--text-ternary);
    border-radius: 5px;
}

.history-container{
    display: flex;
    flex-direction: column;
}

.trans-list{
    display: flex;
    justify-content: space-evenly;
    padding: 5px 15px;
    align-items: center;
    color: #fff;
    margin-bottom: 10px;
    color: #b3b3b3;
    font-weight: 300;
    font-size: .8rem;
    box-shadow: 0px 2px 3px #0000004f;
}

.trans-list.success .trans-status{
    color: #B6FE41;
}

.trans-list.wait .trans-status{
    color: var(--text-primary);
}

.trans-icon{
    fill: var(--text-primary);
    width: 15%;
    text-align: center;
}

.trans-icon svg{
    width: 30px;
    fill: #b3b3b3;
}

.trans-number{
    width: 20%;
    text-align: center;
}

.trans-date{
    width: 25%;
    text-align: center;
}

.trans-amount{
    width: 25%;
    text-align: center;
}

.trans-status{
    width: 20%;
    text-align: center;
}

.trans-list.wait{
    border-left: 5px solid #EA5E5E;
    background: linear-gradient(90deg, rgba(234,94,94,0.28) 0%, rgba(128,128,128,0) 100%);
}

.trans-list.success{
    border-left: 5px solid #ADC20D;
    background: linear-gradient(90deg, rgba(66,106,0,0.28) 0%,rgba(182,254,65,0) 100%);
}

.trans-list.header{
    margin-bottom: 10px;
    padding: 5px;
    color: var(--text-primary);
    box-shadow: none;
}

@media only screen and (max-width:768px) {
    .history-container{
        font-size: .5rem !important;
    }
}
/* History */





/* Contact */
.contact-container{
    width: 100%;
    padding: 25px;
    background: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    box-shadow: var(--box-shadow-content);
}

.qr-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
}

.qr-container img{
    margin-bottom: 10px;
	width: 50%;
	justify-content: center;
    align-items: center;
}

.report-service{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #fff;
}

.report-service span{
    font-size: .8rem;
    margin-bottom: 5px;
}

.report-service button{
    padding: 10px;
    width: 60%;
    font-size: 1.1rem;
    background: var(--linear-primary-top);
    border-radius: 5px;
    border: none;
    color: var(--text-ternary);
}

.report-service button:hover{
    cursor: pointer;
}

@media only screen and (max-width:768px) {
    .qr-container span{
        text-align: center;
        font-size: 1rem;
    }

    .report-service span{
        text-align: center;
        font-size: .8rem;
    }
}
/* Contact */




/* Password */
.password-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 25px;
    background: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    box-shadow: var(--box-shadow-content);
}

.input-wrap{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.input-wrap input{
    position: relative;
    width: 60%;
    padding: 5px;
    color: var(--text-primary);
    text-align: center;
    text-align: center;
    border: 1px solid var(--border-primary);
    background: var(--bg-secondary-);
    box-shadow: var(--box-shadow-inset);
    border-radius: 5px;
    font-size: 1.2rem;
}

.input-wrap span{
    width: 40%;
}

.password-container button{
    margin-top: 10px;
    font-size: 1.1rem;
    width: 80%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: var(--linear-primary-top);
}

.password-container button:hover{
    cursor: pointer;
}

@media only screen and (max-width:768px) {
    .input-wrap{
        width: 95%;
        align-items: center;
    }
    .input-wrap span{
        font-size: .8rem;
    }
    .password-container button{
        width: 95%;
    }
}
/* Password */




/* Mobile */
.mobile-top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mobile-logo{
    width: 150px;
    margin-bottom: 10px;
}

.mobile-asset{
    display: flex;
    width: 100%;
    margin: auto;
    height: 50px;
    border-radius: 15px;
    background: var(--linear-primary-top);
    padding: 5px 10px;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow-content);
}

.mobile-asset img{
    width: 25px;
    object-fit: contain;
}

.mobile-profile{
    display: flex;
    align-items: center;
}
.mobile-profile-pic{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    overflow:hidden;
    margin-right: 5px;
}
.mobile-profile-pic img{
    object-fit: cover;
    width: 100%;
}

#mobile-profile-name{
    margin-right: 5px;
    font-size: .8rem;
    color: var(--text-secondary);
}

.mobile-asset-amount{
    display: flex;
    background: var(--bg-ternary-);
    height: 80%;
    padding: 0px 5px;
    align-items: center;
    color: var(--text-primary);
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: var(--box-shadow-inset);
    justify-content: flex-end;
}

.mobile-asset-amount.diamond{
    width: 90px;
}
.mobile-asset-amount.credit{
    width: 140px;
}

@media only screen and (min-width:768px){
    .mobile-top{
        display: none;
    }
    .body{
        overflow-x: unset;
    }
    .third-box{
        overflow-x: unset;
    }
}
@media only screen and (max-width:768px){
    .prfoile-menu{
        padding: 20px 0px 0px 0px;
    }

    .profile-link span{
        color: var(--text-primary);
    }

    .reward-box{
        border-radius: 10px;
        padding: 5px 10px 0px 0px;
    }

    .reward{
        padding: 0px 10px;
    }

    .turn{
        padding: 10px 20px;
    }

    .reward-2,.reward-3{
        display: none;
    }

    .free-credit-container{
        margin: 10px;
    }
}

@media only screen and (max-width:1000px){
    .column-left , .column-right{
        display: none;
    }

    .column-center{
        width: 100% !important;
        margin: 0px auto 100px auto !important;
        padding: 10px;
        height: 100%;
    }

    .center-container{
        padding: 20px 20px;
    }

    .column-right{
        margin-bottom: 100px !important;
    }
}

@media only screen and (max-width:768px){
    .column-right{
        padding-bottom: 150px !important;
        margin-bottom: 0 !important;
        height: 100% !important;
    }
}

/* Mobile */

/* Mobile Menu */
.mobile-menu-container{
    width: 100%;
}

.mobile-menu-box{
    display: flex;
    list-style: none;
    padding: 10px ;
}

.mobile-menu-link{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-link span{
    font-size: 0.8rem;
    color: var(--text-primary);
}

.mobile-menu-link a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 12px;
    background: linear-gradient(180deg, #000000 0%, #ff0000 100%);
    border-radius: 50px;
    height: 60px;
    width: 60px;
}

.mobile-menu-link a svg{
    width: 30px;
    fill: var(--icon-active);
    margin: 5px 0px;
}

@media only screen and (min-width:768px){
    .mobile-menu-container{
        display: none;
    }
}
/* Mobile Menu */


/* Bottom Nav */
.bottom-nav{
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 9;
}
.bottom-nav-container{
    display: flex;
    background: var(--bg-primay-);
}

.bottom-nav-link{
    width: 20%;
    list-style: none;
    padding: 10px 0px;
}

.bottom-nav-link a{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-secondary);
    justify-content: center;
    align-items: center;
    font-size: .8rem;
    
}

.bottom-nav-link a svg{
    width: 30px;
    fill: var(--icon-primary);
}

.nav-main-btn{
    position: relative;
}

.subnav-wrap{
    position: absolute;
    transform: scale(0);
}

.subnav-active{
    display: block !important;
    transform: scale(1);
}

.subnav-active a span{
    color: var(--text-primary);
}

.icon-box{
    display: flex;
    justify-content: center;
    background-color: var(--icon-primary) !important;
    padding: 13px 13px;
    border-radius: 50px;
    height: 60px;
    width: 60px;
}

.icon-box svg{
    position: unset !important;
}


.subnav-left,.subnav-right{
    opacity: 0;
    transition: 300ms;
    width: 50px;
    height: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}

.subnav-active svg{
    width: 30px !important;
}

.subnav-active .subnav-left{
    opacity: 1;
    transform: translate(-50px,-100px);
    transition: 300ms;
}

.subnav-active .subnav-right{
    opacity: 1;
    transform: translate(80px,-150px);
    transition: 300ms;
}

.nav-main-btn a svg{
    position: absolute;
	z-index:100;
    top:-35px;
    width: 70px;
    fill: var(--icon-active);
}

.nav-main-btn a #main-btn-text{
    bottom: 10px;
    position: absolute;
    color: var(--icon-active);
}

.nav-active a svg{
    fill: var(--icon-active);
}
.nav-active a span{
    color: var(--icon-active);
}

@media only screen and (min-width:768px){
    .bottom-nav{
        display: none ;
    }
}

.overlay{
}

.overlay.overlay-active{
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(10px);
    z-index: 2;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
}
/* Bottom Nav */

/* Card */
.card-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}

.card{
    margin: 5px;
}

.card a img{
    width: 100%;
    object-fit: contain;
}

@media only screen and (max-width:768px){
    .card-grid{
        grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    }
}

/* Card */


/* Invite Container */
.invite-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.invite-status-bar{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.invite-status-box{
    width: 100%;
    min-width: 150px;
    height: 150px;
    margin: 5px;
    background-color: var(--bg-primay-);
    border: 1px solid var(--border-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    color: var(--text-primary);
    padding: 10px;
    box-shadow: var(--box-shadow-content);
    
}

.invite-status-box h4{
    font-weight: 400;
    text-align: left;
    padding: 5px 0px 10px 15px;
    width: 100%;
    font-weight: 300;
}

.invite-status-box h2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 2rem;
    transform: translateY(-10px);
    font-weight: 500;
}

.invite-link-wrap{
    display: flex;
    width: 100%;
}

.invite-link{
    width: 85%;
}

.invite-link input{
    width: 100%;
    padding: 10px 15px;
    outline: none;
    border: 1px solid var(--border-primary);
    border-radius: 5px 0px 0px 5px;
    box-shadow: var(--box-shadow-inset);
    background: var(--bg-primay-);
    color: var(--text-primary);
}

.invite-link-wrap button{
    width: 15%;
    border: none;
    border-radius: 0px 5px 5px 0px;
    background: var(--linear-primary-top);
}

.invite-link-wrap button:hover{
    cursor: pointer;
}

@media only screen and (max-width:768px){
    .invite-status-bar{
        flex-direction: column;
        height: auto;
    }
    .invite-container{
        height: 100%;
    }
    .invite-status-box{
        height: 120px;
    }
    .invite-link-wrap button{
        width: 30%;
        padding: 0px 5px;
    }
}
/* Invite Container */


/* Allies Container */
.allies-container{
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    background-color: var(--bg-primay-);
    box-shadow: var(--box-shadow-content);
    
}

.allies-table{
    width: 100%;
    align-items: center;
    color: var(--text-primary);
}
.allies-table tr th{
    padding: 10px 0px;
}

.allies-table tr td{
    text-align: center;
    padding: 10px 0px;
    font-size: .8rem;
    font-weight: 200;
}
/* Allies Container */

/* Rank Container */
.ranking-container{
    width: 100%;
    display: flex;
    margin-top: 15px;
}

.ranking-left {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.ranking-right{
    width: 55%;
    display: flex;
    flex-direction: column;
}

.rank-left-top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
}
.rank-left-bottom{
    z-index: 1;
}

.rank-left-detail{
    position: relative;
}

.rank-left-detail p{
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 250px;
    background-color: var(--bg-primay-);
    border: 1px solid var(--border-primary-);
    padding: 10px !important;
    border-radius: 5px;
    opacity: 0;
    transition: 300ms ease-in-out;
}

.rank-left-detail:hover p{
    opacity: 1;
    transition: 300ms ease-in-out;
}

.rank-left-top img{
    margin-bottom: 5px;
}

.rank-left-top h2{
    font-weight: 400;
    color: var(--icon-active);
    margin-top: 5px;
}

.rank-left-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.rank-left-header svg{
    width: 20px;
    fill: var(--icon-primary);
}

.rank-left-header:hover{
    cursor: pointer;
}

.rank-special{
    display: flex;
    flex-direction: column;
}

.rank-special-box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid rgba(70, 70, 70, 0.24);
    box-shadow: var(--box-shadow-content);
    backdrop-filter: blur(10px);
    background: var(--bg-primay-);
}

.rank-special-box img{
    width: 60px;
    object-fit: contain;
}

.rank-special-box h2{
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-primary);
}

.rank-right-top{
    width: 100%;
}

.rank-top-list{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0px 0px 0px 10px;
    padding: 0px 0px 0px 10px;
    width: 100%;
    justify-content: center;
    
}

.rank-list{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 10px;
    padding: 5px;
    box-shadow: var(--box-shadow-content);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.rank-list td{
    font-size: .8rem;
    display: flex;
    align-items: center;
    width: 25%;
    justify-content: center;
    
}

.rank-title{
    color: var(--text-primary);
    box-shadow: none;
    backdrop-filter: blur(0px);
    background: none;
    border: none !important;
}

.rank-title th{
    font-weight: 400;
    font-size: .8rem;
}


.rank-list img{
    width: 15px;
    object-fit: contain;
}

.rank-img{
    width: 50px !important;
}

.rank-1 ,.rank-2 ,.rank-3 {
    
    border: none !important;
}

.rank-1{
    background: linear-gradient(132deg, rgba(253,247,147,1) 0%, rgba(210,121,13,1) 100%);
}
.rank-2{
    background: linear-gradient(132deg, rgba(233,250,251,1) 0%, rgba(92,139,139,1) 100%);
}
.rank-3{
    background: linear-gradient(132deg, rgba(236,219,213,1) 0%, rgba(173,86,63,1) 100%);
}

.rank-rb-left , .rank-rb-right{
    width: 50%;
}

.ranking-right div table tr{
    border: 1px solid rgba(70, 70, 70, 0.24);
}

.ranking-right div table tr td{
    font-size: .5rem ;
}

.rank-rb-right,.rank-rb-left{
    color: var(--text-primary);
}

.rank-right-bottom{
    display: flex;
}

@media only screen and (max-width:1080px){
    .ranking-container{
        flex-direction: column;
    }

    .ranking-right ,.ranking-left{
        width: 100%;
        padding: 10px 0px;
    }

    .rank-top-list{
        padding: 0;
        margin: 0;
    }

    .rank-right-bottom{
        flex-direction: column;
    }

    .rank-rb-left , .rank-rb-right{
        width: 100%;
    }
    
}
/* Rank Cintainer */


/* wheel containner */
.wheel-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 10px;
}

.wheel-container img{
    width: 50%;
}

.wheel-container span{
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.wheel-container button{
    width: 250px;
    height: 60px;
    padding: 5px;
    color: var(--text-primary);
    font-size: 1.3rem;
    background: url('../img/wheel/à¸›à¸¸à¹ˆà¸¡.png') no-repeat center center/contain;
    outline: none;
    border: none;
}

.wheel-container button:hover{
    cursor: pointer;
}

@media only screen and (max-width:768px) {
    .wheel-container img{
        width: 95%;
    }
}
/* wheel containner */

/* Animation */
@keyframes fadeLeft {
    0%{
        transform: translateX(50%);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeRight {
    0%{
        transform: translateX(-100%);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes fade {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.fadeUp_3{
    animation: fadeUp .3s;
}

.fadeUp_5{
    animation: fadeUp .5s;
}

.fadeUp_8{
    animation: fadeUp .8s;
}

.fadeUp_10{
    animation: fadeUp 1s;
}

.fadeUp_12{
    animation: fadeUp 1.2s;
}


.fadeRight_3{
    animation: fadeRight .3s;
}
.fadeRight_4{
    animation: fadeRight .4s;
}
.fadeRight_5{
    animation: fadeRight .5s;
}
.fadeRight_6{
    animation: fadeRight .6s;
}
.fadeRight_7{
    animation: fadeRight .7s;
}
.fadeRight_8{
    animation: fadeRight .8s;
}
.fadeRight_9{
    animation: fadeRight .9s;
}
.fadeRight_1{
    animation: fadeRight 1s;
}
.fadeRight_11{
    animation: fadeRight 1.1s;
}

.fadeLeft_3{
    animation: fadeLeft .3s;
}
.fadeLeft_5{
    animation: fadeLeft .5s;
}
.fadeLeft_8{
    animation: fadeLeft .8s;
}
.fadeLeft_10{
    animation: fadeLeft 1s;
}
.fadeLeft_12{
    animation: fadeLeft 1.2s;
}

/* Animation */

/*********************************/
.bankselectpopup {
    display: none;
    position: fixed;
    height: 500px;
    max-width: 400px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
	z-index:100;
    margin: auto auto;
}

.inbankselectpopup {
    height: 500px;
    width: 100%;
    overflow: auto;
    background: #131724;
    box-shadow: 0 0 0 1px #a99871;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    overflow: auto;
    animation: showbank .5s ease 0s normal none;
}

.closeanimationselectbank {
    animation: showbankclose .5s ease 0s normal none;
}

.btnclosebankselect {
    position: absolute;
    right: 30px;
    top: 3px;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    padding: 0 7px;
    background: #ed2638;
    color: white;
    transition: .3s;
}

.bankselectpopup img {
    width: 70px;
}

.bankselectpopup table {
    width: 100%;
    text-align: center;
}

.bankselectpopup td {
    padding: 10px;
    width: 50%;
}

.selectbank {
    cursor: pointer;
}

/*********************************/



/*********************************/
.bankselectpopup2 {
    display: none;
    position: fixed;
    height: 500px;
    max-width: 400px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto auto;
}

.inbankselectpopup2 {
    height: 500px;
    width: 100%;
    overflow: auto;
    background: #131724;
    box-shadow: 0 0 0 1px #a99871;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    overflow: auto;
    animation: showbank .5s ease 0s normal none;
}

.closeanimationselectbank2 {
    animation: showbankclose .5s ease 0s normal none;
}

.btnclosebankselect2 {
    position: absolute;
    right: 30px;
    top: 3px;
    border-radius: 5px;
    border: none;
    font-size: 20px;
    padding: 0 7px;
    background: #ed2638;
    color: white;
    transition: .3s;
}

.bankselectpopup2 img {
    width: 70px;
}

.bankselectpopup2 table {
    width: 100%;
    text-align: center;
}

.bankselectpopup2 td {
    padding: 10px;
    width: 50%;
}

.selectbank2 {
    cursor: pointer;
}
.dataTables_wrapper {
    width: 100% !important;
    overflow: scroll !important;
}
/*********************************/

.game-slot{
	padding:0 !important;
}

.game-slot img{
	width:100% !important;
	height:100% ;
	object-fit:cover ;
	padding:0px !important;