@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

body {font-family: "Nunito", sans-serif; line-height:1.4; font-size:14px; margin:0 auto; color:#191919;/* background: linear-gradient(to bottom, rgba(19,62,156,1) 0%, rgba(139,145,255,1) 44%, rgba(200,75,249,1) 72%, rgba(160,34,160,1) 100%); */}

a { text-decoration: none; cursor:pointer; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }

a:hover, a:focus, button:focus, button:hover, input:focus, select:focus { text-decoration: none; outline: none;}

img { max-width:100%;}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #666;
    width: 100%;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #888; 
}

::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.t-body {background: #a124a4 url("../images/bg.jpg") center top no-repeat;color: #fff;}
.t-body3 {background: #a124a4 url("../images/bg.jpg") center top no-repeat;color: #fff;}

.container-fluid {
    max-width: 1440px;
}
.header-top .row {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 82px;
}
.logo {
    padding: 5px 0;
}
.logo img {
    max-height: 48px;
}
.header-right {
    margin-top: 10px;
}
.headright {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
a.mobile-icon {
    margin-right: 10px;
}
.login_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.log-group {
    margin: 0 5px;
}
.log-group input {
    border: 1px solid #003a76;
    border-radius: 3px;
    width: 116px;
    height: 30px;
    padding: 0 10px;
}
.login_btn {
    background: #FDB813;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
    margin-right: 5px;
}
.join_btn {
    background: #114dbf;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.login_btn a,.join_btn a{
    color: #fff;
}
.languageToggle {
    cursor: pointer;
}
.languageToggle img {
    max-width: 29px;
}
.languageToggle i {
    font-size: 18px;
    vertical-align: sub;    
    margin-left: 5px;
}
.languageToggle button {
    background: none;
    border: none;
}
.languageToggle .btn-secondary:hover {
    color: #fff;
    background-color: #ffffff;
    border-color: #ffffff;
}
.languageToggle .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
    min-width: 20px;
}
.btmtools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6d6d6d;
    font-size: 12px;
    padding: 5px 10px 0;
    padding-left: 33px;
}
.forgot-link a {
    color: #6d6d6d;
    text-decoration: underline;
}
.header-menu {
    position: relative;
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
}
.main-nav {
    display: flex;
    align-items: center;
    height: 47px;
}
.main-nav li.nav-item {
    margin: 0 21px;
    padding: 9px 0 14px;
}
.main-nav li.nav-item a.navlink {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;  
}
.main-nav li.nav-item:hover a.navlink {
    color: #47cdff;
}
.main-nav li.nav-item.menuimg a.navlink img{
    filter: contrast(0) brightness(5);
}
.main-nav li.nav-item.menuimg:hover a.navlink img{
    filter: none;
}
.position-inherit {
    position: inherit;
}
.dropmenu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    visibility: hidden;
}
.main-nav li.nav-item:hover .dropmenu {
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}
.dropinner {
    /* border-bottom: 1px solid #E6E6E6; */
}
.dm-item {
    display: inline-block;
    text-align: center;
    padding: 10px; 
    text-transform: uppercase;
}
.gm_name {
    margin-top: 5px;
    transition: all 0.5s;
    color: #000000;
    background: #ffffff;
    padding: 12px 10px;
    font-weight: 700;
}
.dm-item:hover .gm_name{
    color: #ffffff;
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
}
.gm_name img {
    max-width: 35px;
    vertical-align:text-bottom;
}
/*.dm-item img.img-open {
    display: none;
}
.dm-item:hover img.img-open {
    display: block;
}
.dm-item:hover img.img-close {
    display: none;
}*/
.dropmenu:hover a {
    opacity: 0.5; 
    transition: all 0.5s;
}
.dropmenu:hover a:hover {
    opacity: 1;
    transition: all 0.5s;
}


/** Footer **/
.footer-sec {
    background: #F2F2F2;
    color: #757575;
    padding-bottom: 45px;
}
.footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-menu-wrapper {
    padding: 10px 25px;
}
.footer-menu li {
    margin: 10px 20px 10px 0;
    position: relative;
}
.footer-menu li a {
    color: #757575;
}
.footer-menu li a:hover {
    color: #757575;
    text-decoration: underline;
}
.footer-menu li::after {
    content: '';
    border-right: 1px solid #444444;
    height: 10px;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: -11px;
}
.footer-menu li:last-child::after {
    content: none;  
}
.copyright {
    font-size: 11px;
    text-transform: uppercase;
}
.copyright img {
    max-width: 21px;
    margin-left: 5px;
}
.fp-btm {
    border-bottom: 1px dotted #505050;
}
.fp_wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    padding: 15px;
}
.footer-point {
    text-align: center;
    max-width: 210px;
    margin: auto;
}
.ptitle {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0 20px;
}
.fp_caption {
    margin-bottom: 10px;
}
.ftcol {
    margin: 15px 0;
}
.footer-point a {
    color: #0070d1;
}
.footer-point a:hover {
    color: #0070d1;
    text-decoration: underline;
}
.ftittle {
    font-size: 12px;
    margin-bottom: 10px;
}
.ft_icon img {
    filter: grayscale(1);
    margin-right: 10px;
    opacity: 0.8;
}
.ft_icon img:hover {
    filter: none;
    opacity: 1;
}

.footer-seo {
    padding: 30px;
    background: #fff;
}
.footertopContent {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footertopItem {
    margin: 0 15px;
    text-align: justify;
    max-width: 33%;
}
.textContent {
    font-size: 11px;
    color: #a4a4a4;
}
.textContentItem {
    margin-bottom: 20px;    
}
.pheader {
    font-size: 14px;
    color: #a4a4a4;
    margin-bottom: 6px;
    font-weight: 700;
}
.footertopContent a {
    color: #7e8c8d;
}

/** Left Floating Download **/
.left-slide-download {
    position: fixed;
    left: -190px;
    top: 128px;
    z-index: 99;
    transition: ease 0.3s;
}
.left-slide-download:hover {
    left: 0;
    transition: ease 0.3s;
}
.download-left-btn {
    position: absolute;
    top: 0;
    right: -38px;
    cursor: pointer;
}
.downlad-float-wrapper {
    padding: 2px 5px;
    width: 190px;
    background: #f7f7f7;
}
.dl-box {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    border-radius: 3px;
    /* border: 1px solid #098ce8; */
    text-align: center;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
.dl-box:hover {
    filter: brightness(1.15);
}
.modal-dialog.download {
    max-width: 600px;
}
.modal-content.download {
    background: #ecf0f5;
    padding: 15px 15px;
}
.proider-title {
    text-align: center;
    margin-bottom: 20px;
}
button.close-download {
    position: absolute;
    right: 5px;
    top: 5px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
}
.download-info-wrapper .downloadbox {
    height: auto;
    padding-bottom: 15px;
}



/** Footer License **/
.footer-license {
    background: #F7F8F9;
    padding: 30px 0;
    color: #000;
}
.license-wrap {
    display: grid;
    grid-template-columns: 45% 40% 15%;
    border-bottom: 1px dotted #505050;
    padding: 15px 25px 20px;
}
.license-wrap.scwrap {
    padding: 15px 25px 40px;
}
.ft-about {
    max-width: 450px;
    font-size: 12px;
    line-height: 1.3;
    margin-top: 15px;
}
.gtitle {
    margin-bottom: 15px;
    font-size: 13px;
}
.license-logo img {
    height: 28px;
    margin-right: 15px;
}
.social-logo img {
    height: 35px;
    margin-right: 15px;
}



/** Homepage **/
.home-featured {
    display: grid;
    grid-template-columns: 55% auto;
    grid-gap: 10px 10px;
    margin: 20px 0;
}
.home-featured a:hover {
    filter: brightness(1.10);
}
.hfbox-1 img {
    height: auto;
    object-fit: fill;
}
.hfbox-2 a {
    margin-bottom: 10px;
    display: block;
    overflow: hidden;
}
.hfbox-2 a:last-child {
    margin-bottom: 0;
}

/** Live Casino **/
.casino-sec {
    padding: 30px 0 45px;
}
.gamerow-wrap {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 10px 15px;
}
.gamebox {
    display: block;
    max-width: 266px;
    transition: all 0.3s;
    margin: 16px auto;
    margin-top: 0px;
}
.gamebox .game-title {
    color: #000;
    background: #F2F2F2;
    padding: 12px 10px;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
}
.gamebox:hover .game-title{
    color: #ffcd37;
    background: linear-gradient(0deg, rgba(0,97,194,1) 0%, rgba(2,161,226,1) 100%);
}
.gamebox .game_img {
    max-width: 266px;
    /* height: 174px; */
    overflow: hidden;
}
.gamebox .game_img img {
    height: 100%;
    /* object-fit: cover; */
}
.gamebox:hover {
    transform: translateY(-10px);
    transition: all 0.3s;
}
.gamebox .game_img .img-open {
    display: none;
}
/*.gamebox:hover .game_img .img-close {
    display: none;
}
.gamebox:hover .game_img .img-open {
    display: block;
}*/

/** Sport **/
.sports-sec {
    background: url("../images/sports/sp-bg.jpg")no-repeat top center;
    background-size: cover;
    padding: 15px 0 40px;
}
.nav-tabs.sports {
    border: none;
}
.nav-tabs.sports .nav-item {
    width: 16.2%;
    text-align: center;
    margin-right: 0.5%;
}
.nav-tabs.sports .nav-item:last-child {
    margin-right: 0;
}
.nav-tabs.sports .nav-link {
    border: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #ffffff;
    padding: 5px 10px;
}
.nav-tabs.sports .nav-item.show .nav-link, .nav-tabs.sports .nav-link.active {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
}

/** Slots **/
.slots-sec {
    padding: 30px 0 45px;
}
ul.nav.provider-menu {
    display: flex;
    align-items: flex-end;
    text-align: center;
    /* background: #f2f2f2; */
}
ul.nav.provider-menu li {
    width: 117px;
    font-size: 11px;
    /* height: 100px; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 5px;
    background: #f2f2f2;
}
ul.nav.provider-menu li a {
    padding: 14px 8px;
    display: block;
    color: #2d82d5;
    font-size: 14px;
    font-weight: bold;
}



ul.nav.provider-menu li a img {
    margin-bottom: 5px;
    width: 70px;
}
ul.nav.provider-menu li.active, ul.nav.provider-menu li:hover {
    background: linear-gradient(to bottom, rgba(143,36,236,1) 0%, rgba(98,12,247,1) 100%);
    color: #fff;
}
ul.nav.provider-menu li.active a, ul.nav.provider-menu li:hover a {
    color: #ffffff;
}
ul.nav.provider-menu li.active img, ul.nav.provider-menu li:hover img {
    filter: contrast(1) brightness(10);
    color: #fff;
}

ul.nav.filter-list {
    background: #ffffff;
    margin-top: 8px;
    margin-bottom: 5px;
}
ul.nav.filter-list li {
    min-width: 120px;
    text-align: center;
}
ul.nav.filter-list li a {
    color: #2d82d5;
    display: block;
    padding: 8px 2px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}
ul.nav.filter-list li.active a, ul.nav.filter-list li:hover a {
    color: #2d82d5;
    background: #cad3dc;
}
.thumbnail-slots {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 10px;
    background: #fff;
    padding: 15px;
}

/** Fishing **/
.fish-wrap {
    position: relative;
    height: 420px;
}
.fish-btn {
    position: absolute;
    left: 17%;
    top: 56%;
}
a.play-fish {
    display: inline-block;
    background: #fdb715;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 23px;
    border-radius: 2px;
}
a.play-fish:hover {
    background: #343434;
    color: #fff;
}
.fish-wrap.bg {
    background: url("../images/fishing/fish-ag.jpg")no-repeat center;
    background-size: cover;
}
.fish-wrap.pp {
    background: url("../images/fishing/fish-cq9.jpg")no-repeat center;
    background-size: cover;
}
.fish-wrap.cq9 {
    background: url("../images/fishing/fish-spade.jpg")no-repeat center;
    background-size: cover;
}
.fish-wrap.jk {
    background: url("../images/fishing/fsh-jkr.jpg")no-repeat center;
    background-size: cover;
}

/** 7-11 **/
.loginbox {
    max-width: 920px;
    margin: auto;
}
.game-login {
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d9d9d9;
}
.logo-prov {
    margin-top: -23px;
}
.logo-prov img {
    max-width: unset;
}
.fwrap {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.fwrap label {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    margin-right: 15px;
}
.form-wrap {
    position: relative;
}
.form-wrap input {
    height: 35px;
    width: 170px;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    padding: 5px 30px 5px 8px;
}
span.login-icon {
    position: absolute;
    right: 9px;
    top: 7px;
    font-size: 16px;
    color: #838080;
}
.instruc-box {
    width: 360px;
    background: #e5e5e5;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px;
    font-size: 13px;
}
.gameinfo-wrapper {
    max-width: 920px;
    margin: auto;
    background: #f2f2f2;
    padding: 25px;
    font-size: 13px;
    color: #838080;
}
.more-info {
    color: #0062c9;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}
.more-info a {
    text-decoration: underline;
    color: #0062c9;
}
.gameinfo-wrapper ol {
    padding-left: 18px;
    font-size: 12px;
}
.btitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}
.btext {
    font-size: 16px;
}

/** Info Centre **/
.info-sec {
    margin: 20px 0;
}
.info-sec .container-fluid {
    max-width: 900px;
}
.inforow {
    background: #f2f2f2;
}
.title-info {
    text-align: center;
    background: #013B7A;
    color: #fff;
    font-weight: 700;
    padding: 8px;
    font-size: 17px;
}
.info-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 15px;
    border-bottom: 1px solid #d3d3d3;
}
.info_item {
    display: block;
    color: #8d8d8d;
    text-align: center;
    font-size: 17px;
    padding: 15px 0;
}
.info_item img {
    filter: grayscale(1);
    margin-bottom: 15px;
}
.info_item:hover, .info_item.active {
    color: rgb(0, 112, 209);
}
.info_item:hover img, .info_item.active img {
    filter: none;   
}

.faq-card, .tnc-card {
    border-bottom: 1px solid #d3d3d3;
}
button.btn-tnc {
    background: #e1e1e1;
    color: #616161;
    font-size: 16px;
    border: none;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 15px;
    position: relative;
}
button.btn-tnc.collapsed {
    background: none;
}
.tnc-body {
    padding: 20px 15px;
    color: #8d8d8d;
}
button.btn-tnc::after {
    content: '>';
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 17px;
    transform: rotate(270deg);
    transition: all 0.3s;
}
button.btn-tnc.collapsed::after {
    content: '>';
    transform: rotate(90deg);
    transition: all 0.3s;
}

.copyright-info {
    padding: 15px 15px;
    text-align: right;
    font-size: 12px;
    color: #8d8d8d;
}
.termcaps {
    color: #7e8c8d;
    font-size: 16px;
    margin: 10px 15px;
}

/*afterlogin*/
.afterlogin_bg{
    background: url("../images/afterlogin/bg.jpg")no-repeat top center;
    padding: 20px 0;
}
.profilebox{
    background-color: #ffffff;
    height: 89px;
    padding: 14px;
    margin-bottom: 20px;
}
.profileinfo{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.profile_icon{
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 0 10px;
}
.wallet_custom{
    border-left: 1px dotted #505050;
    padding-left: 20px;
    color: #000;
}
.profile_rank{
    color: #3f8fcb;
}
.wallet_bal{
    color: #0066d1;
}
.sidepanel {
    margin: 0;
    padding: 0;
    width: 195px;
    float: left;
    border-bottom: none;
    color: #000;
}
.sidepanel ul{
    background-color: rgba(255, 255, 255, 0.5);
    list-style-type: none;
    padding: 20px;
}
.sidepanel ul li{
    background-image: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    margin-bottom: 10px;
    border-radius: 10px;
}
.sidepanel ul li a{
    display: flex;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    margin: 0px;
    border-radius: 5px;
    line-height: initial;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
    word-break: break-all;
    padding: 10px;
    background-image: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    color: #858585;
    box-shadow: 0px -1px 0 #d8d8d8, 0 0px 0px 1px rgba(255, 255, 255, 0.9);
}
.sidepanel ul li.active a{
    background-image: none;
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
}
.sidepanel_icon_white{
    display: none;
}
.sidepanel ul li.active a .sidepanel_icon_white{
    display: block;
}
.sidepanel ul li.active a .sidepanel_icon_color{
    display: none;
}
.sidepanel ul li a img{
    margin-right: 5px;
    width: 24px;
}
.sidepanel_content {
    display: block;
    margin-left: 210px;
    min-height: 700px;
    border-radius: 10px;
    background: rgb(255 255 255 / 0.84);
    color: #ffffff;
}
.sidepanel_header{
    padding: 20px;
    color: #000000;
    border-bottom: 1px solid #c4c4c4;
}
.setting_text{
    color: #6a8cb0;
}
.title_text{
    display: flex;
    padding-left: 50px;
    align-items: center;
}
.title_text02{
    display: flex;
    padding-left: 50px;
    align-items: unset;
}
.nav-pills.afterlogin .nav-link.active, .nav-pills.afterlogin .show>.nav-link {
    color: #fff;
    background-color: #ffffff;
    border: 1px solid #0066d1;
    background-image: url(../images/afterlogin/deposit/tContent_depositContent_largeActive.png);
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 8px 0px;
}
.nav-pills.afterlogin .nav-link {
    color: #fff;
    background-color: #ffffff;
    padding: 0;
    margin: 8px 0px;
    border: 1px solid #bbbbbb;
}
.ori_img{
    display: none;
}
.nav-pills.afterlogin .nav-link.active .ori_img{
    display: block;
}
.nav-pills.afterlogin .nav-link.active .grey_img{
    display: none;
}
.bank_select{
    display: flex;
    justify-content: left;
    width: 500px;
    font-size: 12px;
}
.bank_select_inner{
    display: flex;
    color: #858585;
    text-align: center;
    align-items: center;
    margin-right: 10px;
}
.bank_select_img{
    border: 1px solid #858585;
    border-radius: 5px;
    padding: 0px;
    margin:8px;
    margin-left: 0;
}
.nav-pills.afterlogin_bank .nav-link.active, .nav-pills.afterlogin_bank .show>.nav-link {
    color: #fff;
    background-color: #ffffff00;
    background-image: url(../images/afterlogin/deposit/tContent_depositContent_smallActive.png);
    background-position: 1% 56%;
    background-repeat: no-repeat;
    padding: 0;
}
.nav-pills.afterlogin_bank .nav-link {
    padding: 0;
}
.nav-pills.afterlogin_bank .nav-link.active .bank_select_inner{
    color: #0066d1;
}
.nav-pills.afterlogin_bank .nav-link.active .bank_select_inner .bank_select_img{
    border: 1px solid #0066d1;
}
.ori_img{
    display: none;
}
.nav-pills.afterlogin_bank .nav-link.active .ori_img{
    display: block;
}
.nav-pills.afterlogin_bank .nav-link.active .grey_img{
    display: none;
}
.inputDeposit{
    border: 1px solid silver;
    background-color: #fff;
    color: #999;
    border-radius: 4px;
    display: flex;
    align-items: center;
    height: 40px;
    width: 300px;
}
.maxLimit{
    color: red;
}
.depositBtn{
    width: 80px;
    height: 40px;
    background-image: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -moz-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -ms-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -o-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: linear-gradient(top, #f4f3f3, #e6e6e6);
    -webkit-transition: background-color .2s ease-out;
    -moz-transition: background-color .2s ease-out;
    -ms-transition: background-color .2s ease-out;
    -o-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    background-clip: padding-box;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid silver;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #858585;
    font-size: 14px;
}
.submit_btn{
    margin-top: 10px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    background: #0062c9;
    background: -moz-linear-gradient(top, #0062c9 0%, #003679 102%);
    background: -webkit-linear-gradient(top, #0062c9 0%, #003679 102%);
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
    cursor: pointer;
    font-size: inherit;
    border: none;
}
.upload_btn{
    margin-top: 10px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    background: #0062c9;
    background: -moz-linear-gradient(top, #f4f3f3 0%, #e6e6e6 102%);
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background: linear-gradient(to bottom, #f4f3f3 0%, #e6e6e6 102%);
    color: #858585;
    cursor: pointer;
    font-size: inherit;
    border: 1px solid #e6e6e6;
}
.copy_dep.upload_btn{
    margin-top: 0px;
    margin-left: 10px;
    border-radius: 4px;
    width: 50px;
    height: 40px;
    background: #0062c9;
    background: -moz-linear-gradient(top, #f4f3f3 0%, #e6e6e6 102%);
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background: linear-gradient(to bottom, #f4f3f3 0%, #e6e6e6 102%);
    color: #858585;
    cursor: pointer;
    font-size: inherit;
    border: 1px solid #e6e6e6;
}
.bank_details_copy{
    background-color: #004997;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid silver;
    width: 250px;
    height: 30px;
    justify-content: center;
}
.tab-pane-bank{
    margin-left: auto;
    margin-right: 0;
}
.important-notice{
    background: #eeeeee;
    padding: 20px 20px 20px 20px;
    margin: 20px;
    font-size: 12px;
    height: fit-content;
}
.important-notice-title{
    color: #000000;
}
.important-notice-content {
    color: #858585;
}
.important-notice-content ol{
    padding: 0;
}
.exchangeIcon{
    color: #999;
    display: flex;
    align-items: center;
}
.weekly{
    background: #E2E2E2;
    padding: 10px;
    margin-left: auto;
    margin-right: 0;
    color: #000;
    display: flex;
    border-radius: 5px;
}
.text_title_transfer{
    color: #bfbfbf;
}
.transfer_game_main{
    font-size: 12px;
}
.transfer_box{
    display: flex;
    border: 1px solid #e2e2e2;
    background-color: #fff;
    color: #000000;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.transfer_box_sec{
    color: #000000;
    padding: 0 2px;
    background-color: #E2E2E2;
    display: flex;
    min-height: 27px;
    align-items: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.transfer_btn{
    height: 22px;
    width: 64px;
    border: 1px solid #0066d1;
    color: #0066d1;
    background: none;
    border-radius: 5px;
}
.transfer_btn:hover {
    background: #0066d1;
    color: #fff;
}
.text-blue{
    color: #0066d1;
}
.withdrawal table {
    border-collapse: collapse;
    width: 100%;
    color: #000000;
}
.withdrawal table th {
    border: 1px solid #d5d5d5;
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
    color: #000000;
    background-color: rgba(129, 157, 187, 0.15);
}
.withdrawal table td {
    text-align: left;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #d5d5d5;
    background-color: #ffffff;
}
.withdrawal table td:first-child {
    text-align: right;
}
.withdrawal.rebate_custom table td{
    text-align: center;
}
.history_main{
    display: flex;
    align-items: center;
}
.history_btn{
    border: none;
    padding: 5px;
    background-color: transparent;
    color: #858585;
    margin: 0 5px;
}
.history_btn.active{
    border: 1px solid #0066d1;
    border-radius: 4px;
    color: #0066d1;
    background: white;
    padding-left: 18px;
    padding-right: 18px;
    align-items: center;
}
.history_table table{
    width: 100%;
    color: #000;
    text-align: center;
}
.history_table table tr:first-child{
    background-color: rgba(129, 157, 187, 0.15);
}
.history_table table tr td{
    padding: 15px 0;
    border-bottom: 1px solid #d0d0d0;
    min-width: 200px;
}
.history_table table tr td i{
    font-size: 20px;
}
.history_table table tr th{
    padding: 8px;
}
.history_to{
    color: #000;
    display: flex;
    align-items: center;
}
.form-control.date_custom{
    padding: 0 10px;
}
.inbox_msg_text{
    color: #0066d1;
    cursor: pointer;
}

/*profile*/
.profile_main{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #858585;
    grid-column-gap: 5px;
}
.profile_main_title{
    color: #6a8cb0;
}
.profile_main_bg{
    background-color: #e2e2e2;
    padding: 20px;
}
.bank_details_content{
    display: flex;
    align-items: center;
}
.deposit_btn{
    background: #0166d2;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
    margin: 0 5px;
}
.deposit_btn a{
    color: #fff;
}
.logout_btn{
    background: #959595;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
    margin: 0 5px;
}
.btmtools_after {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6d6d6d;
    font-size: 12px;
    padding: 5px 10px 0;
    float: right;
}
.log-group a{
    color: #6d6d6d;
}
.three_dot{
    font-size: 10px;
}
.msg_head{
    font-size: 20px;
    color: #0066d1;
}
.about-us-header, .contact-us-header {
    /* background: #efefef; */
    padding-top: 20px;
    font-weight: bold;
    font-size: 18px;
    margin: 0px !important;
}
.contact-us-header_inner{
    margin: 50px 0;
}
.contact_dotted{
    border-right: 1px dotted;
}

/*promotion*/
.mix {
    display: none;
}
.filter-menu-bar{
    margin: 20px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
}
.pmbox {
    background: none;
    color: #8f8f8f;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer;
}
.pmbox.active {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
}
.promo-content {
    display: grid;
    grid-gap: 0px;
}
.pm-boxer {
    display: grid;
    grid-template-columns: 55% 45%;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 10px 0;
    grid-gap: 10px;
    background: #fff;
}
.pm-boxer_inner{
    display: grid;
    border-bottom: 1px dotted;
    padding-bottom: 10px;
    padding-top: 20px;
    color: #000;
}
.pm-boxer_inner_sec{
    display: flex;
    align-items: flex-end;
}
.moreinfo_btn{
    background-color: #023c7a;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.apply_btn{
    background: #114dbf;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.text_red{
    color: red;
}
.text_blue{
    color: blue;
}
.modal-dialog.promo {
    max-width: 800px!important;
}
.modal-content.promo {
    padding: 20px;
}
button.close-promo {
    background: none;
    border: none;
    font-size: 19px;
    padding: 8px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
}
.pm-title-wrapper {
    font-size: 20px;
    font-weight: 700;
}
.pmtable-wrapper {
    margin: 15px 0;
}
table.promo-table tr th {
    color: #fff;
    background: #013B7A;
    padding: 4px;
    border: 1px solid #013B7A;
}
table.promo-table tr td {
    border: 1px solid rgb(1 59 122 / 33%);
}
.gr-title {
    font-weight: 700;
    font-size: 16px;
}
.grlist ul {
    padding-left: 20px;
    margin-top: 5px;
}
.grlist ul li {
    padding-bottom: 3px;
    font-size: 14px;
}

/*index*/
.hotgames-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
button.moregame-btn {
    background: #013b7a;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 2px;
}
button.moregame-btn i {
    color: #FDB813;
    font-size: 10px;
}
.hot-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 7px 0;
    font-weight: 700;
}
.hot-title img {
    margin-right: 5px;
}
.index_products{
    border-collapse: separate;
    border-spacing: 10px;
}
.hotgame_main{
    
}
.hotgame_main a{
    color: grey;
}
.hotgame{
    background: #F2F2F2;
    padding: 8px 3px;
    text-align: center;
}
.slider_jackpot{
    position: relative;
}
.jackpot_text {
    position: absolute;
    bottom: 12%;
    font-weight: 700;
    font-size: 35px;
    color: #000;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.index_logo_provider{
    padding: 15px;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    background-color: #ebebeb;
    align-items: center;
}
.index_logo_provider li img{
    filter: grayscale(1);
    opacity: 0.8;
}
.index_logo_provider li img:hover{
    filter: none;
    opacity: 1;
}

/** Match - center **/
.latest-wrapper {
    display: grid;
    grid-template-columns: 55% 44%;
    grid-gap: 1%;
    /* border-top: 1px dotted #a0a0a0; */
    padding-top: 10px;
    margin-bottom: 30px;
}
ul.carousel-indicators.vdemo {
    position: absolute;
    top: -25px;
    right: 0;
    left: auto;
    margin: 0;
}
ul.carousel-indicators.vdemo li {
    border-radius: 50%;
    height: 9px;
    width: 9px;
    background-color: transparent;
    border: 1px solid #ffffff;
    opacity: 1;
    background-clip: unset;
}
ul.carousel-indicators.vdemo li.active {
    background-color: #104dbe;
    border: 1px solid #104dbe;
}
.app-slide-wrapper {
    position: relative;
    padding-top: 5px;
    /* border-top: 1px dotted #a0a0a0; */
}
.hot-title.app {
    position: absolute;
    left: 15px;
    top: 10px;
}
.app-slider {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 666px;
}
ul.carousel-indicators.vdemo.app {
    position: absolute;
    top: 30px;
    right: 0;
    left: auto;
}
.download-home {
    position: absolute;
    right: 0;
    top: 40%;
    left: 59%;
    text-align: center;
    display: grid;
    grid-template-columns: 50% 50%;
    max-width: 400px;
}
.device-app {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}
.qr-img {
    max-width: 150px;
    margin: auto;
}

/*download*/
.downloadTab{
    margin: 20px 0;
}
.downloadTab .nav-pills .nav-link {
    background: #fff;
    margin-bottom: 5px;
    height: 50px;
    color: #000000;
    align-items: center;
    display: flex;
}
.downloadTab .nav-pills .nav-link.active,.downloadTab .nav-pills .nav-link:hover{
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
}
.downloadbody{
    text-align: center;
}
.downloadbox{
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}
.ndl-btn {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 4px;
    width: 78%;
}
.ndl-btn:hover,.ndl-btn:focus{
    color: #ffffff;
    background: linear-gradient(to bottom, rgba(89,8,251,1) 0%, rgba(154,41,234,1) 100%);
}
.adl-btn{
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 4px;
    width: 78%;
}
.adl-btn:hover,.adl-btn:focus{
    color: #ffffff;
    background: linear-gradient(to bottom, rgba(89,8,251,1) 0%, rgba(154,41,234,1) 100%);
}
.dl{
    max-width: 500px;
    margin: auto;
}
.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}
.dl table th {
    border: 1px solid #d5d5d5;
    text-align: center;
    padding: 8px;
    background-color: rgba(129, 157, 187, 0.15);
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}
.dl table td {
    text-align: left;
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #d5d5d5;
    color: #000000;
}
.dl .username_custom {
    color: #6a8cb0;
}
.downloadboxContent{
    padding: 10px;
    border: 1px solid #620cf8;
    background: #fff;
}
/*downloadEND*/

/*about*/
.sup_wrap_main{
    margin: 20px 0;
    color: #000000;
    font-size: 13px;
}
.sub-side-nav{
   margin: 0;
    padding: 0;
    width: 195px;
    float: left;
    border-bottom: none;
    color: #ffffff;
    list-style-type: none;
}
.sub-side-nav li{
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    cursor: pointer;
    border-radius: .25rem;
    margin-bottom: 5px;
}
.sub-side-nav li:hover,.sub-side-nav li.active{
    background: -moz-linear-gradient(bottom, #0062c9 0%, #003679 102%);
    background: -webkit-linear-gradient(bottom, #0062c9 0%, #003679 102%);
    background: linear-gradient(to bottom, #0062c9 0%, #003679 102%);
}
.sub-side-nav li:hover a,.sub-side-nav li.active a{
    color: #ffffff;
}
.sub-side-nav li a {
    color: #858585;
    padding: 20px;
    display: block;
}
.sub-side-right{
    display: block;
    padding: 10px;
    margin-left: 196px;
    min-height: 400px;
    border: 1px solid #c4c4c4;
    background: rgba(129, 157, 187, 0.15);
}
.sub-side-right-title{
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 10px;
}
/*aboutEND*/

/*register*/
.sub-side-right .form-group .form-control{
    background-color: #ffffff;
    border: 1px solid #44474c;
    border-radius: 2px;
    color: #191919;
    height: 31px;
    padding: 0 10px;
}
.vcode{
    position: absolute;
    right: 20px;
    top: 30px;
}
/*registerEND*/

/** Forgot Password **/
.reg-sec {
    padding: 30px 0;
    background: #efefef;
}
.fg-wrapper {
    background: #fff;
    padding: 30px;
    max-width: 959px;
    margin: auto;
    display: grid;
    grid-template-columns: 34% auto;
    grid-gap: 30px;
}
.fg-form {
    max-width: 400px;
}
.enter-remind {
    border: 1px solid #DDDDDD;
    padding: 20px;
    font-size: 17px;
    height: 120px;
    color: #505050;
    display: flex;
    align-items: center;
}
.bk-title {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    margin-bottom: 15px;
}
.regfield {
    display: grid;
    grid-template-columns: 145px auto;
    grid-gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}
.rgfeild {
    position: relative;
}
.rgfeild.date_input input{
    width: 100%;
}
.regfield .label {
    align-self: center;
    color: #000;
}
span.manred {
    color: red;
    float: right;
}
.regfield input {
    font-size: 13px;
    padding: 3px 10px;
    border: 1px solid #d6d6d6;
    height: 34px;
}
.vericode {
    position: absolute;
    top: 5px;
    right: 7px;
}
button.reg-btn {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    padding: 3px 20px;
    height: 34px;
}
button.reg-btn:hover {
    color: #fff;
    background: linear-gradient(to bottom, rgba(89,8,251,1) 0%, rgba(154,41,234,1) 100%);
}
.benefit-box {
    border: 1px solid #DDDDDD;
    padding: 20px;
}
.benefit-box h4 {
    font-size: 16px;
    font-weight: 700;
}
.benefit-box ul {
    padding: 0;
    padding-left: 15px;
    color: #7E7E7E;
    font-size: 13px;
}
.benefit-box ul li {
    padding-bottom: 5px;
}
.accept-field {
    font-size: 13px;
    color: #636363;
}
.regbn {
    grid-column: 1/3;
}
.notice-sec {
    background: #252426;
}
.annouce-in {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    height: 33px;
    background-color: #00a0df;
    padding: 10px;
}
.icon {
    color: #fff;
    font-size: 18px;
}
.runningtext {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    width: 100%;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
}
.upload_rep{
    border:none;
}
.input_date{
    width: 100%;
}
.mainwallet_custom{
    margin-bottom: 0px;
}
.btn_transfer_all{
    width: 102px;
    margin-left: 10px;
    margin-top: 0px;
}
.mainwallet_text {
    font-weight: bold;
    font-size: 16px;
    padding-left: 0px;
}

/*blog*/
.blog-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #013B7A;
    border-radius: 10px;
    background: #f5faff;
}
.blog-title-box {
    background: #013B7A;
    padding: 5px;
    display: flex;
}
.blog-title-box i {
    font-size: 21px;
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #fff;
    padding: 10px;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 10px;
}
.blog-boxer {
    display: grid;
    grid-template-columns: 40% 60%;
    transition: all 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 25px 0;
    grid-gap: 10px;
}
.blog-boxer_inner {
    display: grid;
    padding-bottom: 10px;
}
.blog-time-title {
    color: #000;
}
.blog-content {
    color: #000;
    margin-bottom: 15px;
}
.blog-boxer .moreinfo_btn {
    display: flex;
    align-items: center;
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
}
.blog-boxer .moreinfo_btn i {
    background: #fff;
    color: #f0b90b;
    border-radius: 50%;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    padding: 2px;
}
.seperate-line {
    height: 2px;
    width: 100%;
    margin: 0 auto;
    background: #ececec;
    border-radius: 10px;
}
.moreinfo_btn{
    background-color: #fdb813;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.blog_details_txt{
    color: #000;
}
.blog_details_title{
    color: #f0b90b;
    font-size: 18px;
}
.blog-title-box i.fab_custom{
    font-size: 18px;
    color: #ffffff;
    margin-left: 0;
    margin-right: 16px;
    border: 1px solid #f1b90a;
    padding: 0;
    width: 0;
    height: 0;
    text-align: center;
    border-radius: 0;
}
.blog_back{
    align-self: center;
    margin-left: auto;
}
/*blogEND*/

.srl_menu {
    margin-top: 129px;
    height: 100%;
    z-index: 100000000;
}
.casino_grid{
    display: flex;
    margin-top: 10px;
}
.carousel-caption {
    position: relative;
    left: 0;
    top: 0;
}
.casino-indicators {
    bottom: 9px;
    right: -88%;
}
.casino-indicators li {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-width: 0;
    border: 1px solid #b4b2b2;
    margin: 0 5px 0 0;
    border-radius: 50%;
}
.casino-indicators .active {
    width: 10px;
    height: 10px;
    background-color: #013b7a;
    border-width: 0;
    border: 1px solid #013b7a;
    margin: 0 5px 0 0;
}
.bg_slide{
    background-color: #F2F2F2;
    color: #000;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 44px;
}

/* SIDEMENU RIGHT */
.side_menu_contant,
.side_menu_contant_on {
    position: fixed;
    right: 0;
}

.icons_side_menu_line:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_line {
    width: 33px;
    height: 31px;
    background-position: -825px -41px;
}

.icons_side_menu_livechat {
    width: 30px;
    height: 30px;
    background-position: -1301px -2px;
}

.icons_side_menu_livechat:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_livechat {
    width: 30px;
    height: 30px;
    background-position: -1277px -36px;
}

.icons_side_menu_mobile {
    width: 23px;
    height: 36px;
    background-position: -1078px -2px;
}

.icons_side_menu_mobile:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_mobile {
    width: 23px;
    height: 36px;
    background-position: -1053px -2px;
}

.icons_side_menu_pc {
    width: 28px;
    height: 26px;
    background-position: -441px -46px;
}

.icons_side_menu_pc:hover,
.positionFixed .side_menu_left .side_menu_download_on>span:hover .icons_side_menu_pc,
.positionFixed .side_menu_left .side_menu_DNSdownload_on>span:hover .icons_side_menu_pc {
    width: 28px;
    height: 26px;
    background-position: -411px -46px;
}

.icons_side_menu_watsapp {
    width: 29px;
    height: 29px;
    background-position: -1437px -34px;
}

.icons_side_menu_watsapp:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_watsapp {
    width: 29px;
    height: 29px;
    background-position: -794px -43px;
}

.icons_side_menu_wechat {
    width: 32px;
    height: 28px;
    background-position: -1628px -2px;
}

.icons_side_menu_wechat:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_wechat {
    width: 32px;
    height: 28px;
    background-position: -1605px -32px;
}

.icons_side_menu_skype {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/skype_of.png);
}

.icons_side_menu_skype:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_skype {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/skype_ov.png);
}

.icons_side_menu_yahoo {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/yahoo_of.png);
}

.icons_side_menu_yahoo:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_yahoo {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/yahoo_ov.png);
}

.icons_side_menu_bbm {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/bbm_of.png);
}

.icons_side_menu_bbm:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_bbm {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/bbm_ov.png);
}

.icons_side_menu_telegram {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/telegram_of.png);
}

.icons_side_menu_telegram:hover,
.positionFixed .side_menu_right .side_menu_contant_on>span:hover .icons_side_menu_telegram {
    width: 42px;
    height: 41px;
    background-image: url(../images/icon/telegram_ov.png);
}

.side_menu_contant,
.side_menu_contant_on {
    transition: all .5s;
}

.side_menu_contant.off,
.side_menu_contant_on.off {
    transform: translateX(52px);
}

.positionFixed .side_menu_right {
    right: 0;
    top: 128px;
    bottom: 0;
    z-index: 2500;
}

.positionFixed .side_menu_right .side_menu_contant .icons_side_menu_contant {
    cursor: pointer;
}

.positionFixed .side_menu_right .side_menu_contant_on {
    height: 100%;
    width: 52px;
    background: #f7f7f7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.positionFixed .side_menu_right .side_menu_contant_on>span {
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.positionFixed .side_menu_right .side_menu_contant_on>span .item_hover {
    visibility: hidden;
    opacity: 0;
}

.positionFixed .side_menu_right .side_menu_contant_on>span .item_hover_img {
    visibility: hidden;
    opacity: 0;
}

.positionFixed .side_menu_right .side_menu_contant_on>span:hover .item_hover {
    visibility: visible;
    opacity: 1;
}

.positionFixed .side_menu_right .side_menu_contant_on>span:hover .item_hover_img {
    visibility: visible;
    opacity: 1;
}

.positionFixed .side_menu_right .side_menu_contant_on .item_hover {
    font-size: 12px;
    position: absolute;
    padding: 0 15px;
    right: 47px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: white;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 44px;
    transition: opacity 1s;
}

.positionFixed .side_menu_right .side_menu_contant_on .item_hover>p {
    word-break: keep-all;
    white-space: nowrap;
}

.positionFixed .side_menu_right .side_menu_contant_on .item_hover_img {
    display: block;
    position: absolute;
    right: 47px;
    top: -20px;
    transition: opacity 1s;
}

.positionFixed .side_menu_right .side_menu_contant_on>span>span {
    cursor: pointer;
    width: 100%;
    height: 56px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.positionFixed .side_menu_right .side_menu_contant_on>span>span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAABCAYAAAAb4BS0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFRkVDNDQ0QkUyNzcxMUU4OThBNTlGNTNCOUIxQkQ1MyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFRkVDNDQ0Q0UyNzcxMUU4OThBNTlGNTNCOUIxQkQ1MyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkVGRUM0NDQ5RTI3NzExRTg5OEE1OUY1M0I5QjFCRDUzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkVGRUM0NDRBRTI3NzExRTg5OEE1OUY1M0I5QjFCRDUzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+2JK2kwAAABVJREFUeNpinD9/PgMQ/AdiRoAAAwAZlQLfIqFqNAAAAABJRU5ErkJggg==) repeat;
}

.positionFixed .side_menu_right .side_menu_contant_on>span:nth-last-child(1)>span::after {
    content: '';
    display: none;
}

.positionFixed .pop_up_left {
    background: #f9f9f9;
    width: 200px;
    height: 272px;
    left: 0;
    top: 360px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    border-left: none;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* social media */
.customer-service-button i {
    width: 40px;
    height: 38px;
    display: block;
    margin: 0 auto;
    background: url(../images/icon-customer.png) no-repeat;
    margin-bottom: 5px
}

.icon-skype {
    background-position: 0 0 !important
}

.icon-snapchat {
    background-position: 0 -38px !important
}

.icon-line {
    background-position: 0 -76px !important
}

.icon-wechat {
    background-position: 0 -114px !important
}

.icon-nate {
    background-position: 0 -152px !important
}

.icon-whatsapp {
    background-position: 0 -190px !important
}

.icon-whatsapp2 {
    background-position: 0 -190px !important
}

.icon-qq {
    background-position: 0 -228px !important
}

.icon-facebook {
    background-position: 0 -266px !important
}

.icon-twitter {
    background-position: 0 -304px !important
}

.icon-instagram {
    background-position: 0 -342px !important
}

.icon-hotline {
    background-position: 0 -380px !important
}

.icon-email {
    background-position: 0 -418px !important
}

.icon-googleplus {
    background-position: 0 -456px !important
}

.icon-forum {
    background-position: 0 -572px !important
}

.icon-blog {
    background-position: 0 -496px !important
}

.icon-telegram {
    background-position: 0 -688px !important
}

.icon-bbm {
    background-position: 0 -726px !important
}

.icon-pinterest {
    background-position: 0 -763px !important
}

.icon-linkedin {
    background-position: 0 -797px !important
}

.icon-youtube {
    background-position: 0 -835px !important
}


/** 14/7/2021 - Update **/
a.dl-box img {
    max-height: 30px;
}
.proider-title img {
    max-height: 45px;
}
.languageToggle .dropdown-menu {
    padding-left: 5px;
    padding-right: 5px;
}
.languageToggle .dropdown-menu a {
    display: block;
    padding: 2px;
}
.filter-menu-bar {
    display: flex;
    justify-content: center;
}

/** VIP Updated 26/7/2021 **/
.vip-slide {
    padding: 30px 0;
    background: url("../images/vip/vip-bg.jpg")no-repeat bottom center;
    background-size: 100%;
    padding-bottom: 30px;
}
.vip-box {
    background: url("../images/vip/card/crd-bg.jpg")no-repeat top center;
    background-size: cover;
    max-width: 500px;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 1px 2px 5px rgb(0,0,0,0.4);
    padding: 15px;
    color: #fff;
}
.viptop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins';
    font-style: italic;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 60%);
    text-transform: uppercase;
    font-weight: 700;
    max-width: 95%;
    margin: 0 auto 35px;
}
.vip-bagde img {
    max-height: 95px;
}
.vip-big {
    font-size: 60px;
}
span.vpclas {
    font-size: 36px;
    font-weight: 600;
}
.vipdetail {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1px;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 35%);
    font-family: 'Poppins';
    text-transform: uppercase;
    font-size: 14px;
    align-items: flex-end;
}
.vipth {
    font-size: 25px;
}
.vipth.lifetime {
    font-size: 20px;
}
.vipth.invite {
    font-size: 17px;
}
.smtext {
    font-size: 14px;
}
.vip-info-wrap {
    max-width: 700px;
    margin: 15px auto;
    border: 1px solid #97cbf6;
    color: #666;
    box-shadow: 0 0 4px rgb(90 196 255 / 100%);
    padding: 15px;
    border-radius: 12px;
}
.viptitle-1 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding: 5px;
}
.bnf-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px 5px;
    text-align: center;
    padding: 15px 0;
}
.bnfbox {
    font-size: 22px;
    color: #0e7fd5;
    font-weight: 700;
}
.sm-vp {
    color: #000;
    font-size: 15px;
}
.priv-box {
    display: flex;
    align-items: center;
}
.icon-privil {
    color: #0e7fd5;
    font-size: 38px;
    width: 70px;
}
.priv-box .bnfbox {
    text-align: left;
}
.terms-vip {
    color: #000;
    background: rgb(210,239,255,0.5);
    border: 1px solid #97cbf6;
    box-shadow: 0 0 15px rgb(90 196 255 / 70%);
    max-width: 700px;
    margin: auto;
    padding: 25px;
    border-radius: 12px;
}
.vip-play {
    display: inline-block;
    background: #fdb715;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 23px;
    border-radius: 2px;
}
.vip-play:hover {
    color: #fff;
}
.vip-slider-container {
    height: 800px;
}
.review-content {
    display: none;
}
.items.main-pos .review-content {
    display: block;
}

/** Register Page 26/7/2021 **/
.step-tab {
    position: relative;
    text-align: center;
    max-width: 240px;
    margin: 0px auto 20px;
    display: flex;
    justify-content: space-between;
}
span.step-round {
    position: relative;
    z-index: 2;
    background: #E1E1E1;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
span.step-round a {
    color: #fff;
    display: block;
    width: 100%;
}
span.step-round.active {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
}
.step-line {
    position: absolute;
    top: 49%;
    width: 100%;
    height: 1px;
    background: #c5c5c5;
}

.regfield select {
    font-size: 13px;
    padding: 3px 10px;
    border: 1px solid #d6d6d6;
    height: 34px;
}
select.phone-code {
    width: 35%;
}
input.phone-input {
    width: 63%;
}
.rgfeild.dob {
    display: grid;
    grid-template-columns: 30% 38% 30%;
    grid-gap: 3px;
}
select.dob-input {
    padding: 4px;
}
.congratz-wrap {
    text-align: center;
}
.congrat {
    font-size: 18px;
    font-weight: 700;
    padding: 10px;
}

/** CSS updatd 2/8/2021 **/
button.copy-btn {
    color: #0166d2;
    border: none;
    background: none;
    font-size: 18px;
    vertical-align: middle;
}
.affiliate-sec {
    text-align: center;
}
.affwrap {
    position: relative;
}
.join-now {
    font-family: 'Poppins', sans-serif;
    background: -webkit-linear-gradient(#00a2e0, #0062c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.8vw;
    border: 0.3vw solid #e7a919;
    border-radius: 40px;
    display: inline-block;
    padding: 2px 30px;
    transition: ease 0.3s;
}
.join-now:hover {
    transform: scale(1.03);
    transition: ease 0.3s;
}
.pg1 {
    position: absolute;
    z-index: 2;
    left: 7%;
    bottom: 27%;
}
.pg2 {
    position: absolute;
    z-index: 2;
    left: 0%;
    right: 0;
    bottom: 4%;
}
.pg3 {
    position: absolute;
    z-index: 2;
    left: 0%;
    right: 0;
    bottom: 4%;
}
.pg4 {
    position: absolute;
    z-index: 2;
    left: 0%;
    right: 0;
    bottom: 7%;
}
.pg5 {
    position: absolute;
    z-index: 2;
    left: 0%;
    right: 0;
    bottom: 7%;
}

/** Update 12/8/2021 **/
.annouce-in {
    background-color: #252426;
}
.icon {
    color: #fff;
}
.runningtext {
    color: #fff;
}
.pmbox {
    padding: 10px 30px;
    font-size: 16px;
}
.pm-boxer_inner h4 {
    color: #9426eb;
    font-weight: bold;
    font-size: 20px;
}
.modal-content.promo {
    overflow: hidden;
}
.pm-title-wrapper {
    font-size: 20px;
    font-weight: 600;
    background: #009fde;
    color: #fff;
    margin: -20px -20px 5px;
    padding: 10px 15px 8px;
}
button.close-promo {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #fff;
}

/** Arcade & Leaderboard page - Update 16/8/2021 **/
.arcade-sec {
    background: #f2f7fd;
    padding: 30px 0;
}
.arcade-ticket {
    max-width: 600px;
    margin: auto;
    border-radius: 5px;
    text-align: center;
    background: #ffd627;
    color: #000;
    font-size: 30px;
    font-weight: 800;
    padding: 10px 15px;
}
.arcade-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 600px;
    margin: 30px auto;
    grid-gap: 15px;
}
.arcade-box {
    max-width: 230px;
    margin: auto;
    text-align: center;
}
.title-arcade {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0;
    color: #000;
}
a.tnc-arcade-btn {
    display: inline-block;
    background: #ffd627;
    color: #000;
    font-size: 24px;
    font-weight: 800;
    border-radius: 5px;
    padding: 10px 30px;
}
a.tnc-arcade-btn:hover {
    background: #f1c611;
}

.leaderboard-event-sec {
    background: url("../images/leaderboard/event-bg.jpg")no-repeat top center;
    background-size: cover;
    height: 1000px;
}
.lb-option-wrap {
    margin-top: 40px;
    margin-bottom: 20px;
}
.lb-option-wrap a {
    border: 2px solid #fcb714;
    display: inline-block;
    padding: 3px 15px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}
.lb-option-wrap a.active, .lb-option-wrap a:hover {
    background: #fcb714;
}
.lb-wrapper {
    max-width: 400px;
    font-family: 'Nunito Sans';
    font-weight: 600;
    padding-bottom: 10px;
}
.ranking-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 900;
    font-family: 'Nunito Sans';
    line-height: 1;
    padding: 15px 0;
}
span.gradient-title {
    background: -webkit-linear-gradient(#0d2fdd, #040c46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.event-table-reward {
    background: url(../images/leaderboard/table-frame.png)no-repeat top center;
    background-size: 100%;
    width: 712px;
    height: 393px;
    position: relative;
    left: -80px;
}
.reward-rank-wrap {
    position: absolute;
    width: 100%;
    overflow: auto;
    color: #fff;
    text-align: center;
    max-width: 532px;
    left: 92px;
    top: 44px;
}
.reward-rank-wrap::after {
    content: '' ;
    background: url("../images/leaderboard/line.png")no-repeat center;
    background-size: 100% 100%;
    height: 280px;
    width: 1px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 10px;
}
table.reward-rank tr:first-child {
    background: rgba(0,0,0,0.8)
}
table.reward-rank tr:nth-child(2) {
    background: rgba(164,0,2,0.8);
}
table.reward-rank tr:nth-child(3) {
    background: rgba(0,18,100,.8);
}
table.reward-rank tr:nth-child(4) {
    background: rgba(115,0,103,0.8);
}
table.reward-rank tr:nth-child(5) {
    background: rgba(51,51,51,0.8);
}
table.reward-rank tr:nth-child(6) {
    background: rgba(85,85,85,0.8);
}
table.reward-rank tr td {
    padding: 12px 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Nunito Sans';
    font-size: 16px;
}
.token-r {
    margin: 0 4px;
}
.token-r img {
    max-height: 26px;
}
.please-text {
    color: #ffd58b;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 75%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
}
.btm-lead {
    text-align: center;
    margin-left: -137px;
    margin-top: 25px;
}
a.playnow-leader {
    background: url(../images/leaderboard/btn-ply.png)no-repeat center;
    background-size: 100%;
    width: 255px;
    height: 86px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    -webkit-text-fill-color: #ffb713;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #6f260c;
    font-size: 28px;
    font-weight: 900;
    font-family: 'Nunito Sans';
    text-transform: uppercase;
}
a.playnow-leader:hover {
    filter: brightness(1.2);
}
.remain-token {
    font-weight: 700;
}
.leaderboard-sports-sec {
    background: url("../images/leaderboard/sp-bg.jpg")no-repeat top center;
    background-size: cover;
    height: 810px;
}
.turnover-record {
    position: absolute;
    padding: 7px 13px;
    border: 1px solid #0d2dd5;
    font-weight: 600;
    left: -258px;
    top: 100px;
    font-family: 'Nunito Sans';
}
.record-amt {
    color: #0d2dd5;
    font-weight: 700;
    font-size: 30px;
}
.common-rank-wrap {
    max-width: 550px;
}
span.dailytext {
    background: #222222;
    height: 100%;
    padding: 7px 20px;
    float: right;
    margin: -5px -5px;
}
.reward-rank-common tr td {
    color: #fff;
    padding: 5px;
    text-align: center;
}
.reward-rank-common tr td:last-child {
    background: none!important;
}
.reward-rank-common tr:nth-child(2) td {
    background: #111111;
}
.reward-rank-common tr:nth-child(3) td {
    background: #a40002;
}
.reward-rank-common tr:nth-child(4) td {
    background: #001264;
}
.reward-rank-common tr:nth-child(5) td {
    background: #730067;
}
.reward-rank-common tr:nth-child(n+6):nth-child(-n+9) td {
    background: #333333;
}
.reward-rank-common tr:nth-child(n+10):nth-child(-n+12) td {
    background: #555555;
}
.update-box {
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    margin-left: -226px;
}
.leaderboard-casino-sec {
    background: url("../images/leaderboard/lc-bg.jpg")no-repeat top center;
    background-size: cover;
    height: 810px;
}
.leaderboard-slots-sec {
    background: url("../images/leaderboard/slt-bg.jpg")no-repeat top center;
    background-size: cover;
    height: 810px;
}
.leaderboard-others-sec {
    background: url("../images/leaderboard/othr-bg.jpg")no-repeat top center;
    background-size: cover;
    height: 810px;
}

/** Update 17/8/2021 **/
.dropmenu {
    z-index: 9999;
}
.log-group {
    position: relative;
}
span.unread-dot {
    background: #f00;
    color: #fff;
    font-size: 7px;
    width: 11px;
    height: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: absolute;
    right: -6px;
    top: -3px;
}

/** Update 1/9/2021 **/
.refer-wrap {
    display: flex;
    align-items: flex-end;
    margin-top: -145px;
}
.refer-qrcode-wrapper {
    background: #fff;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #97cbf6;
    color: #666;
    box-shadow: 0 0 6px rgb(90 196 255);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 35px;
}
.share-wrap {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 11px;
    margin-top: -40px;
    position: relative;
}
.qrcode-refer-img {
    max-width: 370px;
    margin: 20px auto 10px;
}
.qrcode-refer-img img {
    border: 1px solid #97cbf6;
    border-radius: 10px;
    padding: 5px;
}
.referrer-link {
    background: linear-gradient(90deg, rgb(139 33 238) 0%, rgba(255,255,255,1) 100%);
    border: 1px solid #9ee5ff;
    position: relative;
    border-radius: 30px;
    padding: 3px 15px;
    font-weight: 600;
    color: #fff;
    height: 33px;
    display: flex;
    align-items: center;
    max-width: 400px;
}
button.copy-refer {
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 3px 10px;
    position: absolute;
    right: 5px;
    z-index: 2;
}
.form-group.rebate-group {
    display: flex;
    align-items: center;
}
.form-group.rebate-group label {
    padding: 0 4px;
}

/** Lucky Spin **/
.luckyspin-sec {
    background: url("../images/luckyspin/ld-bg.jpg")no-repeat top center;
    background-size: auto;
    min-height: 700px;
    padding-bottom: 15px;
}


/** Updated - 1/10/2021 **/
.terms-vip ol {
    padding-left: 17px;
}
.terms-table {
    overflow: auto;
    border: 1px solid #97cbf6;
    text-align: center;
    border-radius: 8px;
}
table.vipterms-table tr th {
    background: #0e7fd5;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #97cbf6;
    border-top: none;
    padding: 5px;
}
table.vipterms-table tr td {
    background: #fff;
    border: 1px solid #97cbf6;
    padding: 5px;
}
table.vipterms-table tr td:first-child, table.vipterms-table tr th:first-child {
    border-left: none;
}
table.vipterms-table tr td:last-child, table.vipterms-table tr th:last-child {
    border-right: none;
}
table.vipterms-table tr:last-child td {
    border-bottom: none;
}

.wheel-sec {
    background: #f2f7fd;
    padding: 30px 0;
    text-align: center;
}
.spin-left {
    background: #262626;

    border: 2px solid #00a1dc;
    border-radius: 5px;
    color: #fff;
    max-width: 400px;
    margin: auto;
    text-transform: uppercase;
    font-size: 24px;
    padding: 9px 10px;
}
span.num-box {
    color: #000;
    background: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: text-bottom;
    line-height: 1.5;
    padding: 4px;
}
.fw-title {
    font-size: 20px;
    color: #0062c9;
}
.about-us-content{
    padding: 15px 0;
}
a.dm-item img {
    width: 200px;
}



section.header-top {
    background: #fff;
}

.t-body {
    /* background: linear-gradient(to bottom, rgba(19,62,156,1) 0%, rgba(139,145,255,1) 44%, rgba(200,75,249,1) 72%, rgba(160,34,160,1) 100%); */
}
.nav-tabs.sports .nav-link.active img {
    filter: brightness(0) invert(1);
}

.gamerow-wrap img {
    width: 100% !important;
}

.gamerow-wrap .gm_name {
    margin: 0px;
}
ul.nav.provider-menu li.active img, ul.nav.provider-menu li:hover img {
    filter: brightness(0) invert(1);
}




/** 4D **/
.toto-sec {
	background: #0a0b06 url("../images/4d/toto_bg.jpg")no-repeat top center;
	padding: 45px 0;
	overflow: hidden;
}
.toto-top {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
	max-width: 500px;
    margin: auto;
	margin-top: 290px;
}
.toto-btn {
    position: relative;
    text-align: center;
    margin: auto;
}
.toto-top a {
	display: block;
	width: 245px;
	height: 250px;
	z-index: 1;
	transition: all 0.3s;
}
.toto-top img {
	position: absolute;
	top:0;
	left:0;
	overflow: hidden;
	width: 245px;
	height: 250px;
}
.toto-top a:hover {
	filter: brightness(1.15) drop-shadow(0 0 3px #fff);
	transform: scale(0.97);
	transition: all 0.3s;
}

.toto-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
	margin-top: 30px;
}
.toto-container-2 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    max-width: 1065px;
    margin: auto;
}
.lotto-box {
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.lott-title-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background: #9C9C9C;
    width: 350px;
}
.lott-title-box {
    line-height: 1.2;
    padding: 3px 10px;
}
.lott-type {
    font-size: 16px;
	font-weight: 600;
	display: block;
}
.cal-date {
    font-size: 12px;
}
.lott-logo {
    text-align: center;
}
.top-winner {
	text-align: center;
    font-size: 21px;
    margin: 7px 0;
}
tr.lot-place-num td {
    padding: 2px 0;
}
table.special {
    text-align: center;
    font-size: 20px;
}
.special tr td {
	border: 1px solid #9B9B9B;
}
tr.special-title {
    font-size: 17px;
    font-weight: 700;
	background: #9B9B9B;
	text-transform: uppercase;
	letter-spacing: 1px;
}
tr.special-title td { 
	padding: 1px;
}

.lott-title-grid.sandakan {
	background: #fdb913;
}
.sandakan .special-title {
	background: #fdb913;
	color: #000;
}
.special.sandakan tr td {
	border-color: #fdb913;
}

.lott-title-grid.magnum {
	background: #a84001;
}
.magnum .special-title {
	background: #a84001;
	color: #fff;
}
.special.magnum  tr td {
	border-color: #a84001;
}

.lott-title-grid.pmp {
	background: #231f54;
}
.pmp .special-title {
	background: #231f54;
	color: #fff;
}
.special.pmp  tr td {
	border-color: #231f54;
}

.lott-title-grid.toto {
	background: #ec1c24;
}
.toto .special-title {
	background: #ec1c24;
	color: #fff;
}
.special.toto tr td {
	border-color: #ec1c24;
}

.lott-title-grid.singapore {
	background: #0339fe;
}
.singapore .special-title {
	background: #0339fe;
	color: #fff;
}
.special.singapore tr td {
	border-color: #0339fe;
}

.lott-title-grid.sabah {
	background: #040402;
}
.sabah .special-title {
	background: #040402;
	color: #fff;
}
.special.sabah tr td {
	border-color: #040402;
}

.lott-title-grid.srwk {
	background: #ff0f01;
}
.srwk .special-title {
	background: #ff0f01;
	color: #fff;
}
.special.srwk tr td {
	border-color: #ff0f01;
}

/** Mobile **/
.mobile-sec {
	background: #000 url("../images/mobile/mobiledl-bg.jpg")no-repeat top center;
	min-height: 1252px;
	padding: 60px 0;
}
.mix {
    display: none;
}
.filter-menu-bar {
    margin: 15px 0;
    /* height: 44px; */
}
.mbox {
    background: url(../images/mobile/mobile-btn.png)no-repeat center;
    background-size: 100% 100%;
    display: inline-block;
	width: 220px;
    height: 54px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
    font-size: 25px;
    text-align: center;
    padding: 7px;
	cursor: pointer;
}
.mbox:hover, .mbox.active {
	background: url("../images/mobile/mobile-btn-active.png")no-repeat center;
	background-size: 100% 100%;
	color: #fff;
}
.boxes {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.mobile-dl {
    display: inline-block;
}
.mobile-dl:hover {
	filter: brightness(1.15) drop-shadow(0 0 4px #fff);
} 
.lotto-wrap {
    /* position: absolute; */
    /* bottom: 45%; */
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.btn-bet {
    background: linear-gradient(to bottom, rgba(105,20,209,1) 0%, rgba(200,32,144,1) 100%);
    color: #fff;
}

.lotto-wrap button {
    width: 220px;
    height: 49px;
    font-size: 16px;
    border-radius: 40px;
    color: #fff;
    border: none;
}

button.btn-pay {
    background: linear-gradient(to bottom, rgba(244,88,35,1) 0%, rgba(232,72,27,1) 52%, rgba(212,41,14,1) 100%);
}
table.payoutTable {
	text-align: center;
}
table.payoutTable th, table.payoutTable td {
	padding: 4px;
}
table.payoutTable th {
    text-align: inherit;
    background: #3c93c5;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #7617f3;
    background: linear-gradient(to bottom, rgba(154,41,234,1) 0%, rgba(89,8,251,1) 100%);
}
table.payoutTable td {
	border: 1px solid #7617f3;
	font-size: 15px;
	color: #fff;
	background: #46127f;
} 
table.payoutTable td img {
	margin-left: 10px;
}
.xtr {
    text-align: center;
    margin-bottom: 17px;
}
.contact_dotted img {
    filter: brightness(0) invert(1);
}
.lotto-out {
    position: absolute;
    bottom: 40%;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.nav-item:last-child .nav-link.active img {
    filter: drop-shadow(2px 4px 6px black);
}

.vip-in-table{padding:20px;margin-bottom:20px;}
.vip-all tr td{text-align:center;padding:6px;background: none;border: none;}
.vip-all tr td h3{text-align:left;color:#ffffff;font-size: 14px;text-transform: uppercase;font-weight: bold;}
.vip-all tr:nth-child(odd){text-align:left;/* background: #2f81d7; */color: #ffffff;font-weight:bold;width: 24%;}
table.vip-all tr:first-child td{background:none;}
tr.titleRow td{/* background: #3d80d9 !important; */color: #ffd423 !important;}
tr.titleRow p{margin:0px;}
.vip-all tr:first-child td{border:none;}
table.vip-all tr td:nth-child(2) .vip-cell{text-transform:uppercase;font-weight:bold;}
.vip-cell{text-transform:uppercase;font-weight:bold;}
table.vip-all tr td:nth-child(3) .vip-cell{text-transform:uppercase;font-weight:bold;}
table.vip-all tr td:nth-child(4) .vip-cell{text-transform:uppercase;font-weight:bold;}
table.vip-all tr td:nth-child(5) .vip-cell{color:#ffffff;text-transform:uppercase;font-weight:bold;}
table.vip-all tr td:nth-child(6) .vip-cell{text-transform:uppercase;font-weight:bold;}
table.vip-all tr td{width: 8%;}
.vip-wrap{background:rgb(0 0 0 / 70%);border-radius:10px;margin-top:20px;padding:20px;margin-bottom:20px;}
.vip-tnc{padding:0px 20px;}
.vip-tnc h4{font-size:16px;font-weight:bold;}
.vip-tnc ul{margin-bottom:20px;}
.vip-all tr:nth-child(1) {
    background: none;
    vertical-align: bottom;
    font-size: 14px;
}

table.vip-all tr td:first-child {
    text-align: left;
    padding-left: 60px;
    width: 10%;
}

table.vip-all {
    margin-top: 60px;
    margin-bottom: 60px;
}

.vip-img img {
    height: 112px;
    margin-bottom: 10px;
}

.vip-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}
table.vip-all tr:nth-child(even) td {
    background: #2d82d5;
}

table.vip-all tr:nth-child(1) td {
    background: none;
}
tr.titleRow td {
    padding-top: 30px;
}