@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');

body { font-family: "Lato", sans-serif; line-height:1.3; font-size:15px; margin:0 auto; color:#fff; background: #031b32; }

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 { text-decoration: 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%;
}
button:focus,input:focus, select:focus {
	outline: none;
}

/** Floating Bubble **/
.float-container {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 99;
}
#toggle {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.chat-contact {
	color: #031b33;
	font-size: 40px;
}
.close-contact {
    color: #fff;
    display: none;
    font-size: 20px;
}
#toggle:checked + .menu__toggle > .menu__button .chat-contact {
   display: none;
}
#toggle:checked + .menu__toggle > .menu__button .close-contact {
  display: block;
}

#toggle:checked + .menu__toggle > .menu__button {
  background: #031b33;
--d: 70px;
}

#toggle:checked ~ .menu-round .menu__item:nth-child(1) {
  transition: all 250ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
  transform: translate3d(0, -5em, 0);
}
#toggle:checked ~ .menu-round .menu__item:nth-child(2) {
  transition: all 250ms 100ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
  transform: translate3d(-3.5em, -3.5em, 0);
}
#toggle:checked ~ .menu-round .menu__item:nth-child(3) {
  transition: all 250ms 200ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
  transform: translate3d(-5em, 0, 0);
}	
.menu__button {
    --d: 90px;
    width: var(--d);
    height: var(--d);
    background: #fff210;
    border: 4px solid #fff210;
    border-radius: 50%;
    position: absolute;
    bottom: calc(25px / 2);
    right: calc(25px / 2);
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 100ms ease;
    z-index: 2;
}
.menu__button:hover {
	transform: scale(1.08);
}
.menu-round {
    width: 70px;
    height: 70px;
    position: relative;
    z-index: 1;
    left: -20px;
    top: -30px;
}
.menu__item {
    color: #fff;
    padding: 5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    transition: all 250ms;
}
.menu__item i {
    font-size: 30px;
	color: #fff;
}
.menu__item i.fab.fa-whatsapp {
    font-size: 36px;
}
.menu__item:nth-child(1) {
  background: #00bae9;
}
.menu__item:nth-child(2) {
  background: #26b200;
}
.menu__item:nth-child(3) {
  background: #727272;
}


/** Header **/
.header-top {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
}
.logo {
    max-width: 200px;
}
.nflex-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.login-btn {
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    border: 1px solid #f9d529;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    width: 140px;
    padding: 2px 10px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.login-btn:hover {
	background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
}
.login-btn:before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
	height: 40px;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	z-index:  -1;
	filter: brightness(1.3);
	transition: 0.3s ease-in-out;
}
.login-btn:hover:before {
	-webkit-transform: translateX(0);
		  transform: translateX(0);
}

.register-btn {
    background: linear-gradient(to bottom, rgba(255,251,15,1) 0%, rgba(255,172,6,1) 100%);
    border: 1px solid #fff;
    border-radius: 5px;
    color: #031b32;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    width: 140px;
    padding: 2px 10px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.register-btn:hover {
	background: linear-gradient(to bottom, rgba(255,251,15,1) 0%, rgba(255,172,6,1) 100%);
}
.register-btn:before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(255,251,15,1) 0%, rgba(255,172,6,1) 100%);
	height: 40px;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	z-index:  -1;
	filter: brightness(1.3);
	transition: 0.3s ease-in-out;
}
.register-btn:hover:before {
	-webkit-transform: translateX(0);
		  transform: translateX(0);
}
.header-menu {
    background: #0f4f8c;
    color: #fff;
    padding: 5px 0;
    height: 63px;
    position: relative;
}
.header-menu .logo {
	max-width: 160px;
}
.menu-center {
	display: flex;
	align-items: center;
}
.position-inherit {
	position: inherit;
}
ul.nav.main-nav li {
    margin: -5px 0;
}
ul.nav.main-nav li a.navlink {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 20px 13px;
    height: 100%;
    display: inline-block;
}
ul.nav.main-nav li:hover a.navlink {
	background: #052442;
}
.dropmenu {
	background-color: #fff;
    background-image: url(../images/nav_bg_left.png), url(../images/nav_bg_right.png);
    background-size: auto 100%;
    background-position: left, right;
    background-repeat: no-repeat;
    box-shadow: inset 0px 7px 5px -4px rgba(0, 0, 0, 0.5), 0px 7px 5px -4px rgba(0, 0, 0, 0.5);
    font-family: "Lato", sans-serif;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    opacity: 0;
	padding: 15px 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;
}
.dm-item {
	display: inline-block;
	position: relative;
	margin: 0 5px;
}
.prv-name {
	background: #0d3a64;
	color: #ffcd00;
	text-align: center;
	padding: 5px;
	font-size: 15px;
	font-weight: 700;
}
.play-btn {
    display: block;
    color: #ffcd00;
    border: 1px solid #ffcd00;
    padding: 4px;
    max-width: 105px;
    margin: auto;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    top: 102px;
    left: 0;
    right: 0;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-20px);
}
.play-btn:hover {
	background: #ffcd00;
	color: #0d3a64;
	box-shadow: 0 2px 5px rgb(0,0,0,0.7);
}
.dm-item:hover .prv-name {
	color: #0d3a64;
	background: #ffcd00;
}
.dm-item:hover img {
	filter: brightness(0.5);
}
.dm-item:hover .play-btn {
	transition-delay: 0.3s;
	transition: 0.3s;
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.player-center {
	display: flex;
	align-items: center;
	align-content: flex-end;
}
.player-wrapper {
    background: #052442;
    color: #fff;
    border: 1px solid #051c33;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 160px auto;
    padding: 5px 10px;
    align-items: center;
    height: 50px;
    margin: 0 0 0 auto;
}
.welcome-player {
    font-size: 12px;
    margin-bottom: 2px;
}
.yellow-text {
	color: #ffe400;
}
.balance-box {
    font-size: 15px;
}
a.refresh-icon {
    color: #ffe400;
	margin: 0 3px;
	font-size: 11px;
}
a.wbox {
    display: inline-block;
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    height: 33px;
    width: 33px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 5px;
    border: 1px solid #0f4f8c;
    border-radius: 3px;
    box-shadow: inset 0px -2px 5px 0px rgba(0,0,0,0.75);
    filter: drop-shadow(0px 2px 1px rgb(0,0,0,0.8));
    margin: 0 2px;
}
a.wbox:hover {
	background: linear-gradient(to top, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
	color: #ffcd00;
}
a.wbox:hover i {
	filter: drop-shadow(0 0 1px #ffcd00);
}





/** Homepage **/
.world-sec {
    background: #031b32 url(../images/index_02.jpg)no-repeat bottom center;
    background-size: 100%;
    padding: 20px 0 10%;
    text-align: center;
}
.product-wrapper {
    display: grid;
    grid-template-columns: auto auto auto;
    max-width: 970px;
    margin: auto;
}
.smbox {
    position: relative;
    background: #072847;
    text-align: center;
    max-width: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}
.smbox.big {
    max-width: 330px;
}
.boxname {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 0;
}
.hoverbox {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.7);
    padding-top: 50%;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s
}
.btn-box {
	transform: scale(0.5);
	transition: 0.3s;
}
.smbox:hover .hoverbox {
	opacity: 1;
	visibility: visible;
	transition: 0.3s
}
.smbox:hover .hoverbox .btn-box { 
	transform: scale(1);
	transition: 0.3s;
}
button.login-btn.smb {
    display: block;
    margin: auto;
    margin-bottom: 15px;
}
.world-content {
    margin: 40px auto 15px;
    max-width: 700px;
}
.world-title {
    font-size: 30px;
    text-transform: uppercase;
}
.usp-sec {
    position: relative;
    background: url(../images/usp-bg.png)no-repeat center;
    background-size: cover;
    min-height: 90vh;
    padding: 90px 0;
    margin-top: -9%;
    display: flex;
    align-items: center;
}
.uspbox {
    display: grid;
    grid-template-columns: 120px auto;
    color: #000;
    margin: 15px 0;
}
.usp-text h4 {
    font-size: 18px;
    margin: 0;
}
.usp-text {
    align-self: center;
}
.footer-sec {
    padding: 10px 0;
}
.lisence-wrapper {
    text-align: center;
    padding: 20px 0;
}
.img-wrap {
    display: inline-block;
    width: 100px;
    box-sizing: border-box;
    padding: 5px;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    margin: 5px;
}
.img-wrap img {
    width: 80%;
}
.tnc {
	padding: 20px 18px;
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
	display: grid;
	grid-template-columns: 60px auto;
	font-size: 13px;
}
.tnc .icon img {
    max-width: 50px;
}
.tnc .tnc-content h4 {
    font-size: 16px;
    color: #ff583e;
	margin-bottom: 4px;
}

.menu-footer {
    text-align: center;
}
.menu-footer a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 15px;
}
.menu-footer a:hover {
	color: #f9d529;
}
.seo-text h2 {
	font-size: 22px;
	text-align: center;
	margin-bottom: 20px;
}
.seo-text {
	font-size:12px; 
}
.seo-text a {
	color: #f9d529;
}
.seo-text a:hover {
	color: #A0A0A0;
}
#more {
    display: none;
}
button.ft-readmore {
    background: transparent;
    border: none;
    color: #AAAAAA;
    padding: 0;
}

/** Promotion updated - 11/6/2021 **/
.promo-sec {
	background: #031627 url("../images/promo-bg.jpg")no-repeat top center;
	background-size: auto;
	padding: 30px 0;
}
.promo-card {
	margin-bottom: 15px;
}
.promo-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    color: #87c4ff;
    border: 1px solid #0f4f8c;
	cursor: pointer;
}
.pm-desc {
    padding: 10px 20px;
	position: relative;
}
.main-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pm-smcaption {
    max-height: 80px;
    font-size: 13px;
    overflow: hidden;
    line-height: 1.2;
}
.pm-more-btm {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
button.register-btn.promo {
    font-size: 15px;
}
.promo-content {
    background: #000d1a;
    color: #87c4ff;
    padding: 20px 20px;
    font-size: 14px;
}
.promo-content ul, .promo-content ol {
	padding-left: 18px;
}
.promo-content ul li, .promo-content ol li {
	padding-bottom: 5px;	
}

/** Update 13/8/2021 **/
a.wbox.incoming::after {
	content: '';
	background: #FF0000;
	height: 5px;
	width: 5px;
	border-radius: 100%;
	position: absolute;
}
.inbox-sec {
	background: url("../images/inbox-bg.jpg")no-repeat top center;
	background-size: cover;
	padding: 30px 0;
	min-height: 95vh;
}
.msg-title {
    text-align: center;
    padding: 15px 15px 30px;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 9px rgb(0 0 0 / 80%);
}
.inbox-container {
    background: rgba(0,0,0,0.5);
    max-width: 1300px;
    margin: auto;
    width: 100%;
	padding: 45px;
}
.inbox-wrapper {
    margin-bottom: 35px;
}
.mailbox {
    display: grid;
    grid-template-columns: 7% 76% 10% 7%;
    align-items: center;
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    border: 1px solid #0f4f8c;
    border-radius: 3px;
    padding: 8px 0px;
	margin-bottom: 12px;
	cursor: pointer;
}
.mail-icon {
    font-size: 22px;
    text-align: center;
    border-right: 1px solid #0f4f8c;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mail-title {
    padding: 0 15px;
}
.mailbox-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 5px;
}
.mail-caption {
    color: #87c4ff;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 820px;
    white-space: nowrap;
}
.mail-date {
    color: #87c4ff;
    font-size: 13px;
    padding: 5px 10px;
}
.mdate {
    padding: 3px 0;
}
.remove-icon {
    font-size: 20px;
    text-align: center;
    border-left: 1px solid #0f4f8c;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.remove-icon a {
	color: #87c4ff;
}
.remove-icon a:hover {
	color: #fff;
}
.mailbox.unread .mail-icon, .mailbox.unread .mailbox-title {
	color: #ffcd00;
}
.modal-dialog.inbox {
    max-width: 650px;
    overflow: auto;
    border-radius: 5px;
	font-size: 14px;
}
.msg-content {
    padding: 20px 25px;
}
.inbox-title {
    color: #08345e;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.daterow {
    color: #015cb6;
    font-size: 13px;
	font-weight: 600;
	margin-bottom: 15px;
}
.daterow .mdate {
	margin-right: 10px;
}
.msgbox {
	line-height: 1.4;
}

.menu__item a {
	position: relative;
}
span.inbox-num {
    background: #FF0000;
    color: #fff;
    font-size: 9px;
    text-align: center;
    height: 13px;
    width: 13px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -7px;
    top: -2px;
}

/** Update 2/9/2021 **/
.logo {
    max-width: none;
}
.header-menu .logo {
    max-width: none;
    padding: 9px 0;
}
ul.nav.main-nav li a.navlink {
    font-size: 14px;
}

/** Update 27/9/2021 **/
.header-menu {
    height: auto;
}
.header-menu .container {
	max-width: 1500px;
}
/** APK download **/
.download-wrapper {
    text-align: center;
}
.download-wrapper a.dm-item {
   margin: 0 15px;
}
.download-wrapper a.dm-item .prv-name {
	text-transform: uppercase;
	padding: 8px 5px;
}
.download-content {
	padding: 15px;
}
.dl-device-wrap {
    text-align: center;
}
.dl-box {
    display: inline-block;
    width: 30%;
    text-align: center;
    margin: auto;
}
.qr-box {
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    color: #fff;
    padding: 10px 10px 15px;
    max-width: 140px;
    margin: auto;
}
.os-name {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 8px;
}
.dl-qr-img img {
	max-width: 110px;
}
.scan-text {
    padding: 5px 0;
}
button.download-btn {
    background: #ffcc00;
    border: none;
    color: #0e3173;
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}
button.download-btn:hover {
	background: #0e3173;
    color: #ffcc00;
}
.access-info {
	overflow: auto;
	text-align: center;
	padding: 15px 0;
}
table.info-table tr th {
	background: #cfd4da;
	color: #000;
	border: 1px solid #cfd4da;
	padding: 5px;
}
table.info-table tr td {
	border: 1px solid #cfd4da;
	padding: 8px 5px;
}
button.password-btn {
    background: #021a32;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
}
button.password-btn:hover {
	background: #062d53;
}
input.info-pw {
    border: none;
    text-align: center;
}

/** Wallet 27/10/22021 **/
.wallet-sec {
	background: url("../images/inbox-bg.jpg")no-repeat top center;
	background-size: cover;
	padding: 30px 0;
}
.wallet-container {
	max-width: 900px;
	margin: 0 auto;
}
.wallet-wrapper {
    background: #fff;
    color: #363636;
}
.wallet-menu-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
a.wallet-option {
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    border: 1px solid #0f4f8c;
    border-radius: 35px;
    color: #fff;
    display: inline-block;
    min-width: 160px;
    margin: 0 10px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 5px;
    filter: drop-shadow(0px 2px 5px rgb(0,0,0,0.6));
}
a.wallet-option.active {
	background: #08294a;
	border: 1px solid #ffe400;
	color: #ffe400;
}

.wallet-nav-menu {
    display: grid;
    grid-template-columns: 50% 50%;
}
.wmnav-btn{
    background: #0f4f8c;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 5px;
    border-top: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}
.wmnav-btn.active, .wmnav-btn:hover {
    background: #08294a;
    border-top: 2px solid #ffe400;
    color: #ffe400;
    transition: 0.3s;
}
.title-label {
    font-size: 13px;
    margin-bottom: 10px;
}
.product-option-wrapper {
    margin-bottom: 10px;
    display: flex;
}
.product-option-wrapper label {
    overflow: hidden;
    background: #fff;
    border: 1px solid #0f4f8c;
    border-radius: 5px;
    margin: 0 3px;
    width: 125px;
    height: 70px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* HIDE RADIO */
.product-option-wrapper label [type=radio] { 
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
/* IMAGE STYLES */
.product-option-wrapper label [type=radio] + .prod-option {
	cursor: pointer;
	padding: 5px;
	height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: grid;
}
/* CHECKED STYLES */
.product-option-wrapper label [type=radio]:checked + .prod-option{
	transition: none;
	background: #0f4f8c;
	color: #fff;
}

/** Update 14/7/2022 **/
.depo-reward-wrapper {
	padding: 15px;
}
.drw-inner {
	background: #f1f1f1;
	padding: 10px;
}
.info-reward {
    display: grid;
    grid-template-columns: auto 120px;
    grid-gap: 10px;
	align-items: center;
}
.depo-info {
    color: #606060;
    font-size: 12px;
    font-weight: 600;
}
button.rw-btn {
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    color: #fff;
    border: 1px solid #0e4e8b;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 14px;
    height: 33px;
    width: 100%;
    max-width: 120px;
    padding: 2px;
}
button.rw-btn i {
	margin-right: 10px;
}
button.rw-btn:hover {
	background: linear-gradient(to top, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
	color: #ffcd00;
}
.claim-reward-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	padding-bottom: 10px; 
}
.rwbox {
	position: relative;
    filter: grayscale(1);
    margin: 0 10px;
	cursor: pointer;
}
.rwbox.active {
	filter: none;
}
button.claim-btn {
    position: relative;
    background: url(../images/reward/btn.png)no-repeat;
    background-size: 100%;
    width: 158px;
    height: 41px;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
	margin-top: -6%;
}
button.claim-btn:hover {
	transform: scale(0.98);
	filter: brightness(1.1);
}
button.claim-btn.claimed::after {
    content: '';
    background: url(../images/reward/tick.png)no-repeat;
    background-size: 100%;
    width: 35px;
    height: 26px;
    position: absolute;
    right: 14px;
    top: 14%;
}
.accum-wrap {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    max-width: 780px;
    margin: auto;
}
.acc-amt {
    font-size: 13px;
    font-weight: 700;
    padding: 2px 0;
}
.accum-box {
	filter: grayscale(1);
}
.accum-box.active {
	filter: none;
}

/** Deposit Daily Reward **/
.daily-reward-wrapper {
	text-align: center;
}
.instru-text {
	font-size: 14px;
	padding: 0 0 10px;
}
button.depo-reward-btn {
    border: none;
    background: none;
    padding: 0;
}
button.depo-reward-btn:hover, button.depo-claim-btn:hover {
	transform: scale(0.98);
	filter: brightness(1.1);
}
.depo-event-wrapper {
    text-align: center;
	padding-bottom: 20px;
}
.depo-box {
    display: inline-block;
    max-width: 125px;
    margin: 5px auto;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
	vertical-align: text-top;
	filter: grayscale(1);
}
.depotext {
    position: relative;
}
.dtext-1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 20%;
}
.dtext-1.gift::after {
    content: '';
    background: url(../images/daily-depo/gift.png)no-repeat;
    background-size: 100%;
    width: 22px;
    height: 21px;
    position: absolute;
    right: 11%;
    top: -3px;
}
.dtext-2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 41%;
}
.dtext-3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 56%;
    font-size: 24px;
}
button.depo-claim-btn {
	background: url("../images/daily-depo/claim-base.png")no-repeat;
	background-size: 100% 100%;
	width: 100%;
	max-width: 88%;
	height: 37px;
	margin: 0 auto;
	color: #fff;
	border: none;
	padding: 2px;
	text-transform: uppercase;
}
.depo-box.redeem .depotext::after {
	content: '';
	background: url("../images/daily-depo/claim-tick.png")no-repeat;
	background-size: 100%;
	width: 100%;
	max-width: 80px;
	height: 66px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 24%;
	filter: drop-shadow(2px 6px 2px rgb(0,0,0,0.7));
	z-index: 2;
}
.depo-box.active {
	filter: none;
}
.mission-text {
	text-align: center;
	padding: 5px 0;
	font-size: 15px;
	line-height: 1.6;
}

/** 30/3/2023 Update **/
.referral-sec {
	background: url("../images/referral/bg_02.jpg")no-repeat top center;
	background-size: cover;
	text-align: center;
	padding: 0 0 30px;
}
.how-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
	padding-bottom: 30px;
}
.line-step {
    position: absolute;
    left: 0;
    right: 0;
    top: 26%;
    z-index: 0;
    max-width: 61%;
    margin: 0 auto;
}
.stepbox {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}
.step-caption {
    font-size: 20px;
    font-weight: 700;
    padding: 0 2%;
}
.member-refer-title {
    padding: 15px 0;
}
.refer-wrapper {
    background: #021a32;
    border-radius: 10px;
    box-shadow: inset 0 2px 0 #183193, 0 0 0px 6px rgb(0,0,0,0.3);
	padding: 15px 30px;
	margin: 0 0 30px;
}
.referral-content {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: auto 200px;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
}
.referbox {
    text-align: left;
}
.refer-text {
    font-size: 17px;
    font-weight: 600;
    padding: 6px 0;
}
.refer-link-wrap {
    display: flex;
	align-items: center;
}
input.refer-input {
	background: #fff;
    height: 40px;
    border-radius: 5px;
    border: none;
    color: #000;
    padding: 0 15px;
}
input.refer-input:disabled {
	background: #fff;
}
.refer-qrcode img {
    max-height: 150px;
}
ul.nav.nav-refer {
    max-width: 800px;
    margin: 0 auto -32px;
    position: relative;
}
ul.nav.nav-refer li.nav-item {
    width: 47%;
    margin: 1%;
}
ul.nav.nav-refer li.nav-item a.nav-link {
    background: url(../images/referral/gold-btn-tab.png)no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 48px;
    color: #000;
    font-weight: 900;
    font-size: 18px;
	padding: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.nav.nav-refer li.nav-item a.nav-link.active {
    filter: drop-shadow(0 0 2px #dec985) drop-shadow(0 0 3px #dec985) brightness(1.08);
}
.tab-content.referral {
    background: linear-gradient(to bottom, rgba(33,55,91,1) 0%, rgba(23,37,60,1) 100%);
    border: 1px solid #f8df37;
    border-radius: 8px;
    min-height: 190px;
    padding: 50px 15px 15px;
}
.refer-member-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.rebate-wrap {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
}
.btext {
    color: #f9e538;
}

/** Updated - 23/7/2023 **/
ul.nav.main-nav li a.navlink {
    padding: 28px 8px;
}
a.dm-item.maintenance {
	pointer-events: none;
}
a.dm-item.maintenance img {
	filter: grayscale(1);
}
a.dm-item.maintenance::after {
	content: '';
	background: url("../images/maintenance.png")no-repeat;
	background-size: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	filter: drop-shadow(2px 2px 3px #000);
	z-index: 2;
}

/** Deposit Mission -deposit page Updated - 23/8/2023 **/
.depo-mission-wrapper {
	padding: 0 0 30px;
}
.mission-wrapper {
    padding: 0 0 10px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.depo-days-box {
	background: url("../images/depo-ms/frame.png")no-repeat;
	background-size: 100% 100%;
	width: 100%;
	max-width: 320px;
	height: 220px;
	text-align: center;
	margin: 0 auto 15px;
	display: inline-block;
	position: relative;
}
.day-box {
    background: #000;
    border: 2px solid #5fb7e5;
    border-radius: 35px;
    max-width: 165px;
    font-size: 20px;
    font-weight: 600;
    padding: 4px 5px;
    margin: 10px auto 5px;
    box-shadow: 0 0 2px #69ccff, 0 0 5px #69ccff, inset 0 0 2px #5fb7e5, inset 0 0 5px #5fb7e5;
}
.dtext-sm {
    font-size: 14px;
}
.dp-amt {
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}
.dvd-line {
    width: 70%;
    margin: 10px auto;
    height: 2px;
    background: #69ccff;
    border-radius: 10px;
    box-shadow: 0 0 4px #69ccff, 0 0 6px #69ccff;
}
.bonus-text {
	line-height: 1;
    font-size: 24px;
}
.bntext {
    font-size: 34px;
    color: #ffed0c;
    font-weight: 700;
    vertical-align: middle;
}
button.claim-dp-btn {
	background: url("../images/depo-ms/claim-btn.png")no-repeat;
	background-size: 100% 100%;
	border: none;
	width: 187px;
	height: 58px;
	margin: 0 auto;
	color: #653301;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 900;
	padding: 4px 8px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10%;
	filter: saturate(0.1) grayscale(0.5);
	pointer-events: none;
}
button.claim-dp-btn:hover {
	transform: scale(0.97);
	filter: brightness(1.07);
}
.depo-days-box.active button.claim-dp-btn {
	filter: none;
	pointer-events: auto;
}
.ms-note {
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
}

/** Updated - 6/3/2024 **/
.sport-predict-float {
    position: fixed;
    bottom: 160px;
    right: 15px;
    z-index: 99;
    max-width: 135px;
}
.sport-predict-float a:hover img {
	transform: scale(0.98);
	filter: brightness(1.07);
}

/** Update - 2/5/2024 **/
.wallet-field.requirement {
    align-items: end;
    grid-template-columns: 180px auto;
}
.wallet-field.requirement label {
	background: #0f4f8b;
    color: #fff;
    text-align: center;
    line-height: 1;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
button.close-float {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.hide {
	display: none;
}
.notice-box {
    background: #f00;
    height: 20px;
    width: 20px;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
#toggle:checked + .menu__toggle > .menu__button .notice-box {
	display: none;
}

/** Update - 25/6/2024 **/
.home-wbet {
	background: url("../images/18cash_wbet_bg.jpg")no-repeat top center;
	background-size: cover;
	padding: 15px 10px 45px;
	text-align: center;
}
.wbet-play-wrapper {
	position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.wbimg {
	animation: zooming 2s ease-in-out infinite;
}
@keyframes zooming {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.98);
    }
}

/** Countdown floating update - 4/7/2025 **/
.float-countdown {
    position: fixed;
    right: 15px;
    z-index: 99;
    bottom: 150px;
}
.offer-cd-wrap {
    position: relative;
    max-width: 150px;
}
#countdown-reward {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1%;
    text-align: center;
    margin: 0 auto;
}
ul.cdtimer {
    list-style-type: none;
    margin: 0;
    display: flex;
    align-items: center;
	justify-content: center;
    line-height: 1.2;
    padding: 5px 2px;
    font-size: 13px;
    font-weight: 600;
}
ul.cdtimer li {
    margin: 0 4px;
    text-align: center;
}
ul.cdtimer li span {
    font-size: 140%;
}

/** Add Deposit Guide Video Update - 22/7/2025 **/
.how-video-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.tab-icon {
    margin-right: 3px;
}
.tab-icon img {
    max-height: 16px;
    vertical-align: sub;
}
.nav-tabs.wallet .nav-item.show .nav-link img, .nav-tabs.wallet .nav-link.active img {
	filter: brightness(50);
}

/** Updated - 18/8/2025 **/
.slots-lobby-sec {
    background: #031627 url(../images/lobby-bg.png) no-repeat top center;
    background-size: 100%;
	min-height: 90vh;
    position: relative;
    text-align: center;
    padding: 30px 0 30px;
}
.max-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}
.slots-top-img {
    position: relative;
    max-width: 436px;
    margin: 0 auto 45px;
}
button.lobby-play-btn {
    background: url(../images/button.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    max-width: 52%;
    height: 64px;
    border: none;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 3%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8%;
}
button.lobby-play-btn:hover {
	transform: scale(0.98);
	filter: brightness(1.07);
}
.lobby-wrapper {
    position: relative;
	padding: 15px 0;
}
.lobby-area {
    display: grid;
    grid-template-columns: repeat(7,1fr);
	grid-gap: 20px 10px;
}
.lb-gamebox {
    position: relative;
	overflow: hidden;
	border-radius: 8px;
    border: 1px solid #105191;
    background: #062542;
    text-align: center;
    padding: 8px;
    display: inline-block;
    max-width: 155px;
    margin: 0 auto;
    box-shadow: 2px 3px 6px rgb(0 0 0 / 80%);
}
.game-name {
    color: #fff;
    font-size: 13px;
    padding-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 21px;
}
.playhover {
    background: rgba(0,0,0,0.75);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: ease 0.3s;
}
a.playnow-btn {
    color: #fff;
    border: 1px solid #105191;
    border-radius: 6px;
    padding: 5px 10px 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
a.playnow-btn:hover {
	background: #105191;
	color: #fff;
}
.lb-gamebox:hover .playhover {
	visibility: visible;
	opacity: 1;
	transition: ease 0.3s;
}










