@charset "utf-8";
/* CSS Document */
.modal.left.fade.in .modal-dialog{left: 0;}      

.modal.left .modal-dialog {
    position: fixed;
    margin: auto;
    width: 270px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}
.modal.left .modal-content {
    height: 100%;
    overflow-y: auto;
}
.modal.left.fade .modal-dialog {
    left: -270px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}
.modal.left.fade.show .modal-dialog {
    left: 0;
}

.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 270px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}
.modal.right.fade .modal-dialog {
    right: -270px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}
.modal.right.fade.show .modal-dialog {
    right: 0;
}

/** Side Menu **/
.modal-content.sidemenu {
    border: none;
    border-radius: 0;
    background: #29323b;
    color: #fff;
    box-shadow: none;
    outline: none;
    padding: 0 5px;
}
.head-logo {
    /* background: #13242c; */
    padding: 6px;
    text-align: center;
    /* margin: 0 -5px; */
    width: 100%;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 130px auto;
    justify-content: space-between;
}
.head-logo img {
    max-height: auto;
}
.smbox {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
    background: #2d2d2d;
}
button.menu-orng-btn {
    background: #0cd664;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 5px;
    border-radius: 4px;
    height: 36px;
}
.welcome-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}
.memberbox-wrap {
    background: #0f1d23;
    border-radius: 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    font-weight: 600;
}
.notmember {
    margin-bottom: 10px;
}
button.menu-red-btn {
    background: #0cd664;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 5px;
    border-radius: 4px;
    height: 36px;
    min-width: 130px;
}
button.menu-yellow-btn {
    background: #0cd664;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 5px;
    border-radius: 4px;
    height: 36px;
    min-width: 130px;
}
.mainmenu-wrapper {
    padding: 7px 0 15px;
}
ul.nav.main-menu {
    flex-flow: column;
}
ul.nav.main-menu li.menu-item {
    margin-bottom: 4px;
}
ul.nav.main-menu li a.item-link {
    background: #0f1d23;
    display: block;
    color: #fff;
    height: 46px;
    display: flex;
    align-items: center;
    padding: 2px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
}
ul.nav.main-menu li a.item-link.droptoggle.collapsed {
    color: #fff;
}
ul.nav.main-menu li a.item-link.droptoggle {
    color: #0cd664;
}
a.item-link i {
    width: 24px;
    margin-right: 15px;
    font-size: 15px;
}
a.item-link img {
    margin-right: 15px;
    max-height: 24px;
    filter: brightness(100) brightness(1);
}
ul.nav.main-menu li a.item-link.droptoggle img {
    /* filter: hue-rotate(92deg); */
}
ul.nav.main-menu li a.item-link.droptoggle.collapsed img {
    /* filter: hue-rotate(92deg); */
}
ul.nav.main-menu li a.item-link.droptoggle i {
    color: #ffffff;
}
ul.nav.main-menu li a.item-link.droptoggle.collapsed i {
    color: #fff;
}
ul.nav.main-menu li a.item-link.droptoggle::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    right: 15px;
    font-size: 14px;
    transition: 0.3s;
    transform: rotate(90deg);
}
ul.nav.main-menu li a.item-link.droptoggle.collapsed::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    right: 15px;
    font-size: 14px;
    transition: 0.3s;
    transform: rotate(0);
}
.game-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    text-align: center;
    padding: 5px;
}
.pvlogo  {
    margin-top: 3px;
}
.pvlogo img {
    max-height: 17px;
}
.memberbox-wrap.player {
    flex-flow: row;
    justify-content: space-around;
}
.vip-player img {
    max-height: 75px;
}
.balance-am {
    margin-bottom: 8px;
    font-weight: 600;
}
.quick-menu-wrap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 7px;
    padding: 6px 0 0;
}
.qmbox {
    display: inline-block;
    background: #0f1d23;
    text-align: center;
    border-radius: 5px;
    padding: 10px 0px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.qmbox img {
    max-height: 34px;
    margin-bottom: 7px;
}
.info-link {
    padding: 5px 10px;
    margin-left: 35px;
}
.info-link a {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 3px 0;
}





/** Contact Menu **/
button.close-contact {
    position: absolute;
    background: none;
    border: none;
    color: #ffffff;
    right: 15px;
    top: 16px;
    font-size: 15px;
    z-index: 2;
}
.contact-menu-title {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    height: 55px;
    background: #29323b;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.contact-wrapper {
    padding: 10px 5px 0;
}
.contact-box {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.ct-iconbox {
    position: relative;
    height: 40px;
    width: 50px;
    padding-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 5px 0 0 5px;
}
.ct-iconbox img {
    max-height: 33px;
}
.ct-iconbox::before {
    content: '';
    position: absolute;
    height: 0px;
    width: 0px;
    top: 0;
    right: -32px;
    border-width: 20px 16px;
    border-color: transparent transparent transparent #ba2e2e;
    border-style: solid;
    z-index: 2;
}
.ctinfo {
    background: #0cd664;
    height: 40px;
    width: 79%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    border-radius: 0 5px 5px 0;
    line-height: 1.1;
    padding-left: 11px;
}
.ctinfo::before {
    content: '';
    position: absolute;
    height: 0px;
    width: 0px;
    top: -8px;
    left: 0px;
    border-width: 28px 22px;
    border-color: transparent transparent transparent #00182e;
    border-style: solid;
    z-index: 1;
} 
.ctinfo a {
    color: #fff;
}
span.subsc-text, span.fb-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
}
span.smalltext {
    font-size: 12px;
}
.ct-iconbox.call {
    background: #ba2e2e;
}
.ct-iconbox.mail {
    background: #0cd664;
}
.ct-iconbox.wechat {
    background: #2ec102;
}
.ct-iconbox.whatsapp {
    background: #24d366;
}
.ct-iconbox.youtube {
    background: #ff0000;
}
.ct-iconbox.fb {
    background: #3c5998;
}
.ct-iconbox.mail::before {
    content: '';
    border-color: transparent transparent transparent #0cd664;
}
.ct-iconbox.wechat::before {
    content: '';
    border-color: transparent transparent transparent #2ec102;
}
.ct-iconbox.whatsapp::before {
    content: '';
    border-color: transparent transparent transparent #24d366;
}
.ct-iconbox.youtube::before {
    content: '';
    border-color: transparent transparent transparent #ff0000;
}
.ct-iconbox.fb::before {
    content: '';
    border-color: transparent transparent transparent #3c5998;
}
.livechat-row {
    text-align: center;
    padding: 5px 0;
}
button.livechat-btn {
    background: #0cd664;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 5px;
    border-radius: 4px;
    height: 36px;
    min-width: 130px;
}

/** Login modal **/
.modal-content.login {
    background: #13242c;
    border: none;
    color: #fff;
}
button.close-btn {
    border: none;
    background: none;
    position: absolute;
    color: #00182E;
    right: 15px;
    top: 10px;
    z-index: 2;
}
.modal-content.login button.close-btn {
    color: #fff;    
}
.pop-title-top {
    background: #0cd664;
    text-align: center;
    height: 45px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.login-sec .pop-title-top{
    border-radius: 0;
}
.pop-form-wrapper {
    padding: 15px 15px 20px;
}
input.reg-input, select.reg-input {
    background: #e6e6e6;
    color: #000000;
    border: none;
    height: 36px;
    border-radius: 35px;
    padding: 3px 20px;
}
.label-reg {
    font-weight: 600;
    padding-bottom: 4px;
}
.reg-field {
    position: relative;
    margin-bottom: 15px;
}
span.field-icon {
    position: absolute;
    right: 20px;
    top: 13px;
    font-size: 15px;
    color: #999999;
}
button.menu-orng-btn.submit {
    min-width: 130px;
}
.forgot-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin: 15px 0 0;
}
a.forgot-link {
    color: #d7f3ff;
    text-decoration: underline;
}
.vcode-img {
    position: absolute;
    right: 20px;
    top: 5px;
}
.vcode-img img {
    max-height: 25px;
}
.rmbme-box {
    display: flex;
    align-items: center;
}
.rmbme-box label {
    margin-bottom: 0;
    padding: 0 5px;
}
.reg-field.phone-reg {
    display: flex;
}
select.reg-input.phone-code {
    width: 130px;
    margin-right: 10px;
}
.reg-field.favbox {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.favgame {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.favgame label {
    margin: 0 0 0 5px;
}
.require-text {
    color: #d7f3ff;
    padding: 5px 0 15px;
}
.follow-title {
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    margin-top: 30px;
}
.social-reg {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 8px;
    padding: 10px 0
}

/** Lotto Payout **/
.modal-dialog.payout {
    max-width: 750px;
}
.modal-content.payout {
    /* background: url("../images/bg.jpg")repeat-y top center; */
    background-size: cover;
    color: #fff;
    padding: 20px;
    border: none;
}
button.close-btn {
    background: none;
    border: none;
    color: #ededed;
    font-size: 17px;
    position: absolute;
    right: 5px;
    top: 9px;
    z-index: 2;
}
.lotto-title {
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}
.payout-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}
.forecast-table {
    text-align: center;
}
table.payoutTable tr th {
    background: #0cd664;
    padding: 5px;
    color: #fff;
    border: 1px solid #575757;
}
table.payoutTable tr td {
    border: 1px solid #575757;
    padding: 5px;
    background: #13242c;
    color: #fff;
}
table.payoutTable tr td img {
    margin-left: 5px;
}
.prize-text {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 4px;
}

/** Promo **/
.modal-dialog.promo {
    max-width: 800px;   
}
.modal-content.promo {
    background: url(../images/bg.jpg)repeat-y top center;
    background-size: cover;
    color: #ffffff;
    padding: 20px;
    border: none;
    background: #1d242c;
}
.pm-title-wrapper {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.pmtable-wrapper {
    text-align: center;
    margin-bottom: 10px;
}
.pm-title-1 {
    font-size: 15px;
    font-weight: 600;
    padding: 5px 0;
}
.modal-content.promo ul, .modal-content.promo ol {
    padding-left: 17px;
}

/** Download Modal **/
.dlgame-img {
    padding: 15px 15px;
    text-align: center;
}
.dl-content {
    padding: 0 10px 10px;
}
.download-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 15px auto;
}
a.download-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0cd664;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    min-width: 115px;
    height: 34px;
    font-size: 13px;
    margin: 0 auto;
}
.download-btn i {
    margin-right: 5px;
}
.access-info {
    overflow: auto;
    text-align: center;
    font-size: 13px;
}
button.menu-orng-btn.changepw {
    font-size: 12px;
    padding: 3px 12px;
}

/** Quick Balance **/
.modal-content.qk-balance {
    border: none;
    box-shadow: none;
}
.modal-content.qk-balance {
    background: #29313b;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    /* color: #000; */
}
button.close-balance-btn {
    position: absolute;
    z-index: 4;
    color: #fff;
    background: #0cd664;
    height: 35px;
    width: 35px;
    margin: auto;
    border-radius: 50%;
    border: none;
    bottom: -40px;
    left: 0;
    right: 0;
}
.dropdown-balance.mobile {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
    max-height: 80vh;
    overflow: auto;
}
.summary-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 9px 0px;
    font-size: 12px;
    padding-bottom: 10px;
    align-items: center;
}
.main-item, .main-amount {
    background: #29313b;
    color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 700;
}
.main-amount {
    text-align: center;
}
.platform-item {
    text-transform: uppercase;
    font-weight: 500;
    padding: 0px 10px;
}
.platform-item img {
    max-height: 25px;
}
.amount-item {
    text-align: right;
    height: 21px;
    padding: 0px 10px;
}
.balc {
    display: inline-block;
    margin: 0 3px;
}
button.btn-in {
    display: inline-block;
    border: none;
    margin: 0 5px;
    height: 100%;
    padding: 0px 10px;
    background: #78b714;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 0;
}
button.btn-in:hover {
    background: #9de032;
}
button.btn-out {
    display: inline-block;
    border: none;
    margin: 0 2px;
    height: 100%;
    padding: 0px 10px;
    background: #b71414;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}
button.btn-out:hover { 
    background: #e61b1b;
}

/** Inbox **/
.modal-content.payout .modal-header {
    padding: 0 0 10px;
}
.modal-content.payout .modal-title {
    padding: 0;
    font-size: 15px;
    font-weight: 600;
}
.modal-content.payout .modal-body {
    padding: 15px 0 0;
}

/** Update 25//1/2022 **/
.reg-field.otp {
    display: flex;
}
button.send-btn {
    background: #f6c344;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid #f6c344;
    width: 50%;
    margin-left: 7px;
}

/** Update 5/4/2022 **/
.reg-field .tooltiptext {
    margin-left: 9px;
    width: 97%;
    visibility: hidden;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 6px 6px;
    margin-top: revert;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    font-size: 12px;
    line-height: 1.1;
}
.reg-field .tooltiptext::after {
    content: '';
    position: absolute;
    top: -4%;
    left: 5px;
    margin-top: -5px;
    border-style: solid;
    border-color: transparent #aeaeae transparent transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #000;
}
.reg-field:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.promo_modal_darbg{
    background: #161d25;
    border-radius: 15px;
    padding: 15px;
    padding-bottom: 0;
}
.promo strong{
    color: #62d753;
}


/*lightmode*/
.lightmode .modal-content.sidemenu {
    background: #ffffff;
}
.lightmode ul.nav.main-menu li a.item-link {
    background: #29313b;
}
.lightmode .memberbox-wrap {
    background: #29313b;
}
.lightmode button.close-contact {
    color: #000;
}
.lightmode .login-sec input.reg-input, select.reg-input {
    background: #fff;
    color: #000000;
    border: none;
    height: 36px;
    border-radius: 35px;
    padding: 3px 20px;
}
.lightmode .login-sec a.forgot-link {
    color: #000;
    text-decoration: underline;
}
.lightmode .login-sec .rmbme-box label {
    color: #000;
}
.lightmode .login-sec span.field-icon {
    color: #000;
}












