@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;
}
.logined {
	background: #306193;
	padding-bottom: 80px;
}

/** Floating Bubble **/
.float-container {
    position: fixed;
    bottom: 57px;
    right: 0px;
    z-index: 99;
}
#toggle {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.chat-contact {
	color: #031b33;
	font-size: 23px;
}
.close-contact {
    color: #fff;
    display: none;
    font-size: 16px;
}
#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;
}

#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: 50px;
    width: var(--d);
    height: var(--d);
    background: #fff210;
    border: 3px solid #fff210;
    border-radius: 50%;
    position: absolute;
    bottom: calc(25px / 2);
    right: calc(25px / 2);
    padding: 6px;
    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: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    left: -12px;
    top: -20px;
}
.menu__item {
    color: #fff;
    padding: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    transition: all 250ms;
}
.menu__item i {
    font-size: 24px;
	color: #fff;
}
.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: 14px;
    font-weight: 600;
    text-transform: uppercase;
    height: 31px;
    min-width: 84px;
    padding: 2px 10px;
    margin: 0 2px;
    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: 35px;
	-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: 14px;
    font-weight: 600;
    text-transform: uppercase;
    height: 31px;
    min-width: 84px;
    padding: 2px 10px;
    margin: 0 2px;
    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: 35px;
	-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: 55px;
    position: relative;
}
.header-menu .logo {
    max-width: 110px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
}
.userpart {
    text-align: right;
    font-size: 12px;
    padding: 8px 5px;
}
.userpart .balance {
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #f0d802;
}
.userpart .balance .currency {
    color: rgba(255,255,255,0.8);
}
.menu-icon {
    position: relative;
    height: 46px;
    width: 46px;
}
.menu-icon .bar {
    position: relative;
    background: #fff;
    height: 1.5px;
    width: 18px;
    left: 14px;
    top: 22px;
}
.menu-icon .bar::before {
    content: '';
    background: #fff;
    height: 1.5px;
    width: 18px;
    position: absolute;
    left: 0;
    top: -6px;
}
.menu-icon .bar::after {
    content: '';
    background: #fff;
    height: 2px;
    width: 18px;
    position: absolute;
    left: 0;
    top: 7px;
}

.menu-center {
	display: flex;
	align-items: center;
}
.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: #031b33 url(../images/index_02.jpg)no-repeat bottom center;
    background-size: 100%;
    padding: 20px 0 10%;
    text-align: center;
}
.smbox {
    position: relative;
    background: #072847;
    text-align: center;
    max-width: 300px;
    margin: 15px auto;
    overflow: hidden;
    border-radius: 10px;
}
.smbox.big {
    max-width: 330px;
}
.boxname {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 0;
    text-shadow: 1px 1px 1px #000;
}
.smbox.big {
    max-width: 510px;
}	
.smbox-img {
    max-height: 280px;
    overflow: hidden;
}
.smbox-img img {
    width: 100%;
    object-fit: contain;
}



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;
}
.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;
}
.join-btn {
    color: #2f2f2f;
    border: 2px solid #f0c103;
    background-color: #f0c103;
    background-image: linear-gradient(45deg, #f0da03 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background 300ms ease-in-out;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
}
.switch-desktop.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    max-width: 250px;
    margin: 15px auto 20px auto;
    padding: 10px 15px;
    height: 50px;
    color: #fff;
}
.switch-desktop.mobile i {
	margin-right: 10px;
	font-size: 20px;
}

/** Page Lobby **/
.notification-wrapper{
    line-height: 25px;
    background-color: #081c2f;
    color: #fff;
    font-size: 0.6rem;
    position: relative;
    display: flex;
}

.notification-wrapper .icon{
    background-color:#0f4f8c;
    position: relative;
    padding: 0 0 0 0.7rem;
    color: #fff;
    width: 70px;
    z-index: 1;
    font-size: 0.65rem;
}

.marquee-parent {
    position: relative;
    display: block;
    /*padding: 0px 0.7rem 0px 1.5rem;*/
    height: 25px;
    width: calc( 100% - 70px);
    overflow: hidden;

  }
.marquee-child {
    display: block;
    width: 100%;
    height: 30px;
    position: absolute;
    /*animation: marquee 10s linear infinite;*/
    white-space: nowrap;
    }

.marquee-child:hover {
    animation-play-state: paused;
    cursor: pointer;
}
@keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.notification-wrapper .icon:after{
    content: "";
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-left: 20px solid #0f4f8c;
    position: absolute;
    top: 0;
    right: -20px;
}
.notification-wrapper .icon:before{
    content: "";
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-left: 30px solid  #f9d040;
    position: absolute;
    top: 0;
    right: -30px;
}
.swiper-container-lobby-thumb{
    margin:5px 10px 2px 10px !important;
}

.swiper-container-horizontal>.swiper-pagination-thumb{
    text-align: center;
}

.swiper-container-horizontal>.swiper-pagination-thumb .swiper-pagination-bullet{
    background-color: #c7c7c7 !important;
    width: 6px;
    height: 6px;
    border: none;
}
.prov-title {
    color: #c1dbf9;
    text-transform: uppercase;
    background-color: #183f63;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 15px;
}
.prov-title i {
	padding-right: 5px;
}

.provider-sec {
    background: #306193;
}
.swiper-container {
	width: 100%;
	height: 100%;
	padding: 5px 10px 25px;
}
.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 5px;
}
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #16385a;
}
.dm-item {
	display: inline-block;
	position: relative;
}
.prv-name {
    background: #0d3a64;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 4px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 0 0 5px 5px;
}
.footer-menu-sec {
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
}
.footer-menu {
    background: #0e3f7d;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    text-align: center;
    height: 60px;
    font-size: 12px;
    font-weight: 600;
    color: #c2dcf5;
}
.ft-menu i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
    color: #fff;
}

/** Promotion updated - 11/6/2021 **/
.promo-sec {
    background: #071c2f;
    padding: 20px 0;
    margin-bottom: -20px;
}
.promo-card {
	margin-bottom: 15px;
}
.promo-wrap {
    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;
	padding: 5px;
}
.pm-img {
	border: 1px solid #0f4f8c;
}

.pm-desc {
    padding: 10px 5px 5px;
	position: relative;
	display: none;
}
.promo-wrap.collapsed .pm-desc {
	display: block;
}
.main-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pm-smcaption {
    max-height: 45px;
    font-size: 12px;
    overflow: hidden;
    line-height: 1.2;
}
.promo-content {
    background: #000d1a;
    color: #87c4ff;
    padding: 10px 10px;
    font-size: 13px;
}
.promo-content ul, .promo-content ol {
	padding-left: 18px;
}
.promo-content ul li, .promo-content ol li {
	padding-bottom: 5px;	
}

/** Update 13/8/2021 **/
.logined.dark {
	background: #031627;
}
.inbox-sec {
	background: url("../images/inbox-bg.jpg")no-repeat top center;
	background-size: cover;
	padding: 15px 0;
	min-height: 80vh;
	padding: 0 10px;
}
.msg-title {
    text-align: center;
    padding: 15px 15px 20px;
    font-size: 22px;
    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: 10px 10px 20px;
}
.inbox-wrapper {
    margin-bottom: 20px;
}
.mailbox {
    display: grid;
    grid-template-columns: 10% 80% 10%;
    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: 6px 0px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mail-icon {
    font-size: 14px;
    text-align: center;
    border-right: 1px solid #0f4f8c;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mail-title {
    padding: 0 5px;
}
.mailbox-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 1px;
}
.mail-caption {
    color: #87c4ff;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 800px;
    white-space: nowrap;
}
.mail-date {
	display: flex;
    color: #87c4ff;
    font-size: 10px;
    padding: 3px 2px 0;
}
.mdate {
    margin-right: 10px;
}
.mdate i {
	margin-right: 3px;
}
.remove-icon {
    font-size: 14px;
    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: 3px;
	font-size: 14px;
	color: #000;
}
.modal-content.inbox {
    border: none;
}
.msg-content {
    padding: 15px 20px 20px;
}
.inbox-title {
    color: #08345e;
    font-size: 20px;
    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.inbox i::after {
    content: '';
    background: #FF0000;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    position: absolute;
}

.menu__item a {
	position: relative;
}
span.inbox-num {
    background: #FF0000;
    color: #fff;
    font-size: 7px;
    text-align: center;
    height: 11px;
    width: 11px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -6px;
    top: -2px;
}

/** Update 2/9/2021**/
.header-top {
    padding: 15px 0;
}
.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
.logo {
    padding-right: 10px;
}
.menu-wrapper-home {
	display: flex;
	justify-content: flex-end;
}
.login-btn, .register-btn {
    font-size: 13px;
	padding: 2px 5px;
    min-width: 70px;
}
.header-menu .logo {
    max-width: 155px;
    top: 17px;
}

/** Wallet 27/10/2021 **/
.wallet-sec {
    color: #363636;
}
a.ft-menu {
    color: #fff;
}
.logined.white {
	background: #fff;
}
.wallet-nav-menu {
    display: grid;
    grid-template-columns: 50% 50%;
}
.wmnav-btn {
    background: #0f4f8c;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    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: 2px;
	height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: grid;
	font-size: 14px;
}
/* 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 10px 15px;
}
.info-reward {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.depo-info {
    color: #606060;
    font-size: 14px;
    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;
    display: flex;
    border: 1px solid #0e4e8b;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 12px;
    height: 30px;
    width: 100%;
    max-width: 110px;
    padding: 2px;
    margin: 0 10px;
}
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: 1%; 
}
.rwbox {
	position: relative;
    filter: grayscale(1);
    margin: 0 5px;
	cursor: pointer;
}
.rwbox.active {
	filter: none;
}
button.claim-btn {
    position: relative;
    background: url(../images/reward/btn.png)no-repeat;
    background-size: 100%;
    width: 19.5vw;
    height: 5vw;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 2vw;
    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: 4vw;
    height: 3vw;
    position: absolute;
    right: 8%;
    top: 18%;
}
.accum-wrap {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    max-width: 780px;
    margin: auto;
}
.acc-amt {
    font-size: 11px;
    font-weight: 700;
    padding: 1px 0;
}
.accum-box {
	filter: grayscale(1);
}
.accum-box.active {
	filter: none;
}

/** Deposit Daily Reward **/
.daily-reward-wrapper {
	background: url("../images/inbox-bg.jpg")no-repeat center;
	background-size: cover;
	text-align: center;
	padding: 25px 10px 0;
	color: #fff;
}
.instru-text {
	font-size: 14px;
	padding: 0 0 10px;
}
button.depo-reward-btn {
    border: none;
    background: none;
    padding: 0;
}
button.depo-reward-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;
}

@media(max-width: 410px) {
.depo-box {
    font-size: 3.4vw;
    width: 32%;
}
.dtext-1 {
    top: 19%;
}
.dtext-3 {
    font-size: 6vw;
}	
.dtext-1.gift::after {
    width: 5.2vw;
    height: 5vw;
    top: -2px;
}
button.depo-claim-btn {
    height: 9vw;
}
.depo-box.redeem::after {
    max-width: 19.5vw;
    height: 16vw;
}
}

/** 30/3/2023 Update **/
.referral-sec {
	background: url("../images/referral/bg_02.jpg")no-repeat top center;
	background-size: cover;
	text-align: center;
	padding: 15px 0 30px;
}
.how-title {
	max-width: 85%;
	margin: 0 auto 15px;
}
.how-wrapper {
    position: relative;
	padding-bottom: 15px;
}
.stepbox {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}
.step-caption {
    font-size: 16px;
    font-weight: 700;
    padding: 0 2%;
}
.member-refer-title {
    padding: 15px 0;
}
.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 10px;
	margin: 0 0 30px;
}
.referbox {
    text-align: left;
}
.refer-text {
    font-size: 17px;
    font-weight: 600;
    padding: 0 0 6px;
}
.refer-link-wrap {
	padding-bottom: 15px;
}
input.refer-input {
	background: #fff;
    height: 35px;
    border-radius: 5px;
    border: none;
    color: #000;
    padding: 0 10px;
	margin-bottom: 7px;
}
input.refer-input:disabled {
	background: #fff;
}
.refer-qrcode img {
    max-height: 150px;
}
ul.nav.nav-refer {
    max-width: 800px;
    margin: 0 auto -28px;
    position: relative;
}
ul.nav.nav-refer li.nav-item {
    width: 48%;
    margin: 0 auto;
}
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: 43px;
    color: #000;
    font-weight: 900;
    font-size: 13px;
    line-height: 1.1;
	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: 180px;
    padding: 50px 10px 10px;
}
.refer-member-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 12px 5px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.rebate-wrap {
    font-size: 15px;
    font-weight: 700;
    padding: 15px 0;
}
.btext {
    color: #f9e538;
}

/** Updated - 23/7/2023 **/
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: 41%;
    left: 0;
    right: 0;
    filter: drop-shadow(2px 2px 3px #000);
    z-index: 2;
}

@media(max-width: 620px) {
a.dm-item.maintenance::after {
    width: 12vw;
    height: 12vw;
}
	
}

/** Deposit Mission -deposit page Updated - 23/8/2023 **/
.mission-wrapper {
    padding: 0 0 10px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    max-width: 940px;
    margin: 0 auto;
}
.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;
	padding: 0 15px;
}
.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;
}

@media(max-width: 767px) {
.mission-wrapper {
    display: block;
}
.depo-days-box {
    width: 49%;
}		
}

@media(max-width: 480px) {
.depo-days-box {
    height: 45vw;
}	
.day-box {
    max-width: 80%;
    font-size: 4vw;
}
.bonus-text {
    font-size: 4.2vw;
}	
.dp-amt, .bntext {
    font-size: 6vw;
}	
button.claim-dp-btn {
    max-width: 70%;
    height: 11.5vw;
    font-size: 4.2vw;
}		
.dtext-sm {
    font-size: 3vw;
}
.dvd-line {
    height: 0.3vw;
    margin: 5.5% auto;
}
.ms-note {
    font-size: 15px;
}	
}

/** Update - 19/1/2024 **/
.toggle-arrow {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 -1px 3px rgb(0,0,0,0.4);
}
.toggle-arrow::after {
    content: '\f146';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 15px;
    color: #f0d802;
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.toggle-arrow.collapsed::after {
	content: '\f0fe';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
}
.prov-title {
    font-size: 13px;
    padding: 10px 15px;
}
.collapse.hide {
    height: 195px;
    display: block;
}
.collapse.show {
	opacity: 1;
	visibility: visible;
	height: auto;
}
.collapse.hide.show {
	opacity: 1;
	visibility: visible;
	height: auto;
}
.product-wrapper {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 10px;
}	

@media(max-width: 650px ) {
.collapse.hide {
    height: 31vw;
    display: block;
}	
}
@media(max-width: 480px ) {
.collapse.hide {
    height: 32vw;
    display: block;
}	
}

/** Updated - 6/3/2024 **/
.sport-predict-float {
    position: fixed;
    bottom: 149px;
    right: 5px;
    z-index: 99;
    max-width: 85px;
}
.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: 150px auto;
    grid-gap: 0;
}
.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: 15px;
    width: 15px;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    right: -4px;
    top: 0px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 700;
}
#toggle:checked + .menu__toggle > .menu__button .notice-box {
	display: none;
}


/** Updated - 27/9/2024 **/
.dual-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/** Updated - 14/1/2025 **/
.swiper-container {
    padding: 5px 10px 10px;
}
a.dm-item.sport {
    max-width: 70%;
}

/** Updated - 13/6/2025 **/
.login-home-sec {
	padding: 15px 0 0;
}
.mobile-login-wrapper {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
	color: #000;
}
.title-login-mb {
    background: linear-gradient(to bottom, rgba(9, 58, 103, 1) 0%, rgba(3, 27, 50, 1) 100%);
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 6px;
    text-transform: uppercase;
}
form.login-form-mb {
    padding: 20px 20px;
}
form.login-form-mb .submit-field {
    text-align: center;
    margin-top: 15px;
}

/** Countdown floating update - 4/7/2025 **/
.float-countdown {
    position: fixed;
    right: 15px;
    z-index: 99;
    bottom: 150px;
}
.offer-cd-wrap {
    position: relative;
    max-width: 100px;
}
#countdown-reward {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0%;
    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: 4px 2px;
    font-size: 9px;
    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: 400px;
    margin: 0 auto;
}
.nav-tabs.wallet .nav-item {
    margin: 0 1% 0 0;
    width: 32%;
}
.nav-tabs.wallet .nav-link {
    font-size: 13px;
    width: 100%;
    height: 100%;
    line-height: 1.1;
    padding: 7px 2px;
}
.tab-icon {
    margin-right: 3px;
}
.tab-icon img {
    max-height: 13px;
    vertical-align: sub;
}
.nav-tabs.wallet .nav-item.show .nav-link img, .nav-tabs.wallet .nav-link.active img {
	filter: brightness(50);
}
#guide-tab {
	font-size: 12px;
}

/** 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 {
	max-width: 480px;
	margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
	grid-gap: 10px 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: 12px;
    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: 13px;
    font-weight: 600;
}
a.playnow-btn:hover {
	background: #105191;
	color: #fff;
}
.lb-gamebox:hover .playhover {
	visibility: visible;
	opacity: 1;
	transition: ease 0.3s;
}

@media(max-width: 480px) {
button.lobby-play-btn {
    height: 14vw;
    font-size: 6vw;
}	
}

/** Add Deposit Guide Video Update - 22/7/2025 **/
.how-video-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.nav-tabs.wallet .nav-item {
    margin: 0 1% 0 0;
    width: 32%;
}

.nav-tabs.wallet .nav-link {
    font-size: 13px;
    width: 100%;
    height: 100%;
    line-height: 1.1;
    padding: 7px 2px;
}

.tab-icon {
    margin-right: 3px;
}

    .tab-icon img {
        max-height: 13px;
        vertical-align: sub;
    }

.nav-tabs.wallet .nav-item.show .nav-link img, .nav-tabs.wallet .nav-link.active img {
    filter: brightness(50);
}

#guide-tab {
    font-size: 12px;
}

/** Update 18/11/2025**/
.how-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
}

.step-caption {
    font-size: 11px;
}

.refer-wrapper {
    position: relative;
}

.refer-title-img {
    max-width: 90%;
    margin: 0 auto;
}

button.refer-info-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    font-size: 18px;
    position: absolute;
    right: 6px;
    top: 6px;
    z-index: 1;
}

    button.refer-info-btn:hover {
        color: #ffcd00;
    }

/*.modal-content.login {
    background: #0f4f8c;
    color: #fff;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
}*/

.refer-info-wrapper code {
    color: #fff;
    font-style: italic;
}

.footer-menu {
    grid-template-columns: repeat(5, 1fr);
}

/** Deposit Mission - 17/12/2025**/
.new-depo-ms-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 15px;
}

.dpgift-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 210px;
    margin: 5px 5px 25px;
    filter: brightness(0.5);
}

.msinfo {
    position: absolute;
    left: 0;
    right: 0;
    top: 28%;
    text-align: center;
    color: #000;
}

.newdp-amt {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.msprize {
    background: linear-gradient(180deg, rgba(226, 119, 23, 1) 0%, rgba(148, 71, 1, 1) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 70%;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 700;
    border-radius: 8px;
    height: 45px;
    margin-top: 4px;
}

button.dpclaim-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2%;
    background: url("../images/depo-ms/btn.png")no-repeat;
    background-size: 100%;
    width: 159px;
    height: 56px;
    margin: 0 auto;
    border: none;
    padding-top: 2%;
    color: #fff;
    font-weight: 800;
    font-size: 19px;
    text-transform: uppercase;
    text-shadow: 0 1.5px 2px rgb(0,0,0,0.7);
    pointer-events: none;
}

    button.dpclaim-btn i {
        margin-right: 5px;
    }

.dpgift-box.claimed, .dpgift-box.active {
    filter: brightness(1);
}

    .dpgift-box.active button.dpclaim-btn {
        animation: glowing 1.4s ease-in-out infinite;
        pointer-events: auto;
    }

@keyframes glowing {
    0% {
        filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 3px #fff);
    }

    50% {
        filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) brightness(1.07);
    }

    100% {
        filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 3px #fff);
    }
}

@media(max-width: 480px) {
    .dpgift-box {
        max-width: 47%;
        margin: 10px 0.5%;
    }

    .newdp-amt {
        font-size: 7vw;
    }

    button.dpclaim-btn {
        font-size: 4vw;
    }

    .msinfo {
        font-size: 3.1vw;
    }

    .msprize {
        font-size: 7vw;
        height: 9.5vw;
    }

    button.dpclaim-btn {
        font-size: 4vw;
        width: 74%;
        height: 12vw;
    }
}
/** amendment 29/1/2025**/
.new-depo-ms-wrapper {
    max-width: 920px;
}

.dpgift-box {
    margin: 5px 0.5% 25px;
    width: 23%;
}

.msinfo {
    font-size: 1.6vw;
}

.newdp-amt {
    font-size: 3.5vw;
}

.msprize {
    height: 4.7vw;
    font-size: 3.4vw;
    margin-top: 2%;
    border-radius: 0.8vw;
}

button.dpclaim-btn {
    background-size: 100% 100%;
    height: 6vw;
    width: 78%;
    font-size: 2.2vw;
}



