@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url("../lib/font_material_icon/material_icon.woff2") format('woff2');
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow: hidden;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

::-webkit-scrollbar {
    display: none;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}  
body {
    font-family: Arial, Helvetica;
    font-size: 15px;
    line-height: 1.3;
    background: #000;
    text-transform: capitalize;
}

img, iframe {
    display: block;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.btn {
    display: block;
    padding: 8px 0;
    border: 1px solid #34740e;
    border-radius: 4px;
    font-size: 15px;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, .3);
    text-align: center;
    color: #fff;
    background-color: #4ba614;
    background-image: -webkit-linear-gradient(top, #4ba614, #008c00);
    background-image: linear-gradient(to bottom, #4ba614, #008c00);
    cursor: pointer;
    line-height: 20px;
}

    .btn.primary {
        border-color: #25729a;
        background-color: #3093c7;
        background-image: -webkit-linear-gradient(top, #3093c7, #1c5a85);
        background-image: linear-gradient(to bottom, #3093c7, #1c5a85);
        color: #fff;
    }

    .btn.warning {
        border-color: #cb9b14;
        background-color: #eab92d;
        background-image: -webkit-linear-gradient(top, #eab92d, #c79810);
        background-image: linear-gradient(to bottom, #eab92d, #c79810);
        color: #fff;
    }

    .btn.danger {
        border-color: #C62828;
        background-color: #F44336;
        background-image: -webkit-linear-gradient(top, #F44336, #B71C1C);
        background-image: linear-gradient(to bottom, #F44336, #B71C1C);
        color: #fff;
    }

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=date], input[type=time], textarea, select {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    margin: 0;
    padding: 10px;
    position: relative;
    display: block;
    outline: 0;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #fff;
    color: #000;
    -webkit-appearance: none;
    -webkit-user-select: text;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

table {
    border-collapse: collapse;
}

var {
    font-style: normal;
}

li {
    margin: 3px 0 0 18px;
    text-transform: none;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #ffffff !important;
}


#header {
    z-index: 2;
    position: relative;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-image: url(../images/black_bg.png);
    height: auto;
    width: 100%;
    text-align: center;
}

#header .logo {
    margin: 5px auto;
    height: 46px;
}

#header .link {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 15px;
}
#header .link i {
    display: block;
    line-height: 32px;
    font-size: 28px;
}

#marquee {
    color: #ffffff;
    z-index: 2;
    position: relative;
    overflow: hidden;
    background-image: url(../images/marqueebg.png);
    background-size: 100% 100%;
    color: #fff;
    font-size: 13px;
    padding: 4px 0;
    line-height: 1;
    height: 21px;
    width: 3969px;
}

    #marquee span {
        position: absolute;
        white-space: nowrap;
        animation-name: move-to-left;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-duration: 66s;
        width: 100%;
        padding-left: 100vw;
    }

@keyframes move-to-left {
    0% {
        right: 0;
    }

    100% {
        right: 100%;
    }
}

#content {
    z-index: 1;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    top: 77px;
    bottom: 55px;
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: #fff;
    background-image: url(../images/body_bg.jpg);
    overflow-y: scroll;
    visibility: visible;
}

#footer {
    color: #000000;
    z-index: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-image: url(../images/footerbg.png);
    background-size: 100% 100%;
    color: #fff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 1);
    font-size: 12px;
    height: 55px;
    background-color: #000000;
}

    #footer a.selected {
        box-shadow: none;
        background: none;
        padding: 5px 0;
        margin-top: 0;
        border-radius: 0;
    }

    #footer a {
        width: 20%;
        float: left;
        text-align: center;
        padding: 5px 0;
        position: relative;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        text-transform: uppercase;
        line-height: 15px;
        height: 100%;
        background-size: auto 100% !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        color: transparent;
    }

        #footer a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        /*
#footer a#home_btn {
    background-image: url(../images/home.png) !important;
}
#footer a#history_btn {
    background-image: url(../images/history.png) !important;
}
#footer a#redeem_btn {
    background-image: url(../images/coin.gif) !important;
}
#footer a#livechat_btn {
    background-image: url(../images/livechat.png) !important;
}
#footer a#settings_btn {
    background-image: url(../images/settings.png) !important;
}
*/
        #footer a .badge {
        }

body.C #footer a .badge {
    background: #FFFFFF;
    margin: 3px -40px;
}

#footer a .badge {
    position: absolute;
    line-height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 10px;
    top: 5px;
    right: 50%;
    margin: 0 -35px;
    font-weight: 700;
    font-size: 12px;
    background-color: blue;
    margin: 3px -40px;
    color: gold;
}

.main-pulse {
    animation: pulse 1s infinite ease-in-out alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

/* Home */
#home {
    overflow: hidden;
}

#home .box-3 {
    width: 100%;
    /*table-layout: fixed;*/
    display:flex;
}

#home .box-3-1 {
    vertical-align: top;
    flex-basis: 400px;
    background: rgba(0, 0, 0, .3);
    padding: 15px;
    border-right: 1px solid rgba(255, 255, 255, .5);
    box-sizing:border-box;
    display:block;
}

#home .box-3-2 {
    vertical-align: top;
    width: calc( 100vw - 800px );
    padding: 0 15px 15px;
    box-sizing:border-box;
    display:block;
}

#home .box-3-3 {
    vertical-align: top;
    flex-basis: 400px;
    background: rgba(0, 0, 0, .3);
    padding: 10px 15px 15px;
    border-left: 1px solid rgba(255, 255, 255, .5);
    box-sizing:border-box;
    display:block;
}
.splide, .splide__slide {
    position: relative;
    outline: 0;
    width: 100%;
    height: 100%;
}
#home-carousel {
    height:222px;
}

.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.splide.is-active .splide__list {
    display: flex;
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important;
    width: -webkit-max-content;
    width: max-content;
    will-change: transform;
    height: max-content;
    height: -webkit-max-content;
    width: 100%;
    height: 100%;
}

.splide__slide {
    box-sizing: border-box;
    list-style-type: none !important;
    margin: 0;
    flex-shrink: 0;
}

.splide .splide__progress__bar {
    height: 2px;
    background: #ffc107;
    margin-top: -2px;
    z-index: 9;
    position: relative;
}

.banner-wrapper {
    width: 100%;
    padding: 10px;
    height: 200px;
}

#home-banner {
    width: 100%;
    height: 100%;
}

    #home-banner .banner {
        width: 100%;
        height: 100%;
        padding-top: 0%;
        background-size: cover;
        background-position: center;
        cursor: pointer;
    }

.splide .banner {
    width: 100%;
    height: 100%;
    ;
    padding-top: 35%;
    background-size: cover;
    background-position: center;
}

#home .static-banner {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#home .box-3-1 .static-banner {
    margin-top: 15px;
}

#home .box-3-1 .jackpot-wrapper {
    margin-top: 15px;
}

#home-jackpot .jackpot {
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}
/*
#home-jackpot .jackpot-odometer {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
    font-weight: 700;
}

home-jackpot .odometer-digit {
    border-radius: 5px;
    margin: 3px;
    padding: 5px;
    border: 2px solid #f6c324;
    background-color: #fff;
    color: #000;
}

#home-jackpot .odometer-digit {
    border-radius: 5px;
    margin: 3px;
    padding: 5px;
    border: 2px solid #f6c324;
    background-color: #fff;
    color: #000;
}*/

/*.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}*/

#home-livetx {
    margin-top: 10px;
    text-transform: uppercase;
}

#home-livetx table {
    width: 100%;
}

#home-livetx table td.title {
    color: #ffffff;
}

#home-livetx table td.title {
    color: #d3ab22;
    font-weight: 700;
}

#home-livetx table td {
    color: #ffffff;
}

#home-livetx table td {
    background: #4b4d71;
}

#home-livetx table td {
    position: relative;
    padding: 4px;
    font-size: 11px;
    background: #000;
    border: 1px solid #fff;
    line-height: 1;
}

#home-livetx table td .live {
    position: absolute;
    top: 3px;
    right: 3px;
    background: red;
    padding: 1px 3px;
    border-radius: 2px;
    color: #fff;
    font-weight: 400;
}

#home-livetx table td .live span {
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    float: right;
    border-radius: 10px;
    margin: 1px 1px 0 3px;
}
.main-blink-me {
    animation: blinkme 1.5s linear infinite;
}

#home-livetx table td.green {
    color: #ffffff;
}

#home-livetx table td.green {
    background: #239809;
    color: #fff;
}
#home-livetx table td.red {
    background: #d02c27;
    color: #fff;
}
#home-livetx table td.amount {
    color: #d3ab22;
}
#home .soccer-banner {
    width: 100%;
    margin-top: 15px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
}

#home-lucky .wrapper {
    overflow: hidden;
    background: #FFECB3;
    padding: 10px 5px 10px 10px;
    color: #000;
    margin-top: 15px;
    border-radius: 8px;
}

/*#home-lucky .wrapper {
    background-size: 100% 100% !important;
    padding: 36% 4% 4% 6%;
    border: 0;
    border-radius: 0;
}

#home-lucky .wrapper {
    overflow: hidden;
    background: #FFECB3;
    padding: 10px 5px 10px 10px;
    color: #000;
    margin-top: 15px;
    border-radius: 8px;
}

#home-lucky .wrapper {
    background-size: 100% 100% !important;
    padding: 36% 4% 4% 6%;
    border: 0;
    border-radius: 0;
}

#home-lucky .btn {
    float: left;
    width: calc(50% - 5px);
    margin-top: 8px;
    margin-right: 5px;
    position: relative;
}

#home-lucky .myluckynumber {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
    text-shadow: none;
    color: transparent;
}*/


/* Login */
#login {
    overflow: hidden;
    padding: 30px;
    min-height: 100%;
    position: relative;
}

#login.desktop .header {
    float: left;
    width: calc(50% - 60px);
    margin: 30px;
}

#login.desktop .form-wrapper {
    float: left;
    width: 50%;
    padding: 30px;
}

#login .t2 {
    text-align: center;
    margin-top: 20px;
}

#login .register {
    margin: 20px auto 5px;
    width: 150px;
}

#login .bottom-link {
    margin-top: 20px;
    display: block;
    color: #ffc107;
    text-align: center;
}

#login.desktop .logo {
    display: block;
}

#login .logo {
    margin: 0 auto 30px;
    max-width: 130px;
    /*max-height: 120px;*/
    display: none;
}

#login.desktop .title {
    display: none;
}

#login .title {
    font-size: 23px;
    color: #ffc107;
    font-weight: 700;
    margin-bottom: 15px;
}

#login .input-title {
    margin: 10px 0;
    text-align: left;
}

#login input {
    padding: 12px;
}


#login .btn {
    margin-top: 10px;
    display: block;
    width: 100%;
}
#login .register {
  margin: 20px auto 5px;
  width: 150px;
}
#login .login {
    margin: 20px auto 0;
}

/*#login .header {
    width: calc(100% + 60px);
    margin: -30px -30px 20px;
}*/

/* Register */
#register {
    overflow: hidden;
    padding: 15px;
    min-height: 100%;
    position: relative;
}

#register .t1 {
    color: #FFC107;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /*display: none;*/
}

#register table {
    width: 100%;
}
#register table p.note {
    white-space: normal;
    font-size: .8em;
    color: #FFC107;
    padding: 5px 0 0 5px;
    margin-bottom:0px;
}
#register table td {
    padding: 15px 8px 6px 0;
    width: 1%;
    white-space: nowrap;
    vertical-align: top;
}

#register table td:last-child {
    padding: 6px 0;
    width: auto;
}

#register .verification-code {
    background-color: #37474F;
    padding: 10px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 5px;
    font-size: 13px;
    color: #fff;
}

#register .verification-code p.t3{
    margin-bottom:0px;
}
#register .verification-code input {
    float: left;
    width: calc(100% - 130px);
    margin: 10px 10px 0 0;
}

#register .verification-code a {
    float: left;
    width: 120px;
    margin-top: 10px;
    padding: 9px 0 8px;
}

#register .btn {
    margin-top: 15px;
}

#register .morereg {
    margin-top: 30px;
}

#register .t2 {
    margin-top: 20px;
    text-align: center;
}

#register .login {
    margin: 10px auto;
    display: block;
    text-align: center;
    color: #FFC107;
}

#register .livechat {
    background: #4CAF50;
    color: #fff;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 28px;
    border-radius: 100%;
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: none;
}

#register .btn {
    margin-top: 10px;
    display: block;
    width: 100%;
}

/* Reset password */
#resetPassword {
    overflow: hidden;
    padding: 15px;
}

    #resetPassword .t1 {
        color: #FFC107;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 2px solid;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    #resetPassword table {
        width: 100%;
    }

        #resetPassword table td {
            padding: 5px 5px 5px 0;
            width: 1%;
            white-space: nowrap;
        }

            #resetPassword table td:last-child {
                padding: 5px 0;
                width: auto;
            }

    #resetPassword .btn {
        margin-top: 15px; width:100%;
    }

    #resetPassword .login {
        margin: 15px auto;
        display: block;
        text-align: center;
        color: #FFC107;
    }

/* Settings */
#settings {
    padding: 10px;
}

#settings .t1 {
    color: #FFC107;
    border-bottom: 2px solid;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom:0px;
    text-transform:uppercase;
}

#settings .t2 {
    display: block;
    font-weight: 700;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    margin-bottom:0px;
}

#settings .setting {
    padding-top: 20px;
    width: 100%;
    float: right;
}

#settings table td {
    padding: 10px 10px 0 0; word-wrap:break-word;
}

/* Change Password */
#changePassword {
    overflow: hidden;
    padding: 15px 10px;
}
#changePassword .t1 {
    color: #FFC107;
    font-size: 18px;
    margin-bottom:0px;
}
#changePassword table {
    width: 100%;
    margin-top: 10px;
}
#changePassword table td {
    padding: 5px 5px 5px 0;
    width: 1%;
    white-space: nowrap;
}
#changePassword table td:last-child {
    padding: 5px 0;
    width: auto;
}
#changePassword .inline {
    display: flex;
}
#changePassword .btn {
    margin-top: 10px;
    display: block;
    width: 100%;
}
#changePassword i {
    margin: 10px;
}
/* History */
#history {
    overflow: hidden;
    font-size: 13px;
}

#history .tabs {
    overflow: hidden;
    padding: 10px;
}

#history .tabs .tab {
    float: left;
    text-align: center;
    background: #37474F;
    padding: 10px 15px;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
    font-weight: 700;
    color: #fff;
}

#history .tabs .tab.selected {
    background: #546E7A;
}

#history-transaction {
    text-transform: capitalize;
    overflow: hidden;
}

#history-transaction table {
    width: 100%;
    line-height: 1.5;
    table-layout: fixed;
}

#history-transaction table > tbody > tr > td {
    padding: 8px;
    vertical-align: top;
    border: 1px solid #ccc;
}

#history-transaction table > tbody > th {
    padding: 5px 8px 3px;
    background: #1d2531;
    font-weight: 700;
    color: #fff;
}

#history-transaction table > tbody > tr > td:last-child {
    width: 35%;
}

#history-transaction table b {
    color: #FFC107;
    text-transform: uppercase;
}

#history-transaction table .createdTime {
    font-size: 13px;
    color: #999;
}

#history-transaction .status {
    display: block;
    font-style: normal;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#history-transaction .status:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 11px;
    margin: 3px 5px 0 0;
    display: block;
    float: left;
    background-color: #999;
}

#history-transaction .status.COMPLETED:before {
    background-color: #393;
}

#history-transaction .status.CANCELLED:before, #history-transaction .status.REJECTED:before {
    background-color: red;
}

/** Transation History */
#tableTransactionHistory_wrapper {
    text-transform: capitalize;
    overflow: hidden;
}

#tableTransactionHistory_wrapper table {
    width: 100%;
    line-height: 1.5;
    table-layout: fixed;
}

#tableTransactionHistory th {
    padding: 8px;
    vertical-align: top;
    border: 1px solid #ccc;
}
#tableTransactionHistory th:last-child {
    border-right: 0;
}
#tableTransactionHistory_wrapper table > tbody > tr > td {
    padding: 8px;
    vertical-align: top;
    border: 1px solid #ccc;
}

#tableTransactionHistory_wrapper table > tbody > th {
    padding: 5px 8px 3px;
    background: #1d2531;
    font-weight: 700;
    color: #fff;
}

#tableTransactionHistory_wrapper table > tbody > tr > td:last-child {
    width: 35%;
}

#tableTransactionHistory_wrapper table b {
    color: #FFC107;
    text-transform: uppercase;
}

#tableTransactionHistory_wrapper table .createdTime {
    font-size: 13px;
    color: #999;
}


/* Bet History */
#history-bet {
    overflow: hidden;
}

#history-bet .note {
    background: #FF9800;
    padding: 5px;
    line-height: 1;
}

#history-bet table {
    width: 100% !important;
}
#history-bet table td {
    padding: 5px;
    vertical-align: top;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #ccc;
    word-break: break-word;
}

/*#history-bet table tr:first-child td {
    background: #1d2531;
    font-weight: 700;
    color: #fff;
}*/
#history-bet table tr th {
    background: #1d2531;
    font-weight: 700;
    color: #fff;
    word-break: break-word;
    border:1px solid #ccc;
    text-align:left; 
}
#history-bet table tr th:first-child {
    border-left:0;
}
#history-bet table tr th:last-child {
    border-right:0;
}
#tableWager { margin-top:0px !important;
}
#tableWager_wrapper .dataTables_info  { display: none; }
#tableWager_wrapper .dataTables_paginate { display: none; }

#tableWager_wrapper { margin-bottom:50px !important; 
}
/* Promotion */
.promotiongroupseparator {
    width: 100%;
    height: 1px;
    border: 0px solid red;
    float:left; 
}
#packet_wrapper_promotions {
    padding-bottom:40px;
}
#promotion {
    overflow: hidden;
    position: relative;
}

#promotion .center-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 10px 10px;
}

#promotion .packet-group {
    overflow: hidden;
}

#promotion .packet {
    float: left;
    position: relative;
    overflow: hidden;
    margin: 10px 10px 0 0;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

#promotion .packet p:first-child {
    font-size: 13px;
    min-height: 35px;
}

#promotion .packet p:last-child {
    font-size: 18px;
    font-weight: 700;
}

#promotion .packet img {
    max-height: 120px;
}

#promotion .packet .text {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 5px 0;
}

#promotion .packet-title {
    margin-top: 10px;
    font-weight: 700;
    width:100%; float:left; 
}
#promotion .packet-title p{
    margin-bottom: 0px;
}

#promotion .packet-wrapper {
    overflow: hidden;
}

#promotion .packet.ineligible:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}

#promotion .promo-footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.popupwindow {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, .6);
    display: none;
    opacity: 1;
    -webkit-transition: opacity .3s;
}

.promotion-popup {
    overflow: hidden;
    padding: 15px;
    background: #000;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    color: #fff;
    border: 2px solid #FFC107;
    position: relative;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.promotion-popup .title {
    color: #FFC107;
    font-weight: 700;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

.promotion-popup p {
    margin-top: 10px;
}

.promotion-popup ul {
    text-transform: none;
}

.promotion-popup ul li p {
    margin-top:3px; 
    margin-bottom:3px;
}

.promotion-popup img {
    width: 100%;
    margin-top: 10px;
}

.promotion-popup .btns {
    overflow: hidden;
    margin-top: 15px;
}

.promotion-popup .btns .btn {
    float: left;
    width: 110px;
}

.promotion-popup .btns .btn:last-child {
    width: calc(100% - 120px);
    margin-left: 10px;
}

.promotion-popup .btns .btn.single {
    width: 110px;
    margin: 0 auto;
    float: none;
}

    .promotion-popup .btns .btn.buttoncenter {
        position: relative;
        left: 50%;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.main-blink-me {
    animation: blinkme 1.5s linear infinite;
}

@keyframes blinkme {
    0% {
        opacity: 0;
    }

    38% {
        opacity: 0;
    }

    39% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* Chart room */
#chatroom {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .5);
    color: #000;
}

    #chatroom .scrollable {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: visible;
        height: calc(100% - 55px);
    }

    #chatroom .time {
        font-size: 13px;
        margin: 5px;
    }

        #chatroom .time:first-child {
            margin-top: 10px;
        }

    #chatroom .message {
        overflow: hidden;
        margin: 5px;
    }

        #chatroom .message .message-wrapper {
            display: block;
            background: rgba(0, 0, 0, .4);
            padding: 8px 10px 10px;
            border-radius: 5px;
            color: #fff;
            width: 100%;
            text-transform: none;
        }

        #chatroom .message .name {
            display: revert;
            color: #9CCC65;
        }

    #chatroom .copy {
        font-size: 11px;
        float: right;
        cursor: pointer;
    }

    #chatroom .message .text {
        display: block;
        margin-top: 5px;
    }

    #chatroom .chat-tools {
        position: absolute;
        overflow: hidden;
        width: 100%;
        bottom: 0;
        padding: 5px 5px 10px;
    }

        #chatroom .chat-tools textarea {
            height: 40px;
            border: 0;
            resize: none;
            background: rgba(0, 0, 0, .4);
            border-radius: 20px;
            color: #fff;
            padding: 10px 100px 10px 15px;
            line-height: 20px;
        }

        #chatroom .chat-tools .tool {
            position: absolute;
            width: 45px;
            line-height: 40px;
            text-align: center;
            font-size: 23px;
            cursor: pointer;
            bottom: 10px;
            right: 55px;
            color: #66BB6A;
        }

        #chatroom .chat-tools .tool {
            position: absolute;
            width: 45px;
            line-height: 40px;
            text-align: center;
            font-size: 23px;
            cursor: pointer;
            bottom: 10px;
            right: 55px;
            color: #66BB6A;
        }

            #chatroom .chat-tools .tool.file {
                color: #00BCD4;
                right: 10px;
                padding-right: 10px;
            }

.fa-paperclip:before {
    content: "\f0c6";
}

#chatroom .chat-tools .tool.file input {
    display: none;
}

/* Lucky  number */
#luckynumber {
    padding: 10px;
}

    #luckynumber a {
        display: block;
        margin-top: 5px;
        color: #8bc34a;
        text-decoration: underline;
        text-transform: none;
    }

    #luckynumber p {
        margin-top: 5px;
    }

    #luckynumber table {
        width: 100%;
        table-layout: fixed;
        margin-top: 10px;
    }

        #luckynumber table td {
            text-align: center;
            padding: 3px;
            background: #000;
            border: 1px solid #fff;
            font-size: 13px;
            color: #fff;
        }

            #luckynumber table td.label {
                background: #d29b13;
                font-weight: 700;
            }

    #luckynumber .tabs {
        overflow: hidden;
        margin: 30px auto 15px;
        background: #000;
        color: #fff;
        border: 1px solid #fff;
        width: 272px;
        border-radius: 4px;
    }

        #luckynumber .tabs .tab {
            float: left;
            padding: 6px 10px 5px;
            border-left: 1px solid #fff;
            width: 135px;
            text-align: center;
            cursor: pointer;
        }

            #luckynumber .tabs .tab:first-child {
                border-left: 0;
            }

            #luckynumber .tabs .tab.selected {
                background-color: #388e3c;
            }

/* Deposit */
#deposit {
    padding: 15px;
    overflow: hidden;
}

    #deposit .menu {
        position: relative;
        display: block;
        margin-bottom: 15px;
        border: 1px solid;
        padding: 10px;
        background: #263238;
        border-radius: 4px;
        color: #fff;
    }

    #deposit .menu-container .btn {
        width: 100px;
        float: left;
    }

    #deposit h2 {
        color: #FFC107;
        font-size: 18px;
        font-weight: 700;
    }

    #deposit .question {
        margin-top: 10px;
    }

select {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAQAAAD41aSMAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAACYktHRAD/h4/MvwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAiVJREFUeNrt20tOw1AUREFn0YwxO2cAUhTxcxLbtxvVkdhAl4DEfu/ysmiyCwAAAAQAgAAAEAAAAgBAAAAIAAABACAAAAQAgAAAEAAAAgBAAAAIAAABACAAAAQAgAAAEAAAAgBAAAAIAAABACAAAAQAgAAAEAAAAgBAAAAIAAABAADABgAACAAAAQAgAAAEAIAAABAAAEe0Lq/Be7wt6///DcglOH3+qT9BmQQD88/9D8gjGJl/8p9wFsHQ/LOfgnIIxuaf/hiaQTA4//z3gHmC0fkTvojNEgzPn/FNeI5gfP6URxEzBAHz5zwLOp8gYv6kh3HnEoTMn/U09DyCmPnTHkefQxA0f977gOMJouZPfCFzLEHY/JlvxI4jiJs/9ZXkMQSB8+e+E96fIHL+5Jfy+xKEzp99KmI/gtj504+l7EMQPH/+uaDnCaLnbziY9RxB+PwdJ+MeJ4ifv+Vo4mMEBfP3nA29n6Bi/qbDufcRlMzfdTp6O0HN/G3H07cRFM3fdz/gb4Kq+RsvaPxOUDZ/5w2Znwnq5m+9ovQ9QeH8vXfEvhJUzt98Se+WoHT+7luSV4La+duvqX4QFM/ff094/fwBIAAABACAAAAQAAACAEAAAAgAAAEAIAAABACAAAAQAAACAEAAAACwAQAAAgBAAAAIAAABACAAAAQAgAAAEAAAAgBAAAAIAAABACAAAAQAgAAAEAAAAgBAAAAIAAABAKDNvQMtH6eBB4hqHwAAAABJRU5ErkJggg==);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 25px;
}

#deposit .pininputs {
    margin-top: 10px;
    overflow: hidden;
}

    #deposit .pininputs input {
        float: left;
        width: calc((100% - 45px) / 4);
        text-align: center;
    }

    #deposit .pininputs span {
        float: left;
        width: 5px;
        margin: 0 5px;
        padding: 10px 0;
    }

#deposit .pinbox {
    display: block;
    background-color: #FFF3E0;
    color: #000;
    padding: 10px;
    border: 1px solid #FFB74D;
    border-radius: 5px;
    margin-top: 50px;
}

#deposit .pinfile {
    width: 100%;
}

#deposit .fabtns {
    overflow: hidden;
    margin-top: 5px;
}

#deposit .fabtn {
    float: left;
    color: #fff;
    padding: 8px 0;
    margin: 5px 5px 0 0;
    width: 70px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #cb9b14;
    background-color: #eab92d;
    background-image: -webkit-linear-gradient(top, #eab92d, #c79810);
    background-image: linear-gradient(to bottom, #eab92d, #c79810);
    cursor: pointer;
}

#deposit .btns {
    overflow: hidden;
    height: 100px;
}

#deposit .btns .btn {
    width: 100px;
    float: left;
    margin: 10px 10px 5px 0;
}

#deposit .instruction {
    display: block;
}

#deposit .notices {
    margin-top: 5%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#deposit .title {
    margin-top: 10px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFC107;
}

#deposit .bank {
    width: 100%;
    margin-top: 10px;
}

#deposit .qrcode {
    overflow: hidden;
    position: relative;
}

#deposit .scrollable {
    overflow: auto;
}

#deposit .qrcode .download {
    background: red;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 6px;
    font-size: 13px;
    border-radius: 0 0 0 6px;
}

#deposit .qrcode .download i {
    margin-right: 5px;
}

#deposit .bank {
    width: 100%;
    margin-top: 10px;
}

#deposit .bank td {
    width: 1%;
    white-space: nowrap;
    padding: 6px;
    background: #333;
    border: 1px solid #777;
    position: relative;
    font-size: 13px;
    color: #fff;
}

#deposit .bank td:last-child {
    width: auto;
    white-space: normal;
}

#deposit .bank td:last-child input {
    background: transparent;
    color: #FFC107;
    -webkit-text-fill-color: #FFC107;
    border: 0;
    padding: 0;
    font-size: 13px;
}

#deposit .bank td:last-child input.whitetext {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

#deposit .bankInfo {
    width: 75%;
}

#deposit .bank td:last-child span {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #FF5722;
    color: #fff;
    padding: 0 5px;
    line-height: 25px;
    border-radius: 20px;
    cursor: pointer;
}

#deposit .box {
    display: block;
    background-color: #FFF3E0;
    color: #000;
    padding: 10px;
    border: 1px solid #FFB74D;
    border-radius: 5px;
    margin-top: 10px;
}

#deposit .inputs {
    width: 100%;
}

#deposit .inputs td {
    width: 1%;
    white-space: nowrap;
    padding: 5px 8px 5px 0;
}

#deposit .inputs td:last-child {
    width: auto;
    padding: 5px 0;
}

#deposit .inputs td.datetime select {
    float: left;
    width: calc(33.3% - 5px);
    margin-left: 5px;
}

#deposit .inputs td.datetime select:first-child {
    margin-left: 0;
}

#deposit .blink {
    animation: blink 1s linear infinite;
}

.file-upload {
    width: 100%;
    overflow: hidden;
}

.file-upload label {
    float: left;
    margin-right: 5px;
    width: 110px;
}

.file-upload span {
    width: calc(100% - 115px);
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 37px;
    font-size: 13px;
}

.file-upload label input[type=file] {
    display: none;
}


/* withdraw */
#withdraw {
    padding: 15px;
    overflow: hidden;
}
#withdraw h2 {
    color: #FFC107;
    font-size: 18px;
    font-weight: 700;
}
#withdraw .title {
    margin-top: 10px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFC107;
}
#withdraw li.highlight{
     color: #FFC107;
}
#withdraw .question {
    margin-top: 10px;
}
#withdraw .btns {
    overflow: hidden;
    height: auto;
}
#withdraw .btns .btn {
    width: 100px;
    float: left;
    margin: 10px 10px 5px 0;
    text-transform: uppercase;
}
#withdraw .btns .btn:hover {
    color: #ffffff !important;
}

#withdraw .inputs {
    width: 100%;
}
#withdraw table {
    width: 100%;
    margin-top: 10px;
}

#withdraw table td {
    padding: 5px 5px 5px 0;
    width: 1%;
    white-space: nowrap;
}
#withdraw table td:last-child {
    padding: 5px 0;
    width: auto;
}
#withdraw .blink {
    animation: blink 1.2s linear infinite;
    color: #FFC107;
    font-weight: 700;
}
@keyframes blink {
    50% {
        opacity: .4;
    }
}
#withdraw form {
    background-color: none;
    border:none; 
    color: #000;
    margin-top: 10px;
    padding: 0px;
}
#withdraw form .form_inner{
    background-color: #FFF3E0;
    border: 1px solid #FFB74D;
    border-radius: 5px;
    width:100%;
    padding: 10px;
}
#withdraw .note {
    font-size: 13px;
    margin-top: 5px;
}

/* leaderboard */
#leaderboard {
    padding: 10px;
    font-size: 12px;
}

#leaderboard .t1 {
    color: #FFC107;
    border-bottom: 2px solid;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 18px;
}

#leaderboard .dates .date, #leaderboard .keys .key {
    float: left;
    background: #37474F;
    color: #fff;
    line-height: 1;
    padding: 10px 15px;
    margin: 10px 10px 0 0;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}

#leaderboard .dates, #leaderboard .keys {
    overflow: hidden;
}

#leaderboard .dates .date.selected, #leaderboard .keys .key.selected {
    background: #546E7A;
}

#leaderboard .note {
    text-transform: none;
    margin-top: 10px;
}

#leaderboard .scrollable {
    overflow: auto;
}

#leaderboard table {
    width: 100%;
    margin-top: 10px;
}

#leaderboard table td {
    padding: 5px;
    border: 1px solid #ccc;
}

#leaderboard table thead td {
    background: #1d2531;
    color: #fff;
}



/* Downline */
#downline .container {
    width: 100% !important;
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100% !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
#downline .container {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
#downline .tabs {
    overflow: hidden;
}

    #downline .tabs .tab {
        float: left;
        background: #333;
        padding: 7px 10px;
        margin: 10px 0 10px 5px;
        font-size: 13px;
        border-radius: 4px;
        cursor: pointer;
        color: #fff;
        text-transform: uppercase;
    }

        #downline .tabs .tab.selected {
            background: #FF9800;
        }

#downline-list .filter {
    background: #ccc;
    padding: 5px;
}

#downline table {
    width: 100%;
    font-size: 13px;
    margin-top:0px !important;
}

#downline table tr th{
    background: #1d2531;
    color: #fff;
    font-weight: 700;
}
#downline table th {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 3px 5px;
    text-transform: uppercase;
    text-align:left; 
}
#downline table th:last-child
{
    border-right: 0; 
}
#downline table td:last-child
{
    border-right: 0; 
}
#downline table td {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 3px 5px;
    text-transform: uppercase;
}

#downline table tr:first-child td {
    border-top: 1px solid #fff;
}

#downline-list table td:nth-child(1) {
    width: 1%;
    white-space: nowrap;
}

#downline table tr:first-child td {
    border-top: 1px solid #fff;
}

#downline-list table td:nth-child(2), #downline-list table td:nth-child(3) {
    text-align: left;
    width: auto;
    white-space: unset;
}

#downline-list .pagination {
    margin: 10px 5px;
}

#downline-winloss .filter {
    overflow: hidden;
    padding: 5px;
    background: #ccc;
}

#downline table {
    width: 100%;
    font-size: 13px;
}

#downline-winloss .filter input, #downline-winloss .filter select {
    float: left;
    width: calc(26% - 5px);
    margin-right: 5px;
    padding: 11px 8px 10px;
    font-size: 13px;
}

#downline-winloss .filter .btn {
    float: left;
    width: 22%;
    font-size: 13px;
}

#downline-list .filter select {
    padding: 7px 10px;
}
#downline table > tbody > tr > td {
    background:none;
}

/* Swal Container */
.swal2-container {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: transparent;
    z-index: 1060;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

    .swal2-container.swal2-shown {
        background-color: rgba(0, 0, 0, .4);
    }

    .swal2-container.swal2-fade {
        transition: background-color .1s;
    }

    .swal2-container.swal2-center {
        align-items: center;
    }

.swal2-container {
    text-transform: none;
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent;
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
    margin: auto;
}

.swal2-popup {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 32em;
    max-width: 100%;
    padding: 1.25em;
    border-radius: .3125em;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

    .swal2-popup.swal2-modal.swal2-show {
        background: #000;
        border: 0;
        background-size: cover;
        background-position: center;
    }

    .swal2-popup.swal2-modal.swal2-show {
        background: transparent;
        border: 1px solid #fff;
    }

.swal2-show {
    -webkit-animation: swal2-show .3s;
    animation: swal2-show .3s;
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent;
}

.swal2-popup .swal2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swal2-icon {
    position: relative;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: .25em solid transparent;
    border-radius: 50%;
    line-height: 5em;
    cursor: default;
    box-sizing: content-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    zoom: normal;
}

    .swal2-icon.swal2-success {
        border-color: #a5dc86;
    }

.swal2-popup .swal2-title {
    display: block;
    position: relative;
    max-width: 100%;
    margin: 0 0 .4em;
    padding: 0;
    color: #595959;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.swal2-popup .swal2-title {
    color: #ccc;
}

.swal2-popup .swal2-content {
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: 1.125em;
    font-weight: 300;
    line-height: normal;
    z-index: 1;
    word-wrap: break-word;
}

.swal2-popup .swal2-content {
    color: #999;
}

.swal2-popup .swal2-actions {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 1.25em auto 0;
    z-index: 1;
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1));
}

.swal2-popup .swal2-styled.swal2-confirm {
    background-color: #B30606;
}

.swal2-popup .swal2-styled.swal2-confirm {
    background-color: #cda821;
}

.swal2-popup .swal2-styled.swal2-confirm {
    background-color: #cda821;
}

.swal2-popup .swal2-styled.swal2-confirm {
    border: 0;
    border-radius: .25em;
    background: initial;
    background-color: #3085d6;
    color: #fff;
    font-size: 1.0625em;
}

.swal2-popup .swal2-styled:not([disabled]) {
    cursor: pointer;
}

.swal2-popup .swal2-styled {
    margin: .3125em;
    padding: .625em 2em;
    font-weight: 500;
    box-shadow: none;
}

.swal2-popup.swal2-modal.swal2-show {
    background: #000;
    border: 0;
    background-size: cover;
    background-position: center;
}

.swal2-popup .swal2-styled.swal2-confirm {
    border: 0;
    border-radius: .25em;
    background: initial;
    background-color: #3085d6;
    color: #fff;
    font-size: 1.0625em;
}

.swal2-popup .swal2-styled:not([disabled]) {
    cursor: pointer;
}

.swal2-popup .swal2-styled {
    margin: .3125em;
    padding: .625em 2em;
    font-weight: 500;
    box-shadow: none;
}

    .swal2-popup .swal2-styled.swal2-confirm {
        background-color: #B30606;
    }

.swal2-popup .swal2-content {
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: 1.125em;
    font-weight: 300;
    line-height: normal;
    z-index: 1;
    word-wrap: break-word;
    text-align: center;
}

.swal2-popup .swal2-content {
    color: #999;
}

.swal2-icon {
    position: relative;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: .25em solid transparent;
    border-radius: 50%;
    line-height: 5em;
    cursor: default;
    box-sizing: content-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    zoom: normal;
}
.swal2-icon-text {
    font-size: 3.75em;
    color: #3fc3ee;
    font-family: Arial;
    text-transform: lowercase !important;
}
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -.4375em;
    left: -2.0635em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 3.75em 3.75em;
    transform-origin: 3.75em 3.75em;
    border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    background: transparent !important;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 3.75em;
    height: 7.5em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    top: 2.875em;
    left: .875em;
    width: 1.5625em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    display: block;
    position: absolute;
    height: .3125em;
    border-radius: .125em;
    background-color: #a5dc86;
    z-index: 2;
}

.swal2-animate-success-icon .swal2-success-line-tip {
    -webkit-animation: swal2-animate-success-line-tip .75s;
    animation: swal2-animate-success-line-tip .75s;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    display: block;
    position: absolute;
    height: .3125em;
    border-radius: .125em;
    background-color: #a5dc86;
    z-index: 2;
}

.swal2-animate-success-icon .swal2-success-line-long {
    -webkit-animation: swal2-animate-success-line-long .75s;
    animation: swal2-animate-success-line-long .75s;
}

.swal2-icon.swal2-success .swal2-success-ring {
    position: absolute;
    top: -.25em;
    left: -.25em;
    width: 100%;
    height: 100%;
    border: .25em solid rgba(165, 220, 134, .3);
    border-radius: 50%;
    z-index: 2;
    box-sizing: content-box;
}

.swal2-icon.swal2-success .swal2-success-fix {
    position: absolute;
    top: .5em;
    left: 1.625em;
    width: .4375em;
    height: 5.625em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 1;
}

.swal2-icon.swal2-success .swal2-success-fix {
    background: transparent !important;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -.6875em;
    left: 1.875em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 3.75em;
    transform-origin: 0 3.75em;
    border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    background: transparent !important;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 3.75em;
    height: 7.5em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 50%;
}

.swal2-animate-success-icon .swal2-success-circular-line-right {
    -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
    animation: swal2-rotate-success-circular-line 4.25s ease-in;
}


/* Home */
#home-game {
    overflow: hidden;
}
#home-game .site-tabs {
    overflow: hidden;
    margin-top: 15px;
    position: relative;
}
#home-game .site-tabs:before {
    content: "";
    border-bottom: 1px solid #fff;
    position: absolute;
    width: 100%;
    bottom: 1px;
    z-index: -1;
}
#home-game .site-tab {
    position: relative;
}
#home-game .site-tabs .cat-icon {
    float: left;
    max-width: 120px;
    padding-bottom: 30px;
    cursor: pointer;
}
#home-game .site-tab.disabled {
    opacity: .3;
}
#home-game .site-tab.disabled {
    opacity: .3;
}
#home-game .site-tabs .cat-icon {
    float: left;
    max-width: 120px;
    padding-bottom: 30px;
    cursor: pointer;
    width: 25%; 
}
#home-game .site-tab {
    position: relative;
}
#home-game .site-tab img {
    width: 100%;
}
#home-game .site-tab img.is-selected {
    display: none;
}
#home-game .site-tab.selected img.no-selected {
    display: none;
}

/* Jackpot */
#home .box-3-1 .jackpot-wrapper {
    margin-top: 15px;
}

#home-jackpot .jackpot {
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    height: 93px;
}

#home-jackpot .jackpot-odometer {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
    font-weight: 700;
}
#odometer {
    float: right;
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 10px;
    margin-top: 33px;
}
#home-jackpot .odometer-digit {
    border-radius: 5px;
    border: 2px solid #f6c324;
    background: #ffffff !important;
    color: #000;
    padding: 2px 4.5px;
    margin: 2px 3px;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-train-station {
    font-family: inherit !important;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-train-station .odometer-digit .odometer-ribbon {
        line-height: 12px; font-weight:600; font-size:13px;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-train-station .odometer-digit .odometer-digit-inner {
        left:0.35em !important;
    }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-train-station .odometer-digit .odometer-ribbon {
    line-height: 27px;
    font-weight: 600;
    font-size: 13px;
}
@media only screen and (max-width: 560px) {
    #home-jackpot .odometer-digit {
        padding: 3px 5px;
        margin: 2px 3px;
    }

    .odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-train-station .odometer-digit .odometer-ribbon {
        line-height: 27px;
        font-weight: 600;
        font-size: 14px;
    }

    .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-train-station .odometer-digit .odometer-digit-inner {
        left: 0.35em !important;
    }

    #odometer {
        margin-top: 38px;
    }
}
@media only screen and (max-width: 400px) {
    #home-jackpot .odometer-digit {
        padding: 0px 3px 2px 2px; margin:2px 3px;
    }
    .odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-train-station .odometer-digit .odometer-ribbon {
        line-height: 22px; font-weight:600; font-size:13px;
    }
    .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-train-station .odometer-digit .odometer-digit-inner {
        left: 0.25em !important;
    }
    #odometer {
        margin-top: 35px;
    }

}

    /*


#home-jackpot .odometer-digit {
    background: #fff;
    color: #000;
}

    .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-train-station .odometer-digit .odometer-digit-inner {
        left:0px !important;
        text-align: center;
        width: 100%;
    }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-train-station .odometer-digit .odometer-ribbon {
    display: block; line-height:30px; text-align:center;
}


.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}*/
    /**/
    .splide__slide {
        width: 100%;
        border: 0px solid red;
    }

        .splide__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .facebook, .telegram, .safewithdraw, .gametips {
        width: 100%;
        position: relative;
        margin-top: 15px;
    }

        .facebook img, .telegram img, .safewithdraw img, .gametips img {
            width: 100%;
            position: relative;
        }

    .share {
        width: 100%;
        height: 320px;
        position: relative;
        margin-top: 15px;
        padding-bottom: 50px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        text-align: center;
        box-sizing: border-box;
        padding-top: 220px;
    }

        .share .btn {
            display: inline-block;
            width: 170px;
            height: 35px;
            margin: 3px 3px;
            line-height: 0;
            background-size: cover;
            color: transparent !important;
        }

            .share .btn img {
                width: 100%;
                height: auto;
            }

    .luckydraw {
        width: 100%;
        height: 220px;
        position: relative;
        margin-top: 15px;
        padding-bottom: 50px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        text-align: left;
        box-sizing: border-box;
        padding-top: 136px;
    }

        .luckydraw .myluckynumber {
            display: inline-block;
            width: 130px;
            height: 35px;
            margin: 0px 0px 0px 20px;
            line-height: 0;
            background-size: 100% auto;
            background-repeat: no-repeat;
            color: transparent !important;
        }

            .luckydraw .myluckynumber img {
                width: 100%;
                height: auto;
            }

    /* Home balance */
    #home-balance.balance-bg {
        padding: 5px 10px 10px;
        border-radius: 8px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 0 5px #000;
        color: black;
        background-color: transparent;
    }

    #home-balance > .A {
        overflow: hidden;
    }

        #home-balance > .A .pinfo {
            border: 0;
            padding: 5px 0;
            font-variant: small-caps;
            font-family: inherit;
        }

            #home-balance > .A .pinfo .welcome-name {
                font-size: 1.2em;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
                color: black;
            }

                #home-balance > .A .pinfo .welcome-name .welcome {
                    color: black;
                }

            #home-balance > .A .pinfo .vc-username {
                font-size: 13px;
            }

            #home-balance > .A .pinfo .vc-bank {
                font-size: 13px;
                display: none;
            }

            #home-balance > .A .pinfo .links {
                overflow: hidden;
            }

        #home-balance > .A .pbalance {
            overflow: hidden;
        }

        #home-balance > .A .btns {
            float: right;
            width: 135px;
            padding: 0 0 5px 5px;
        }

            #home-balance > .A .btns .btn {
                background-color: transparent;
                background-size: 100% 100%;
                color: transparent;
                text-shadow: none;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                margin-top: 5px;
                text-align: left;
                text-transform: uppercase;
                width: 130px;
                height: 40px;
            }

    #home > .A .pinfo .links a {
        background-size: 100% 100%;
        background-repeat: no-repeat;
        color: transparent;
        display: block;
        text-shadow: none;
        width: 46%;
        float: left;
        height: 50px;
        margin: 5px 5px 0px 5px;
        padding: 0%;
    }

        #home > .A .pinfo .links a img {
            width: 100%;
            height: 100%;
        }

    #home-balance > .A .btns .btn {
        padding: 0;
        background: none;
    }

    #home-balance > .A .btns .btn img {
        width: 100%;
        height: 100%;
    }
    
    #home-balance > .A .t1 {
        margin-top: 10px;
    }

    #home-balance > .A .vc-balance {
        font-size: 1.5em;
        margin: 5px 0;
        color: darkblue;
        font-weight: 700;
    }

    #home-balance.balance-bg > .A .vc-note {
        font-size: 13px;
    }

    #home-balance .vc-note .info {
        margin-top: 3px;
    }

        #home-balance .vc-note .info p {
            font-size: .9em;
            text-transform: none;
            padding-left: 6px;
        }

            #home-balance .vc-note .info p:before {
                content: "*";
                position: absolute;
                margin-left: -6px;
            }

    #home-balance > .A .vc-clear, #home-balance > .B .vc-clear {
        text-decoration-line: underline;
        font-size: 11px;
        padding-top: 5px;
        cursor: pointer;
    }

    /** Home Popup */

    .popupwindow_background {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: -1;
        background: rgba(0,0,0,0);
    }

    #popupwindow_main_notice,
    #popupwindow_main_download,
    #popupwindow_main_referrallink {
        position: fixed;
        z-index: 20;
        display: none;
    }

    #main-download {
        width: 75%;
        max-width: 500px;
    }

        #main-download .download {
            position: absolute;
            background-size: cover;
            width: 500px;
            height: 600px;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            box-sizing: border-box;
        }

            #main-download .download img {
                width: 100%;
            }

    #main-notice {
        width: 75%;
        max-width: 500px;
    }

        #main-notice .notice {
            position: absolute;
            background-size: cover;
            width: 500px;
            height: 650px;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            padding: 20px;
            background: #000000;
            text-align: center;
        }

            #main-notice .notice img {
                width: 100%;
            }

            #main-notice .notice .btn {
                display: inline-block;
                margin: 0 auto;
                padding-left: 20px;
                padding-right: 20px;
            }

        #main-notice .ic-close {
            opacity: .8;
        }

    #main-referrallink .referrallink {
        position: absolute;
        background-size: cover;
        width: 500px;
        height: 350px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        padding: 20px;
        background: #000000;
        text-align: center;
        border-radius: 6px;
    }

        #main-referrallink .referrallink img {
            width: 100%;
        }

        #main-referrallink .referrallink .btn {
            display: inline-block;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

    #main-referrallink .ic-close {
        opacity: .8;
    }

    #main-referrallink .referrallink .swal2-title {
        display: block;
        width: 100%;
        text-align: center;
        color: #ccc;
        font-size: 26px;
        margin-top: 0px !important;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-bottom: 20px;
    }

    #main-referrallink .referrallink .swal2-content {
        display: block;
        width: 100%;
        text-align: center;
        color: #999999;
        font-size: 14px;
        margin-top: 0px !important;
        margin-bottom: 0px;
        padding-top: 0px;
        padding-bottom: 20px;
    }

    #home_popup_close_main_download,
    #home_popup_close_main_notice,
    #home_popup_close_main_refer,
    #home_popup_close_main_referrallink {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        opacity: .7;
        padding: 10px;
        text-align: right;
        cursor: pointer;
        line-height: 40px;
        text-align: center;
        color: #ffffff;
        font-size: 25px;
    }

        #home_popup_close_main_download:hover,
        #home_popup_close_main_notice:hover,
        #home_popup_close_main_refer:hover,
        #home_popup_close_main_referrallink:hover {
            color: #ffffff !important;
        }

        #home_popup_close_main_download i,
        #home_popup_close_main_notice i,
        #home_popup_close_main_refer i,
        #home_popup_close_main_referrallink i {
            color: #ffffff !important;
            font-size: 20px;
        }

        #home_popup_close_main_download:hover i,
        #home_popup_close_main_notice:hover i,
        #home_popup_close_main_refer:hover i,
        #home_popup_close_main_referrallink:hover i {
            color: #ffffff !important;
        }


    /* Game Launch Popup */
    #popupwindow_main_gamelaunch,
    #popupwindow_main_clearbalance {
        border: none;
    }

    #home-refer-gamelaunch,
    #home-refer-clearbalance {
        overflow: hidden;
        padding: 1.25em;
        background: #000;
        width: calc( 100% - 20px);
        max-width: 512px;
        border-radius: 4px;
        color: #fff;
        border: 0px solid #ffc107;
        position: relative;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        box-sizing: border-box;
    }

        #home-refer-gamelaunch .swal2-title,
        #home-refer-clearbalance .swal2-title {
            display: block;
            position: relative;
            max-width: 100%;
            margin: 0 0 .4em;
            padding: 0;
            color: #cccccc;
            font-size: 1.875em;
            font-weight: 600;
            text-align: center;
            text-transform: none;
            word-wrap: break-word;
        }

        #home-refer-gamelaunch #swal2-content,
        #home-refer-clearbalance #swal2-content {
            text-align: center;
            color: #999999;
        }

        #home-refer-gamelaunch .swal2-actions,
        #home-refer-clearbalance .swal2-actions {
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            margin: 1.25em auto 0;
            z-index: 1;
        }

        #home-refer-gamelaunch .btn,
        #home-refer-clearbalance .btn {
            border: 0;
            border-radius: .25em;
            background: initial;
            background-color: rgb(244, 67, 54);
            color: #fff;
            font-size: 1.0625em;
            padding: 10px 25px;
            margin: 6px;
            text-shadow: none !important;
        }

        #home-refer-gamelaunch #home_popup_enter_main_gamelaunch,
        #home-refer-clearbalance #home_popup_yes_clearbalance {
            background-color: rgb(76, 175, 80);
            color: #fff;
        }

        #home-refer-gamelaunch #home_popup_cancel_main_gamelaunch,
        #home-refer-clearbalance #home_popup_no_clearbalance {
            background-color: rgb(244, 67, 54);
            color: #fff;
        }

        #home-refer-gamelaunch #home_popup_enter_main_gamelaunch,
        #home-refer-clearbalance #home_popup_yes_clearbalance {
            border: 0;
            border-radius: .25em;
            background: initial;
            background-color: rgb(76, 175, 80);
            color: #fff;
            font-size: 1.0625em;
            padding: 10px 25px;
            margin: 6px;
        }

    /* Download or launch */
    #home-refer-downloadorlaunch {
        overflow: hidden;
        padding: 15px;
        background: #000;
        width: 90%;
        max-width: 500px;
        border-radius: 8px;
        color: #fff;
        border: 2px solid #FFC107;
        margin: auto;
        position: relative;
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        #home-refer-downloadorlaunch .title {
            font-weight: 700;
            border-bottom: 2px solid #FFC107;
            padding-bottom: 10px;
        }

        #home-refer-downloadorlaunch p {
            margin-top: 10px;
        }

        #home-refer-downloadorlaunch .game-banner {
            margin-top: 5px;
            border-radius: 5px;
            background-size: cover;
            background-position: center;
        }

        #home-refer-downloadorlaunch .login {
            width: 100%;
            margin-top: 10px;
        }

        #home-refer-downloadorlaunch .btns {
            overflow: hidden;
            margin-top: 15px;
        }

        #home-refer-downloadorlaunch .login tr {
            border: 1px solid #666;
        }

        #home-refer-downloadorlaunch .login td {
            padding: 6px 0 6px 6px;
            width: 1%;
            vertical-align: top;
            white-space: nowrap;
            background: #333;
        }

            #home-refer-downloadorlaunch .login td:last-child {
                position: relative;
                width: auto;
            }

                #home-refer-downloadorlaunch .login td:last-child input {
                    background: transparent;
                    color: #FFC107;
                    -webkit-text-fill-color: #FFC107;
                    border: 0;
                    padding: 0;
                    line-height: 22px;
                }

                #home-refer-downloadorlaunch .login td:last-child span {
                    position: absolute;
                    top: 6px;
                    right: 6px;
                    background: #FF5722;
                    padding: 0 8px;
                    border-radius: 15px;
                    line-height: 23px;
                    font-size: 13px;
                    color: #fff;
                    cursor: pointer;
                }

        #home-refer-downloadorlaunch .btns .btn {
            float: left;
            width: calc(50% - 5px);
        }

            #home-refer-downloadorlaunch .btns .btn:last-child {
                margin-left: 10px;
            }

    /** Language Popup */
    #home-refer-language {
        overflow: hidden;
        padding: 0px;
        background: #000;
        width: 300px;
        border-radius: 8px;
        color: #fff;
        border: 2px solid #FFC107;
        margin: auto;
        position: relative;
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        #home-refer-language .box .item {
            position: relative;
            overflow: hidden;
            padding: 15px;
            border-bottom: 1px solid #FFC107;
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            display: block;
        }

            #home-refer-language .box .item:last-child {
                border-bottom: 0;
            }

            #home-refer-language .box .item i {
                position: absolute;
                margin: 6px 5px;
                font-size: 12px;
                color: #FFC107;
                display: none;
                font-weight: bold;
            }

            #home-refer-language .box .item.selected i {
                display: inline-block;
            }

    /** Share */
    #home-refer-share {
        overflow: hidden;
        padding: 15px;
        background: #000;
        width: 300px;
        border-radius: 4px;
        color: #fff;
        border: 1px solid #ffc107;
        margin: auto;
        position: relative;
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        #home-refer-share .header {
            color: #ffc107;
            font-weight: 700;
        }

        #home-refer-share .refer-code {
            font-size: 13px;
            border-bottom: 1px solid #ffc107;
            margin: 5px 0 10px;
            padding-bottom: 5px;
        }

    #shareqrcode {
        width: 100%;
        text-align: center;
    }

        #shareqrcode img {
            width: 180px;
            height: 180px;
            margin: 15px auto;
            border: 10px solid #eee;
            border-radius: 10px;
            background: #eee;
        }

    #home-refer-share .refer-qrcode {
        width: 180px;
        height: 180px;
        margin: 15px auto;
        border: 10px solid #eee;
        border-radius: 10px;
        background: #eee;
    }

    #home-refer-share .refer-qrcode-note {
        font-size: 11px;
        text-align: center;
        color: #999;
        text-transform: none;
        margin: 10px 0;
    }

    #home-refer-share .method {
        overflow: hidden;
        line-height: 40px;
        padding: 5px 0;
    }

        #home-refer-share .method img {
            float: left;
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

    /* refer */
    .refer-wrapper {
        width: 100%;
        margin-top: 20px;
    }

    #home-refer {
        width: 100%;
        position: relative;
    }

        #home-refer .wrapper.bg {
            width: 100%;
            padding-bottom: 0px;
            /*background-size: 100% auto;
    background-color: transparent;
    padding: 12px 7px 12px 12px;
    height: 320px !important;
    box-sizing: border-box;
    padding-top: 220px;
    background-repeat: no-repeat;*/
        }

            #home-refer .wrapper.bg img.shareimagebg {
                width: 100%;
                height: auto;
            }

        #home-refer .buttons {
            position: absolute;
            top: auto;
            bottom: 0px;
            width: 100%;
            height: 90px;
            margin-top: 0px;
            box-sizing: border-box;
            padding: 0px 10px;
        }

        #home-refer .btn {
            background-color: transparent;
            background-size: 100% 100%;
            color: transparent;
            text-shadow: none;
            border: 0;
        }

        #home-refer .btn {
            background: none;
            background-size: cover;
            border: 0;
            color: transparent;
            text-shadow: none;
            padding: 5% 0;
            line-height: 0;
            border-radius: 0;
            box-shadow: none;
        }

        #home-refer .btn {
            float: left;
            width: calc(50% - 5px);
            height: 20px;
            margin-top: 8px;
            margin-right: 5px;
            position: relative;
        }

        #home-refer p {
            color: #000;
        }

        #home-refer .btn {
            background-color: transparent;
            background-size: 100% 100%;
            color: transparent;
            text-shadow: none;
            border: 0;
            background: none;
        }

        #home-refer .btn.downline {
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
        }

        #home-refer .refer {
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
        }

        #home-refer .copy {
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
        }

        #home-refer .btn.more {
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
        }

    .depositwithdrawlabels p {
        margin-bottom: 3px;
    }

    #home-balance > .A .t1 {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    #home-game .game-container {
        overflow: hidden;
        margin-top: 15px;
        display: none;
    }

    #home-game a.custom {
        border-color: transparent;
        background-color: transparent;
        border-radius: 0;
    }

    #home-game a.open-game {
        float: left;
        width: calc(16.6% - 10px);
        padding-top: calc(16.6% - 10px);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        margin: 5px;
        border-radius: 15px;
        position: relative;
    }

    #tableTransactionHistory table {
        width: 100%;
        line-height: 1.5;
        table-layout: fixed;
    }

    #tableTransactionHistory th {
        padding: 5px 8px 3px;
        background: #1d2531;
        font-weight: 700;
        color: #fff;
        /*border-left: none;
    border-top: none;
    border-bottom: none;*/
        text-align: left;
    }

    #tableTransactionHistory table > tbody > tr > td {
        padding: 8px;
        vertical-align: top;
        border: 1px solid #ccc;
    }

    #tableTransactionHistory td b {
        color: #FFC107;
        text-transform: uppercase;
    }

    #tableTransactionHistory td span.createdTime {
        font-size: 13px;
        color: #999;
    }

    #tableTransactionHistory .status:before {
        content: "";
        width: 11px;
        height: 11px;
        border-radius: 11px;
        margin: 3px 5px 0 0;
        display: block;
        float: left;
        background-color: #999;
    }

    #tableTransactionHistory .status.COMPLETED:before {
        background-color: #393;
    }

    .transactionstatus:before {
        content: "";
        width: 11px;
        height: 11px;
        border-radius: 11px;
        margin: 3px 5px 0 0;
        display: block;
        float: left;
        background-color: #999;
    }

    .transactionstatus {
        min-width: 120px;
    }

        .transactionstatus span {
            float: left;
        }

    .statuscompleted:before {
        background-color: #393;
    }

    .statusrejected:before {
        background-color: red;
    }

    .statuspending:before {
        background-color: yellow;
    }

    #tableWager {
        width: 100%;
        line-height: 1.5;
        table-layout: fixed;
    }

        #tableWager th {
            padding: 5px 8px 3px;
            background: #1d2531;
            font-weight: 700;
            color: #fff;
            border-left: none;
            border-top: none;
            border-bottom: none;
        }

        #tableWager .tdloss {
            color: #f66;
            text-transform: uppercase;
        }

        #tableWager .tdwin {
            color: #009900;
            text-transform: uppercase;
        }

    @media only screen and (max-width: 500px) {
        #home-game a.open-game {
            width: calc(33.3% - 10px);
            padding-top: calc(33.3% - 14px);
        }
    }


    select[disabled], input[disabled], input[readonly] {
        background: #ddd;
        -webkit-text-fill-color: #666;
        color: #666;
        opacity: 1;
    }

    .live_transation_row {
        display: none;
    }

    .section_mobile {
        display: none;
    }

    .section_desktop {
        display: block;
    }

    #tableCommission .tdloss {
        color: #f66;
        text-transform: uppercase;
    }

    #tableCommission .tdwin {
        color: #009900;
        text-transform: uppercase;
    }

    .daterangepicker select.monthselect {
        display: inline-block;
    }

    .daterangepicker select.yearselect {
        display: inline-block;
    }

    .daterangepicker .drp-buttons .btn {
        display: inline-block;
    }



/** Report  A Problem */
#user-report {
    padding: 15px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position:relative;
}
    #user-report .report-container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
        #user-report .report-container h2 {
            font-size:1.3em;
            text-transform: none;
        }
    #user-report .select-container {
        margin-top: 20px;
    }
        #user-report .select-container select {
            border:1px solid #666666;
            text-align: center;
        }

    #user-report .feedback-container {
        margin-top: 20px;
    }
        #user-report .feedback-container textarea {
            width: 100%;
            margin-top: 10px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            resize: vertical;
            height:90px;
        }

    #user-report .report-tools {
        overflow: hidden;
        width: 100%;
        margin-top: 20px;
    }
        #user-report .report-tools .tool {
            font-size: 23px;
            cursor: pointer;
            border: 1px solid #ccc !important;
            padding: 5px 10px;
        }
        #user-report .report-tools .tool img{ display:inline; width:10px;
        }
    
#user-report .report-tools .tool input {
    display: none;
}
#user-report .report-tools .tool span {
    font-size: 16px;
    padding-left: 10px;
    font-family:'Times New Roman', Times, serif !important;
}
#user-report .btns {
    margin-top: 20px;
    overflow: hidden;
}
    #user-report .btns .btn {
        float: left;
        width: calc(50% - 5px);

    }
    #user-report .btns .btn:hover {
        color: #ffffff !important;
    }
#user-report .submit-btn {
    background-color: #4CAF50;
    color: #fff;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    background-image: none !important;
}
    #user-report .btns .btn:first-child {
        margin-right: 10px;
    }


    /** Responsive */
    @media only screen and (max-width: 719px) {
        .section_mobile {
            display: block;
        }

        .section_desktop {
            display: none;
        }

        #login.desktop .title {
            display: block;
        }

        #login.desktop .header {
            display: none;
        }

        #login.desktop .form-wrapper {
            float: left;
            width: 100%;
            padding: 0px !important;
        }

        #login {
            overflow: hidden;
            padding: 30px;
            min-height: 100%;
            position: relative;
        }

            #login .logo {
                width: calc(100% + 60px);
                margin: -30px -30px 20px;
                max-width: 1500px;
            }

        .form-wrapper {
            width: 100%;
        }

        #login .t2 {
            text-align: center;
            margin-top: 20px;
        }

        #login .bottom-link {
            margin-top: 20px;
            display: block;
            color: #ffc107;
            text-align: center;
        }
    }

    @media only screen and (min-width: 800px) and (max-width: 1199px) {
        #home .box-3 {
            width: 100%;
            /*table-layout: fixed;*/
            display: flex;
            flex-wrap: wrap;
        }

        #home .box-3-1 {
            vertical-align: top;
            flex-basis: 50%;
            background: rgba(0, 0, 0, .3);
            padding: 10px;
            border-right: 1px solid rgba(255, 255, 255, .5);
            box-sizing: border-box;
            display: block;
            order: 1;
        }

        #home .box-3-2 {
            vertical-align: top;
            width: 100%;
            padding: 0 15px 15px;
            box-sizing: border-box;
            display: block;
            order: 3;
            margin-top: 20px;
        }

        #home .box-3-3 {
            vertical-align: top;
            flex-basis: 50%;
            background: rgba(0, 0, 0, .3);
            padding: 10px;
            border-left: 0px solid rgba(255, 255, 255, .5);
            box-sizing: border-box;
            display: block;
            order: 2;
        }

        #home-carousel {
            width: calc( 100% + 20px);
            margin: 0 -10px;
        }

        .splide__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #home-jackpot .jackpot {
            background-size: 100% 100%;
        }
    }

    @media only screen and (max-width: 799px) {

        #home .box-3 {
            width: 100%;
            /*table-layout: fixed;*/
            display: flex;
            flex-direction: column;
        }

        #home .box-3-1 {
            vertical-align: top;
            flex-basis: auto;
            background: rgba(0, 0, 0, 0);
            padding: 10px;
            padding-top: 0px;
            border-right: 1px solid rgba(255, 255, 255, .5);
            box-sizing: border-box;
            display: block;
            order: 1;
        }

        #home .box-3-2 {
            vertical-align: top;
            width: 100%;
            padding: 0 15px 15px;
            box-sizing: border-box;
            display: block;
            order: 3;
            margin-top: 20px;
        }

        #home .box-3-3 {
            vertical-align: top;
            flex-basis: auto;
            background: rgba(0, 0, 0, 0);
            padding: 10px;
            border-left: 0px solid rgba(255, 255, 255, .5);
            box-sizing: border-box;
            display: block;
            order: 2;
        }

        #home-carousel {
            width: calc( 100% + 20px);
            margin: 0 -10px;
        }

        .splide__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #home-jackpot .jackpot {
            background-size: 100% 100%;
        }

        #home-refer .wrapper.bg {
            margin-top: 20px;
            margin-bottom: 20px;
        }
    }

    @media only screen and (max-width: 1200px) {
        #gameList .games .game {
            width: calc(20% - 10px);
        }
    }

    @media only screen and (max-width: 850px) {
        #gameList .games .game {
            width: calc(25% - 10px);
        }
    }

    @media only screen and (max-width: 500px) {
        #gameList .games .game {
            width: calc(33.3% - 10px);
        }
    }

    @media only screen and (min-width: 1120px) and (max-width: 1199px) {
        .luckydraw {
            height: 230px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 100%;
            padding-top: 158px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        #home-refer .wrapper.bg {
            margin-top: 20px;
            margin-bottom: 20px;
            padding-bottom: 0px;
        }

        #home-refer .buttons {
            height: 140px;
        }
    }

    @media only screen and (min-width: 1040px) and (max-width: 1119px) {
        .luckydraw {
            height: 230px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 100%;
            padding-top: 158px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        #home-refer .wrapper.bg {
            margin-top: 20px;
            margin-bottom: 20px;
            padding-bottom: 0px;
        }

        #home-refer .buttons {
            height: 130px;
        }
    }

    @media only screen and (min-width: 960px) and (max-width: 1039px) {
        .luckydraw {
            height: 230px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 100%;
            padding-top: 158px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        #home-refer .wrapper.bg {
            margin-top: 20px;
            margin-bottom: 20px;
            padding-bottom: 0px;
        }

        #home-refer .buttons {
            height: 120px;
        }
    }

    @media only screen and (min-width: 880px) and (max-width: 959px) {
        .luckydraw {
            height: 210px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 100%;
            padding-top: 148px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        #home-refer .wrapper.bg {
            margin-top: 20px;
            margin-bottom: 20px;
            padding-bottom: 0px;
        }

        #home-refer .buttons {
            height: 120px;
        }
    }

    @media only screen and (min-width: 800px) and (max-width: 879px) {
        .luckydraw {
            height: 210px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 100%;
            padding-top: 148px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        #home-refer .wrapper.bg {
            margin-top: 20px;
            margin-bottom: 20px;
            padding-bottom: 0px;
        }

        #home-refer .buttons {
            height: 100px;
        }
    }

    @media only screen and (min-width: 720px) and (max-width: 799px) {
        #home-carousel {
            height: 380px;
        }
        /*#home-refer .wrapper.bg {
        padding: 12px 7px 12px 12px;
        height: 580px !important;
        padding-top: 400px;
    }*/
        #home-refer .buttons {
            height: 170px;
        }

        .luckydraw {
            height: 320px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 320px;
            padding-top: 225px;
        }

            .luckydraw .myluckynumber {
                width: 180px;
                height: 55px;
                margin: 0px 0px 0px 20px;
            }
    }

    @media only screen and (min-width: 640px) and (max-width: 719px) {
        #home-carousel {
            height: 380px;
        }
        /*#home-refer .wrapper.bg {
        padding: 12px 7px 12px 12px;
        height: 520px !important;
        padding-top: 350px;
    }*/
        #home-refer .buttons {
            height: 155px;
        }

        .luckydraw {
            height: 320px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 320px;
            padding-top: 225px;
        }

            .luckydraw .myluckynumber {
                width: 180px;
                height: 55px;
                margin: 0px 0px 0px 20px;
            }
    }

    @media only screen and (min-width: 560px) and (max-width: 639px) {
        #home-carousel {
            height: 320px;
        }
        /*#home-refer .wrapper.bg {
        padding: 12px 7px 12px 12px;
        height: 430px !important;
        padding-top: 300px;
    }*/
        #home-refer .buttons {
            height: 140px;
        }

        .luckydraw {
            height: 290px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 290px;
            padding-top: 205px;
        }

            .luckydraw .myluckynumber {
                width: 160px;
                height: 49px;
                margin: 0px 0px 0px 20px;
            }

        /** home Popups */
        #main-download {
            max-width: 360px;
        }

            #main-download .download {
                width: 360px;
                height: 370px;
            }

        #main-notice {
            width: 100%;
            margin: 10px;
            box-sizing: border-box;
        }

            #main-notice .notice {
                width: 100%;
                max-width: 400px;
                height: 580px;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                padding: 25px 15px;
                background: #000000;
                text-align: center;
            }

        #home_popup_close_main_notice {
            top: -15px;
            width: 40px;
            height: 40px;
            padding: 10px;
            line-height: 40px;
            font-size: 22px;
        }
    }

    @media only screen and (min-width: 480px) and (max-width: 559px) {
        #home-carousel {
            height: 280px;
        }
        /*#home-refer .wrapper.bg {
        padding: 12px 7px 12px 12px;
        height: 410px !important;
        padding-top: 300px;
    }*/
        #home-refer .buttons {
            height: 125px;
        }

        .luckydraw {
            height: 260px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 260px;
            padding-top: 185px;
        }

            .luckydraw .myluckynumber {
                width: 150px;
                height: 45px;
                margin: 0px 0px 0px 20px;
            }

        /** home Popups */
        #main-download {
            max-width: 360px;
        }

            #main-download .download {
                width: 360px;
                height: 370px;
            }

        #main-notice {
            width: 100%;
            margin: 10px;
            box-sizing: border-box;
        }

            #main-notice .notice {
                width: 100%;
                max-width: 400px;
                height: 580px;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                padding: 25px 15px;
                background: #000000;
                text-align: center;
            }

        #home_popup_close_main_notice {
            top: -15px;
            width: 40px;
            height: 40px;
            padding: 10px;
            line-height: 40px;
            font-size: 22px;
        }

        /*#home-refer-gamelaunch {
        width: 300px;
    }
    #home-refer-gamelaunch #home_popup_cancel_main_gamelaunch {
        padding: 10px 20px;
    }
    #home-refer-gamelaunch #home_popup_enter_main_gamelaunch {
        padding: 10px 20px;
    }*/
        #gameList .tabs .tab {
            width: calc(33.33% - 5px);
        }
    }

    @media only screen and (min-width: 400px) and (max-width: 479px) {
        #home-carousel {
            height: 258px;
        }

        .safewithdraw {
            margin: 0 -10px;
            width: calc(100% + 20px);
        }
        #home .box-3-1 .jackpot-wrapper {
            margin-top: 0px;
            height: 107.6px;
        }

        #home-jackpot .jackpot {
            margin: 0 -10px;
            width: calc(100% + 20px);
            height: 107.6px;
        }

        /*#home-refer .wrapper.bg {
        padding: 12px 7px 12px 12px;
        height: 340px !important;
        padding-top: 240px;
    }*/
        #home-refer .buttons {
            height: 110px;
        }

        .luckydraw {
            height: 220px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 220px;
            padding-top: 155px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        /** home Popups */
        #main-download {
            max-width: 360px;
        }

            #main-download .download {
                width: 360px;
                height: 370px;
            }

        #main-notice {
            width: 100%;
            margin: 10px;
            box-sizing: border-box;
        }

            #main-notice .notice {
                width: 100%;
                height: 580px;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                padding: 25px 15px;
                background: #000000;
                text-align: center;
            }

        #home_popup_close_main_notice {
            top: -15px;
            width: 40px;
            height: 40px;
            padding: 10px;
            line-height: 40px;
            font-size: 22px;
        }

        /*    #home-refer-gamelaunch {
        width: 300px;
    }
    #home-refer-gamelaunch #home_popup_cancel_main_gamelaunch {
        padding: 10px 20px;
    }
    #home-refer-gamelaunch #home_popup_enter_main_gamelaunch {
        padding: 10px 20px;
    }
    #gameList .tabs .tab {
        width: calc(33.33% - 5px);
    }*/

        #home > .A .pinfo .links a {
            background-size: 108% 110%;
        }


    }

    @media only screen and (min-width: 320px) and (max-width: 399px) {
        #home-carousel {
            height: 234px;
        }
        .safewithdraw {
            margin: 0 -10px;
            width: calc(100% + 20px);
        }
        #home .box-3-1 .jackpot-wrapper {
            margin-top: 0px;
            height:97.6px;
        }
        #home-jackpot .jackpot {
            margin: 0 -10px;
            width: calc(100% + 20px);
            height: 97.6px;
        }
        /*#home-refer .wrapper.bg {
        padding: 12px 7px 12px 12px;
        height: 260px !important;
        padding-top: 180px;
    }*/
        .luckydraw {
            height: 190px;
            margin-top: 15px;
            padding-bottom: 50px;
            background-size: 100% 180px;
            padding-top: 123px;
        }

            .luckydraw .myluckynumber {
                width: 130px;
                height: 35px;
                margin: 0px 0px 0px 20px;
            }

        /** home Popups */
        #main-download {
            max-width: 280px;
        }

            #main-download .download {
                width: 280px;
                height: 320px;
            }

        #main-notice {
            width: 100%;
            margin: 10px;
            box-sizing: border-box;
        }

            #main-notice .notice {
                width: 100%;
                height: 520px;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                padding: 25px 15px;
                background: #000000;
                text-align: center;
            }

        #home_popup_close_main_notice {
            top: -15px;
            width: 40px;
            height: 40px;
            padding: 10px;
            line-height: 40px;
            font-size: 22px;
        }

        /*#home-refer-gamelaunch,
    #home-refer-clearbalance
    {
        box-sizing: border-box;
        width: calc( 100% - 20px );
        margin-left: 10px;
        margin-right: 10px;
    }*/
        /*
    #home-refer-gamelaunch {
        width: 300px;
    }
    #home-refer-gamelaunch #home_popup_cancel_main_gamelaunch {
        padding: 10px 20px;
    }
    #home-refer-gamelaunch #home_popup_enter_main_gamelaunch {
        padding: 10px 20px;
    }*/
        #gameList .tabs .tab {
            width: calc(33.33% - 5px);
        }

        #home .box-3-2 {
            padding: 0 10px 15px;
            margin-top: 0px;
        }
        #home > .A .pinfo .links a {
            height:50px;
        }
        #home > .A .pinfo .links a img{
            width:102%;
            height:104%;
        }
    }



    /** Game List */
    #gameList .tabs {
        overflow: hidden;
        background: #333;
        padding: 0 5px 5px 0;
        box-shadow: 0 0 5px #000;
        color: #fff;
    }

        #gameList .tabs .tab {
            float: left;
            padding: 8px;
            margin: 5px 0 0 5px;
            border-radius: 4px;
            background: #000;
            width: calc(9.09% - 5px);
            text-align: center;
            text-transform: uppercase;
            font-size: 13px;
            cursor: pointer;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

            #gameList .tabs .tab.selected {
                background: #FF9800;
                font-weight: 700;
            }

    #gameList .games {
        overflow: hidden;
        padding: 5px;
    }

    #gameList.embeded .games {
        margin: 0 -10px;
    }

    #gameList .games .game {
        float: left;
        width: calc(16.6% - 10px);
        margin: 10px 5px;
        text-align: center;
        cursor: pointer;
    }

        #gameList .games .game .image {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding-top: 100%;
            /*aspect-ratio: 1 / 1;
    height: 100%;*/
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 12px;
            border: 1px solid #fff;
            background-color: #fff;
        }

            #gameList .games .game .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        #gameList .games .game .btn {
            border-radius: 30px;
            padding: 3px 0;
            margin-top: 8px;
            font-size: 11px;
        }

    /** GameListVP */
    #gameList.VP .tabs .tab,
    #gameList.LV22 .tabs .tab,
    #gameList.ILOVEYOU .tabs .tab,
    #gameList.CQ9GAMING .tabs .tab,
    #gameList.JILI .tabs .tab,
    #gameList.ASIAGAMING .tabs .tab {
        width: calc(25% - 5px);
    }

    #gameList.BT .tabs .tab,
    #gameList.ACE333 .tabs .tab {
        width: calc(20% - 5px);
    }

    #gameList.FUNKYGAMES .tabs .tab {
        width: calc(33.33% - 5px);
    }

    #gameList.MARIO .tabs .tab,
    #gameList.NS .tabs .tab,
    #gameList.DRAGOONSOFT .tabs .tab,
    #gameList.HABANERO .tabs .tab,
    #gameList.KINGMAKER .tabs .tab,
    #gameList.PRAGMATICPLAY .tabs .tab,
    #gameList.SPADEGAMING .tabs .tab,
    #gameList.FACHAI .tabs .tab {
        width: calc(50% - 5px);
    }

    #gameList .games .game {
        width: calc(16.6% - 10px);
        margin: 10px 5px;
    }

    #gameList.VP .games .game .image,
    #gameList.LV22 .games .game .image,
    #gameList.ILOVEYOU .games .game .image,
    #gameList.CQ9GAMING .games .game .image,
    #gameList.PEGS .games .game .image {
        border-radius: 12px;
        border: 0;
        background-color: transparent;
    }

    #gameList.MDBOGS .games .game .image,
    #gameList.MDBOL4 .games .game .image,
    #gameList.GMSL1 .games .game .image,
    #gameList.GMSL4 .games .game .image,
    #gameList.LV22 .games .game .image,
    #gameList.ILOVEYOU .games .game .image,
    #gameList.CQ9GAMING .games .game .image,
    #gameList.L22MV .games .game .image {
        padding-top: 150%;
    }

    #gameList.EVO888H5 .games .game .image,
    #gameList.EVO888H52 .games .game .image,
    #gameList.EVO888H5B .games .game .image {
        padding-top: 53%;
        border: 0;
        background-color: transparent;
    }

    #gameList.JILI .games .game .image,
    #gameList.GMSJL .games .game .image,
    #gameList.TADA .games .game .image,
    #gameList.MACROSS .games .game .image,
    #gameList.MACROSS2 .games .game .image,
    #gameList.FUNTA .games .game .image,
    #gameList.FASTSPIN .games .game .image,
    #gameList.BT .games .game .image,
    #gameList.BT2 .games .game .image,
    #gameList.FIVEG .games .game .image {
        padding-top: 68%;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        background-size: contain;
    }

    #gameList.GMSJJ .games .game .image,
    #gameList.MG888H5 .games .game .image,
    #gameList.MG888H52 .games .game .image,
    #gameList.YBG .games .game .image {
        padding-top: 80%;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        background-size: 100% 100%;
    }

    #gameList.XE88 .games .game .image,
    #gameList.ACE333 .games .game .image,
    #gameList.ACE3332 .games .game .image {
        padding-top: 85%;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        background-size: contain;
    }

    #gameList.UUS .games .game .image, #gameList.UUS2 .games .game .image {
        padding-top: 63%;
        background-color: transparent;
        border: 0;
        border-radius: 0;
    }

    #gameList.LV22 .games .game .image {
        border: 1px solid #ffffff;
    }

    #gameList.VP .games .game .btn,
    #gameList.PEGS .games .game .btn {
        float: left;
        width: calc(100% - 53px);
    }

    #gameList.VP .games .game .btn,
    #gameList.PEGS .games .game .btn {
        border-radius: 30px;
        padding: 3px 0;
        margin-top: 8px;
        font-size: 11px;
    }

        #gameList.VP .games .game .btn.demo,
        #gameList.PEGS .games .game .btn.demo {
            width: 50px;
            margin-right: 3px;
        }

    /*#gameList.VP .games {
    padding-bottom: 40px;
    float: left;
    padding: 5px;
    width:100%;
}
#gameList.VP .tabs {
    overflow: hidden;
    background: #333;
    padding: 0 5px 5px 0;
    box-shadow: 0 0 5px #000;
    color: #fff;
}
#gameListVP .tabs .tab {
    float: left;
    padding: 8px;
    margin: 5px 0 0 5px;
    border-radius: 4px;
    background: #000;
    width: calc(25% - 5px) !important;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
#gameListVP .tabs .tab.selected {
    background: #FF9800;
    font-weight: 700;
}
#gameListVP .games .game {
    float: left;
    width: calc(16.6% - 10px);
    margin: 10px 5px;
    text-align: center;
    cursor: pointer;
    display: block;
}
#gameListVP .games .game .image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    border: 0;
    background-color: transparent;
}
#gameListVP .games .game .btn {
    float: left;
    width: calc(100% - 53px);
}
#gameListVP .games .game .btn {
    border-radius: 30px;
    padding: 3px 0;
    margin-top: 8px;
    font-size: 11px;
}
#gameListVP .games .game .btn.demo {
    width: 50px;
    margin-right: 3px;
}*/
    @media only screen and (min-width: 840px) and (max-width: 1039px) {
        /** Game List VP */
        #gameList .games .game,
        #gameList .games .game {
            width: calc(20% - 10px);
        }
    }

    @media only screen and (min-width: 560px) and (max-width: 839px) {
        /** Game List VP */
        #gameList .games .game,
        #gameList .games .game {
            width: calc(25% - 10px);
        }
    }

    @media only screen and (min-width: 240px) and (max-width: 559px) {
        /** Game List VP */
        /*#gameList.VP .tabs .tab,
    #gameList.LV22 .tabs .tab 
    {
        width: calc(25% - 5px) !important;
    }*/

        #gameList .games .game,
        #gameList .games .game {
            width: calc(33.3% - 10px);
        }
    }




    /** Changes R2 */
    .live_transation_row {
        display: none;
    }

    .btn:hover {
        color: inherit !important;
    }

    #main-notice .notice .btn:hover {
        color: #ffffff !important;
    }

    a:hover {
        color: inherit !important;
    }
    /* Partnership */
    .floating-icons-container {
        position: fixed;
        right: 5px;
        top: 35%;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation-name: move-top-to-bottom;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-duration: 4s;
    }

        .floating-icons-container img {
            width: 50px;
            height: auto;
            margin-bottom: 0px;
        }

    .static-icon-container {
        position: fixed;
        right: 5px;
        top: calc(50% + 100px);
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .static-icon-container img {
            width: 60px;
            height: auto;
        }

    @keyframes move-top-to-bottom {
        0% {
            transform: translateY(-150%);
        }

        50% {
            transform: translateY(50%);
        }

        100% {
            transform: translateY(-150%);
        }
    }

    /* Additions */
.swal2-html-container a.contact-us, .swal2-content a.contact-us {
    width: 130px;
    margin: 20px auto 0;
    font-size: 13px;
    background: #ff9800;
    color: #fff;
    padding: 6px 0px 6px 20px;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #ffb74d;
    display: block;
}
    .swal2-html-container a.contact-us:hover, .swal2-content a.contact-us:hover {
        color: #fff !important;
    }
#swal2-html-container a.contact-us i, #swal2-content a.contact-us i {
    position: absolute;
    margin: -2px -22px;
    font-size: 1.3em;
}
.swal2-html-container {
    color: #999999;
    margin-top:10px 0px 15px 0px;
}
body.swal2-height-auto {
    height: 100% !important;
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    background-color: #f27474 !important;
}
.swal2-icon.swal2-error {
    border-color: #f27474 !important;
}
.swal2-popup .swal2-styled.swal2-confirm {
    box-shadow:none;
}
.swal2-popup.swal2-modal.swal2-show{
    background:#000000 !important;
}
.swal2-popup.swal2-modal.swal2-hide {
    background: #000000 !important;
}

/** Paging fix */
.dataTables_wrapper .dataTables_info{ width: 49%; float: left;}
.dataTables_wrapper .dataTables_paginate { width: 49%; float: right; }
.dataTables_wrapper .dataTables_paginate ul{ list-style: none; display:flex; }
.dataTables_wrapper .dataTables_paginate ul li{ }

@media only screen and (max-width: 719px) {
.dataTables_wrapper .dataTables_info{ width: 100%; text-align:center; }
.dataTables_wrapper .dataTables_paginate { width: 100%; }
.dataTables_wrapper .dataTables_paginate ul{ list-style: none; display:flex;align-items: center; justify-content: center;  }
.dataTables_wrapper .dataTables_paginate ul li.paginate_button { margin:10px 5px; }
}