﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap');

@font-face {
	font-family: 'AvertaStd';
	font-weight: 400;
	src: url("../fonts/AvertaStd-Regular.ttf");
}
@font-face {
	font-family: 'AvertaStd';
	font-weight: 500;
	src: url("../fonts/AvertaStd-Semibold.ttf");
}
@font-face {
	font-family: 'AvertaStd';
	font-weight: 700;
	src: url("../fonts/AvertaStd-Bold.ttf");
}
@font-face {
	font-family: 'AvertaStd';
	font-weight: 800;
	src: url("../fonts/AvertaStd-Black.ttf");
}

body { font-family: "AvertaStd", sans-serif; line-height:1.2; font-size:15px; color:#fff; background: #030e15; }

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, textarea: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 {
    width: 100%;
}
button {
	background: none;
	border: none;
	padding: 0;
}
.t-body {
    overflow: hidden;
    padding-top: 70px;
}
.deco {
	position: absolute;
}
.max-container {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 10px;
}
.body-container {
    display: grid;
    grid-template-columns: 250px auto;
    transition: all 0.3s;
}
.body-container.active {
    grid-template-columns: 65px auto;
    transition: all 0.3s;
}
.body-container.active .side-menu {
    width: 65px;
    padding: 0;
    transition: 0.3s;
}

/** Header **/
.header-sec {
    position: fixed;
    right: 0;
    z-index: 998;
	box-shadow: 0px 10px 12px -7px #0c3247;
    background: linear-gradient(87deg,rgba(5, 22, 32, 1) 0%, rgba(7, 34, 48, 1) 100%);
    width: calc(100% - 250px);
	transition: 0.3s;
}
.body-container.active .header-sec {
    width: calc(100% - 65px);
	transition: 0.3s;
}
.header-container {
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
	height: 70px;
	padding: 0 10px;
}
.logo img {
    max-height: 70px;
}
.header-wrap {
    display: flex;
    align-items: center;
}
button.login-btn {
    background: #233749;
    border: none;
    color: #fff;
    font-size: 15px;
    height: 32px;
    padding: 3px 6px;
    min-width: 100px;
    border-radius: 9px;
    margin: 0 4px;
}
button.login-btn:hover {
	background: #071b26;
}
button.gold-btn {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    height: 32px;
    padding: 3px 6px;
    min-width: 100px;
    border-radius: 9px;
    margin: 0 4px;
    animation: glow 1.5s ease-in-out infinite;
}
button.gold-btn:hover {
	filter: brightness(1.07);
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
}
@keyframes glow {
0% {
	box-shadow: none;	
}
50% {
	box-shadow: 0 0 14px -1px #ffed7d;
	filter: brightness(1.05);
}
100% {
	box-shadow: none;
}
}
.hdaf-wrap {
    display: flex;
    flex-direction: column;
    align-items: end;
    grid-gap: 5px;
}
.hdaf-1 {
    font-size: 12px;
}
.hdaf-1 a {
    color: #fff;
}
.hdaf-1 a:hover {
	color: #fed560;
}
.date-time-top {
	margin-right: 10px;
}
.hdaf-2 {
    display: flex;
    align-items: center;
}
button.gold-btn.mobile-depo {
    min-width: auto;
    width: 32px;
    height: 32px;
    padding: 3px;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    text-shadow: 0px 1px 2px rgb(0, 0, 0, 0.6);
    display: none;
}
a.toprofile-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    border-left: 1px solid #fff;
    padding: 0 10px;
    vertical-align: middle;
}
.hduser-icon {
	margin-right: 6px;
}
.hduser-icon img {
	max-height: 20px;
}
a.inbox-link {
    display: inline-block;
    color: #fff;
    position: relative;
    padding: 2px;
    font-size: 18px;
    margin: 0 10px;
    vertical-align: middle;
}
span.mailnum {
    position: absolute;
    right: -5px;
    top: -1px;
    background: #f00;
    font-size: 7px;
    border-radius: 50%;
    height: 11px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-bal {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
	font-size: 14px;
}
button.dispbtn {
    border: none;
    font-size: 95%;
    background: linear-gradient(to bottom, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.balamt {
    letter-spacing: 0.5px;
    font-size: 13px;
}
.header-user-wrapper {
    position: relative;
}
.header-user {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 5px;
    background: #04161f;
    height: 37px;
    font-size: 13px;
    padding: 0 20px 0 5px;
    border-radius: 4px;
	cursor: pointer;
}
.header-user::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 700;
    font-size: 70%;
	color: #eece6b;
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.vipbadge img {
    max-height: 50px;
}
.user-dropown-wrapper {
    position: absolute;
    right: 0;
    width: 280px;
    top: 100%;
    background: rgb(14, 46, 64, 0.98);
    border-radius: 10px;
    overflow: hidden;
	visibility: hidden;
	opacity: 0;
}
.header-user-wrapper:hover .user-dropown-wrapper {
	visibility: visible;
	opacity: 1;
}
.player-info-box {
    background: linear-gradient(to top, rgba(4, 22, 31, 0) 0%, rgba(4, 22, 31, 0.53) 45%, rgba(4, 22, 31, 1) 100%);
    padding: 15px 15px 0;
}
.welcome-vip {
    display: grid;
    grid-template-columns: 74% auto;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    grid-gap: 5px;
	margin-bottom: 10px;
}
.welcply {
    display: flex;
    flex-direction: column;
    grid-gap: 3px;
}
.vipbdg img {
    max-height: 70px;
}
.vip-upgrd {
    position: relative;
    margin-bottom: 10px;
    font-size: 13px;
}
.vipbar-wrap {
    position: relative;
    height: 4px;
    background: #000;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 5px;
}
.vipbar-inner {
    background: #be8e2f;
    height: 100%;
    border-radius: 25px;
}
.vipbenefit {
    text-align: right;
}
.vipbenefit a {
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: end;
}
.vipbenefit a:hover {
	color: #f2d570;
}
.bfvipicon {
	font-size: 13px;
    margin-right: 5px;
    background: linear-gradient(to bottom, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plyline {
    border: 1px dashed #010102;
    margin: 15px 0;
}
.playermenu {
    padding: 0 15px 10px;
}
ul.nav.playernav {
    flex-direction: column;
}
ul.nav.playernav li.nav-item {
    margin: 3px 0;
}
ul.nav.playernav li a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #fff;
    background: #071b26;
    height: 40px;
    padding: 0 15px;
    border-radius: 7px;
    font-size: 14px;
}
.plynav-icon img {
    max-height: 25px;
}
ul.nav.playernav li a:hover {
	background: linear-gradient(90deg, rgba(243, 214, 113, 1) 0%, rgba(188, 140, 45, 1) 100%);
    color: #000;
}
ul.nav.playernav li a:hover img {
	filter: contrast(1) brightness(0);
}

/** Side Menu **/
.t-sidemenu {
	position: relative;
	z-index: 999;
    background: #051620;
	box-shadow: inset -1px 0px 3px rgb(0, 0, 0, 0.3);
}
.side-menu {
    position: fixed;
    width: 250px;
    transition: 0.3s;
}
.body-container.active .side-menu .smenu-text {
	display: none;
}
.sm-btn-wrap {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
    border-bottom: 2px solid #0a2635;
    box-shadow: 0px 2px 2px rgb(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(10, 37, 51, 1) 0%, rgba(9, 35, 48, 1) 15%, rgba(8, 32, 44, 1) 21%, rgba(4, 19, 27, 1) 100%);
}
button.sidemenu-btn {
    position: relative;
    z-index: 99;
    background: none;
    max-width: 30px;
}
button.sidemenu-btn:hover img {
	filter: grayscale(1) brightness(10);
}
.body-container.active button.sidemenu-btn {
	transform: scaleX(-1);
	transform-origin: center;
}
.sidemenu-wrapper {
    padding: 10px 10px;
	overflow: auto;
    height: 89vh;
}
.mobile-side .sidemenu-wrapper {
	height: auto;
	overflow: visible;
}
.sidemenu-wrapper::-webkit-scrollbar {
	display: none;
}
a.event-btn {
    background: #fed560;
    display: flex;
    align-items: center;
	height: 45px;
	min-width: 45px;
    margin: 5px 0 10px;
    border-radius: 12px;
    color: #000;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
	box-shadow: 0 2px 2px rgb(0, 0, 0, 0.7);
}
a.event-btn:hover {
	background: #d09c12;
	color: #fff;
	box-shadow: 0 0px 2px rgb(0, 0, 0, 0.7);
}
a.event-btn:hover img {
	filter: grayscale(1) brightness(10);
}
a.event-btn img {
    max-height: 30px;
    margin-right: 10px;
}
.body-container.active a.event-btn {
	padding: 5px;
	justify-content: center;
}
.body-container.active a.event-btn img {
    margin-right: 0;
}
ul.nav.sidemenu-nav {
	background: #071b26;
	box-shadow: 0 0 4px rgb(0,0,0,0.15);
    flex-direction: column;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 0 15px;
}
ul.nav.sidemenu-nav li {
    position: relative;
    width: 100%;
}
ul.nav.sidemenu-nav li a.smenu-item {
    display: flex;
    align-items: center;
    color: #fff;
	height: 45px;
	min-width: 45px;
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 15px;
    position: relative;
}
ul.nav.sidemenu-nav li a.smenu-item img, .smenu-wrap a img {
    max-height: 25px;
    margin-right: 15px;
}
ul.nav.sidemenu-nav li a.smenu-item.collapsed {
    background: none;
}
ul.nav.sidemenu-nav li a.smenu-item:hover {
	background: linear-gradient(90deg,rgba(243, 214, 113, 1) 0%, rgba(188, 140, 45, 1) 100%);
	color: #000;
}
ul.nav.sidemenu-nav li a.smenu-item:hover img {
	filter: contrast(1) brightness(0);
}
.body-container.active ul.nav.sidemenu-nav li a.smenu-item img, .body-container.active .smenu-wrap a img {
    margin-right: 0px;
}
.body-container.active ul.nav.sidemenu-nav li a.smenu-item {
    padding: 5px;
    justify-content: center;
}
.smenu-wrap a {
    display: flex;
    align-items: center;
    color: #fff;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    padding: 5px 15px 5px 40px;
    font-size: 15px;
    position: relative;
}
.smenu-wrap a:hover {
	background: linear-gradient(90deg, rgba(243, 214, 113, 1) 0%, rgba(188, 140, 45, 1) 100%);
    color: #000;
}
.smenu-wrap.support a:hover img {
	filter: contrast(1) brightness(0);
}
.body-container.active .smenu-wrap a {
    padding: 5px;
    justify-content: center;
}
.member-info-wrapper {
    background: #093c79;
    border-radius: 10px;
    box-shadow: 0 0 3px rgb(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 110px auto;
    grid-gap: 10px;
    align-items: center;
    padding: 10px 8px;
    margin-bottom: 10px;
	transition: 0.2s;
}
.mb-vip-img {
	transition: 0.3s;
}
.mbinfo-wrap {
    position: relative;
    font-size: 13px;
}
.mb-name {
    color: #ffc742;
    margin-bottom: 5px;
    font-weight: 500;
}
.mb-lvl {
    font-size: 90%;
}
.mbvip-info a {
    color: #ffc742;
}
.mb-stvip {
    font-size: 125%;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffc742;
    margin-top: 1px;
}
.mb-wallet {
    margin-top: 5px;
}
button.gold-btn.sidewallet {
    padding: 5px 5px;
    min-width: 77px;
    font-size: 13px;
    border-radius: 6px;
    height: 27px;
}
.body-container.active .member-info-wrapper {
    padding: 5px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 8px;
	transition: 0.2s;
}
.body-container.active .mbinfo-wrap {
    display: none;
}


/** Footer Section **/
.footer-sec {
    background: linear-gradient(180deg, rgba(10, 37, 51, 1) 0%, rgba(9, 35, 48, 1) 15%, rgba(8, 32, 44, 1) 21%, rgba(4, 19, 27, 1) 100%);
	position: relative;
	padding: 30px 0 20px;
}
.footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
	margin-bottom: 15px;
}
a.support-ft img {
    max-height: 100px;
}
.ft-title {
    font-weight: 500;
    margin-bottom: 10px;
}
a.smlink {
    display: inline-block;
    margin-right: 4px;
    vertical-align: top;
}
.sminner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9f9f9f;
    color: #061d29;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 22px;
}
a.smlink:hover .sminner {
	background: linear-gradient(180deg,rgba(243, 214, 113, 1) 0%, rgba(188, 140, 45, 1) 100%);
}
.footer-link-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
ul.nav.ftnav {
    flex-direction: column;
	grid-gap: 0 10px;
}
ul.nav.ftnav li.ftitem {
    margin-bottom: 10px;
}
ul.nav.ftnav li.ftitem a {
    color: #9f9f9f;
    font-size: 15px;
}
ul.nav.ftnav li.ftitem a:hover {
	color: #e0bb5a;
}
.lisence-logo img {
    max-height: 30px;
    margin: 0 8px 8px 0;
}
.ft-payment img {
    max-height: 33px;
    margin: 0 8px 8px 0;
}
.copyright-text {
    text-align: center;
    font-size: 13px;
	padding-top: 10px;
}
button.back-to-top {
    position: fixed;
    bottom: 5%;
    right: 10px;
    background: #7d7d7d;
    border: none;
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
	z-index: 100;
}
button.back-to-top:hover {
	background: #182939;
	transform: scale(0.98);
}


/** Mobile Bottom Menu **/
.mobile-btm-sec {
    position: fixed;
	background: linear-gradient(180deg,rgba(12, 52, 73, 1) 0%, rgba(4, 19, 27, 1) 100%);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 -1px 6px rgb(0, 0, 0, 0.4);
	display: none;
}
ul.nav.btm-menu-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    text-align: center;
    height: 56px;
}
a.bmenu-link {
    color: #fff;
    font-size: 12px;
    display: block;
    padding: 5px 1px;
}
.bmimg img {
    max-height: 25px;
}
.bmtext {
    line-height: 1;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bmimg.rwc-img img {
    max-height: 55px;
}
.bmimg.rwc-img {
    margin: -27px auto -3px;
}

/** SEO section **/
.seo-sec {
    position: relative;
    padding: 30px 0;
}
.seo-wrapper {
    position: relative;
    overflow: hidden;
    font-size: 13px;
    max-height: 300px;
	color: #979797;
}
.seo-wrapper::after {
    content: '';
	background: linear-gradient(180deg,rgba(3, 14, 21, 0) 0%, rgba(3, 14, 21, 1) 91%, rgba(3, 14, 21, 1) 100%);
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.seo-wrapper h1 {
	font-size: 130%;
	font-weight: 700;
}
.seo-wrapper h2 {
	font-size: 120%;
	font-weight: 600;
}
.seo-wrapper h3, .seo-wrapper h4 {
	font-size: 110%;
	font-weight: 500;
}
.seo-wrapper a {
	color: #979797;
	text-decoration: underline;
}
.seo-wrapper a:hover {
	color: #fff;
}
.readmore-seo {
    text-align: center;
    margin-top: -25px;
}
button.read-more {
    position: relative;
    min-width: 100px;
    background: #233749;
    height: 33px;
    border-radius: 7px;
    margin: 0 auto 0 8px;
    color: #fff;
    font-size: 13px;
    padding: 2px 10px;
}
button.read-more:hover {
	background: #071b26;
}
.seo-wrapper ol, .seo-wrapper ul {
	padding-left: 16px;
}
.seo-wrapper.active~.readmore-seo {
    margin-top: 0;
}
.seo-wrapper.active {
	max-height: none;
}
.seo-wrapper.active::after {
	content: none;
}

/** Home **/
.home-slider-sec {
    position: relative;
    padding: 30px 0 15px;
}
.mb-img {
    border-radius: 14px;
    overflow: hidden;
}
.owl-theme.home-slider .owl-nav button.owl-prev {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    font-size: 22px;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    margin: auto;
    background: rgb(255,255,255,0.2);
    z-index: 3;
    line-height: 0;
    padding-bottom: 2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-theme.home-slider .owl-nav button.owl-next {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    font-size: 22px;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    margin: auto;
    background: rgb(255,255,255,0.2);
    z-index: 3;
    line-height: 0;
    padding-bottom: 2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-theme.home-slider .owl-nav button.owl-prev:hover, .owl-theme.home-slider .owl-nav button.owl-next:hover {
	background: rgb(35,55,73,0.8);
	color: #fff;
} 
.owl-theme.sub-slider .owl-nav button.owl-prev {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    font-size: 18px;
    border-radius: 5px;
    height: 20px;
    width: 20px;
    margin: auto;
    background: rgb(255,255,255,0.2);
    z-index: 3;
    line-height: 0;
    padding-bottom: 2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-theme.sub-slider .owl-nav button.owl-next {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    font-size: 18px;
    border-radius: 5px;
    height: 20px;
    width: 20px;
    margin: auto;
    background: rgb(255,255,255,0.2);
    z-index: 3;
    line-height: 0;
    padding-bottom: 2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-theme.sub-slider .owl-nav button.owl-prev:hover, .owl-theme.sub-slider .owl-nav button.owl-next:hover {
	background: rgb(35,55,73,0.8);
	color: #fff;
} 
.featured-category-sec {
	position: relative;
	padding: 10px 0 25px;
}
.category-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}
.ctgy-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}
.ctgy-box {
	display: block;
    background: url(../images/home/category-bg.jpg) no-repeat right center;
    background-size: cover;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}
.ctgy-box:hover .ctgy-item {
	transform: scale(1.07);
	transition: 0.3s;
}
.ctgy-title {
    display: flex;
    align-items: center;
    font-size: 15px;
	color: #fff;
    position: absolute;
    left: 4%;
    top: 5%;
}
.ctgy-title-icon {
    margin-right: 5px;
}
.ctgy-title-icon img {
    max-height: 25px;
}
.ctgy-item {
    text-align: right;
    max-width: 75%;
    margin: 3% -9% 3% auto;
	transition: 0.3s;
}

.game-carousel-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(7, 28, 45, 1) 0%, rgba(5, 22, 38, 1) 100%);
    padding: 15px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}
.hotgames-title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.hotgame-icon img {
    max-height: 20px;
    margin-right: 5px;
}
.owl-theme.hotgames-slider .owl-nav {
    margin-top: 10px;
    position: absolute;
    right: 0;
    top: -11%;
}
.owl-theme.hotgames-slider .owl-nav button.owl-prev {
    position: absolute;
    right: 42px;
    bottom: 0;
    font-size: 22px;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    margin: auto;
    background: #010b13;
    z-index: 3;
    line-height: 0;
    padding-bottom: 3px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-theme.hotgames-slider .owl-nav button.owl-next {
    position: absolute;
    right: 5px;
    bottom: 0;
    font-size: 22px;
    border-radius: 5px;
    height: 30px;
    width: 30px;
    margin: auto;
    background: #010b13;
    z-index: 3;
    line-height: 0;
    padding-bottom: 3px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-theme.hotgames-slider .owl-nav button.owl-prev:hover, .owl-theme.hotgames-slider .owl-nav button.owl-next:hover {
	box-shadow: 0 0 4px #0f415f, 0 0 8px #0f415f;
	color: #fff;
} 
.thumb-box {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
	cursor: pointer;
}
.thumb-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(7, 34, 48, 0.9);
    font-size: 13px;
	color: #fff;
    line-height: 1;
    text-align: center;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
button.playslot-btn {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    height: 32px;
    padding: 3px 6px;
    min-width: 100px;
    border-radius: 9px;
	transform: scale(0.3);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.thumb-box:hover .play-hover {
    visibility: visible;
    opacity: 1;
}
.thumb-box:hover .play-hover button.playslot-btn {
    transition: 0.2s;
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}
.owl-carousel.recentlyplay .owl-item img {
	object-fit: cover;
	height: 100%;
}
.recentlyplay .thumb-img {
	height: 184px;
}
.thumb-img.lotto {
    background: url("../images/home/lotto-thumb-bg.png")no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.owl-carousel .owl-item .thumb-img.lotto img {
    filter: drop-shadow(0 2px 1px rgb(0, 0, 0, 0.9));
    width: auto;
    max-width: 90%;
    margin: 0 auto;
    max-height: 60px;
}
.recent-wd-table-wrapper {
	position: relative;
	text-align: center;
}
table.wdtable tr th {
    background: #04131c;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 1px;
}
table.wdtable tr {
	background: #0b364d;
}
table.wdtable tr:nth-child(odd) {
	background: #082b3e;
}
table.wdtable tr td {
    padding: 10px 1px;
}
.record-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
button.rcd-btn {
	background: #2b363d;
    border: none;
	color: #8c8c8c;
    font-weight: 500;
    font-size: 13px;
    height: 26px;
    padding: 3px 5px;
    min-width: 100px;
    border-radius: 7px;
    margin: 0 4px;
}
button.rcd-btn.active, button.rcd-btn:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
}
.providers-slider {
	margin-bottom: 25px;
}
.pvdbox {
    background: #082b3e;
    border-radius: 12px;
    padding: 5px 5px;
}
.pvdbox img {
    filter: grayscale(1);
    mix-blend-mode: screen;
    max-height: 45px;
    width: auto !important;
    margin: 0 auto;
}

/** Register page **/
.reg-sec {
	padding: 25px 0 30px;
}
.register-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    background: #061c2d;
}
.reg-left-column {
    padding: 20px;
}
.reg-right-column {
    background: #041726 url("../images/reg-bg.jpg")no-repeat top right;
	background-size: 100%;
	padding: 30px 20px 20px;
}
.regtitle {
	display: none;
}
form.reg-form {
    padding: 15px;
}
.rfwrap {
    position: relative;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.reg-field {
    position: relative;
    width: 100%;
}
.input-icon {
    position: absolute;
    z-index: 2;
    left: 0;
    font-size: 16px;
    background: #093758;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 8px 0 0 8px;
}
input.reg-input {
    background: #052237;
    color: #fff;
    border: none;
    height: 40px;
    padding: 2px 15px 2px 50px;
    border-radius: 8px;
}
input.reg-input::placeholder {
	color: #617789;
}
.field-icon {
    position: absolute;
    right: 17px;
    top: 20px;
    font-size: 17px;
    cursor: pointer;
	color: #b3b3b3;
}
.reg-line {
    height: 1px;
    width: 100%;
    margin: 0px 0 20px;
    border: 1px dashed #2b363d;
}
.choose-text {
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
}
.fav-game {
    display: flex;
    justify-content: space-evenly;
}
.game-option {
    display: inline-block;
    position: relative;
    padding-left: 23px;
    margin: 4px 6px;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
}
.game-option input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 4px;
    background-color: #093758;
}
.game-option:hover input ~ .checkmark {
	background-color: #093758;
}
.game-option input:checked ~ .checkmark {
	background-color: #093758;
}
.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}
.game-option input:checked ~ .checkmark:after {
	display: block;
}
.game-option .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0px 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.reg-btn-wrap {
    text-align: center;
    padding: 20px 0;
}
button.reg-join-btn {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
    font-size: 16px;
    font-weight: 500;
    min-width: 150px;
    height: 35px;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
	transition: 0.2s;
}
button.reg-join-btn:hover {
	filter: brightness(1.1);
	transform: scale(0.98);
	transition: 0.2s;
}
.agree-text {
    font-size: 14px;
	color: #b3b3b3;
}
.goldtext, .agree-text a {
    color: #dba728;
}
.agree-text a:hover {
	color: #fff;
}
.fun-begin {
    padding: 0 5px;
}
.regtext-1 {
    color: #fff;
    font-weight: 500;
    font-size: 130%;
}
ul.fun {
    padding: 10px 0 0px 17px;
	font-size: 16px;
}
ul.fun li {
	padding-bottom: 10px;
}
.reg-iframe-video {
    height: 350px;
}
.reg-banner-wrapper {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 10px;
}
.regb-img {
	overflow: hidden;
	border-radius: 12px;
}
.activate-wrapper {
    background: #061c2d;
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
	text-align: center;
}
.active-img {
	margin-bottom: 10px;
}
.actext-1 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.btn-act {
    padding-top: 20px;
}
.active-img {
    max-width: 150px;
    margin: 0 auto 10px;
}
.btn-act {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
}
button.gold-btn.home {
    background: #fed560;
    color: #000;
}

/** Slots Lobby Category **/
.category-game-sec {
    position: relative;
    padding: 45px 0 30px;
}
.catg-top-banner {
    position: relative;
    text-align: center;
	margin-bottom: 20px;
}
.catg-model {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.catg-model img {
    max-height: 290px;
}
.catg-menu-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(5, 21, 36, 1) 0%, rgba(7, 27, 43, 1) 100%);
    border-radius: 12px;
    padding: 10px 10px;
    margin-bottom: 20px;
}
ul.nav.cm-nav li.cm-item {
    margin: 5px 10px 5px 0;
}
ul.nav.cm-nav li.cm-item a.cmlink {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 28px;
    background: #2b363d;
    padding: 0 8px;
    border-radius: 8px;
    min-width: 110px;
}
a.cmlink img {
    max-height: 21px;
}
ul.nav.cm-nav li.cm-item a.cmlink.active, ul.nav.cm-nav li.cm-item a.cmlink:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
}
ul.nav.cm-nav li.cm-item a.cmlink.active img, ul.nav.cm-nav li.cm-item a.cmlink:hover img {
	filter: grayscale(1) brightness(0);
}
.slots-lobby-container {
    background: linear-gradient(90deg, rgba(5, 21, 36, 1) 0%, rgba(7, 27, 43, 1) 100%);
    padding: 30px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 15px;
    position: relative;
}
.slot-filter-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px;
}
button.sfbtn {
    background: #2b363d;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
	height: 33px;
    padding: 2px 10px;
    border-radius: 7px;
    min-width: 80px;
	position: relative;
	margin-right: 3px;
}
button.sfbtn.active, button.sfbtn:hover, button.sfbtn.lobby {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
button.sfbtn.lobby {
	font-size: 14px;
}
.sfbtn-right {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.slot-search-box {
    position: relative;
    background: #041726;
    border: 1px solid #14587b;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 80% auto;
    height: 33px;
    max-width: 185px;
    overflow: hidden;
}
input.slots-input {
    background: none;
    border: none;
    height: 100%;
    padding: 5px 10px;
    color: #fff;
    width: 100%;
}
button.slot-search-btn {
    background: none;
    border: none;
    color: #707f8d;
    padding: 5px;
}
input.slots-input::placeholder {
	color: #707f8d;
}
.slots-provider {
    border: 1px solid #e6dd78;
    background: #051621;
    position: relative;
    height: fit-content;
    overflow: hidden;
    border-radius: 10px;
}
a.spvdbox {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 5px 4px 4px 20px;
    position: relative;
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
}
span.pdv-icon img {
    max-height: 30px;
}
a.spvdbox.active, a.spvdbox:hover {
	background: linear-gradient(to left, rgba(248,236,127,1) 0%, rgba(201,158,66,1) 100%);
	color: #182939;
	font-weight: 500;
}
a.spvdbox.active img, a.spvdbox:hover img {
	filter: grayscale(1) brightness(0);
}
a.spvdbox::after {
    content: '';
    width: 100%;
    margin: auto;
    height: 1px;
    background: #0a2a45;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    z-index: 1;
}
a.spvdbox:first-child::after {
	content: none;	
}
.hot-slot {
    background: linear-gradient(90deg,rgba(253, 166, 67, 1) 0%, rgba(255, 193, 44, 1) 100%);
    color: #000;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    width: 80px;
    padding: 15px 2px 3px;
    text-align: center;
    transform: rotateZ(39deg);
    position: absolute;
    right: -31px;
    top: -9px;
    box-shadow: 0 0px 4px rgb(0,0,0,0.4);
	z-index: 2;
}
span.pdv-icon {
    margin-right: 8px;
}
.slots-container {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 10px;
}
.slotgbox {
	position: relative;
	width: 100%;
    max-width: 200px;
	margin: 0 auto;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
	cursor: pointer;
}
.slot-tumbnail {
    overflow: hidden;
}
.slot-tumbnail img {
    object-fit: cover;
	width: 100%;
}
.slot-name {
    background: #072230;
    color: #bac9f3;
    height: 38px;
    font-size: 13px;
    text-align: center;
    padding: 5px 5px;
    overflow: hidden;
    line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.play-hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	visibility: hidden;
	opacity: 0;
	transition: 0.2s;
	z-index: 1;
}
.slotgbox:hover .play-hover {
	visibility: visible;
	opacity: 1;
	transition: 0.2s;
}
button.playslot-btn {
    background: linear-gradient(to left, rgba(248,236,127,1) 0%, rgba(201,158,66,1) 100%);
    color: #000;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    min-width: 120px;
    padding: 6px;
    margin: 5px 0px;
    border-radius: 7px;
	transform: scale(0.3);
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
button.playslot-btn:hover {
    transform: scale(0.97);
    filter: brightness(1.07);
    box-shadow: 0 0 10px -1px #ffed7d;
}
.slotgbox:hover .play-hover button.playslot-btn {
	transition: 0.2s;
	transform: scale(1);
	visibility: visible;
	opacity: 1;
}
/** Other Product pages **/
.pvd-list-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}
.pvd-list-wrapper .thumb-box {
    max-width: 200px;
}

/** Lottery **/
.lottery-container {
    position: relative;
	background: linear-gradient(90deg, rgba(5, 21, 36, 1) 0%, rgba(7, 27, 43, 1) 100%);
    border-radius: 10px;
    padding: 15px 15px;
}
.lotto-game-option {
    display: flex;
    align-items: center;
    justify-content: center;
}
button.lott-btn {
    background: #233749;
    border: none;
    border-radius: 8px;
    height: 45px;
    width: 130px;
    margin: 5px;
}
button.lott-btn.active {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
}
button.lott-btn.active img {
	filter: contrast(1) brightness(0);
}
button.lott-btn img {
	max-height: 35px;
}
.lotto-divider {
    margin: 15px auto;
	border: 1px dashed #2b363d;
	width: 100%;
}
.lotto-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
button.lotto-btn {
    background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    border: none;
    width: 150px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    height: 33px;
    padding: 5px;
    margin: 5px;
}
button.lotto-btn.guide {
	background: #2b363d;
	color: #8c8c8c;
}
button.lotto-btn:hover {
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    box-shadow: 0 0 10px -1px #ffed7d;
	color: #000;
}
.date-search-wrap {
    position: relative;
    max-width: 300px;
    margin: 15px 0;
    background: #041726;
    border: 1px solid #14587b;
    border-radius: 10px;
    width: 200px;
    display: grid;
    grid-template-columns: 80% auto;
}
input.date-input {
    background: none;
    color: #617789;
    border: none;
    height: 33px;
    padding: 4px 15px;
    border-radius: 40px;
    width: 100%;
}
input.date-input::placeholder {
	color: #617789;
}
button.search-btn {
    background: none;
    border: none;
    color: #617789;
    font-size: 15px;
}
.lottery-result-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
	padding: 0 10px;
	max-width: 1100px;
	margin: 0 auto;
}
.result-box {
	background: #14283c;
	overflow: hidden;
	border-radius: 15px;
	border: 1px solid #ffecab;
	max-width: 350px;
	margin: 0 auto;
	color: #fff;
	width: 100%;
	text-align: center;
}
.lotto-top {
    background: linear-gradient(180deg,rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px;
	height: 55px;
}
.lotto-title {
    text-align: right;
    font-size: 14px;
	font-weight: 500;
}
.lottitle-1 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
table.rs-top tr th {
    background: #051d2f;
    color: #ffe27f;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 1px;
    border: 1px solid #6e6724;
}
table.rs-top tr td {
	background: #14283c;
	font-size: 22px;
	padding: 5px 1px;
	border: 1px solid #6e6724;
}
table.rs-btm tr th {
	background: #051d2f;
	color: #ffe27f;
	font-size: 15px;
	font-weight: 400;
	padding: 8px 1px;
	border: 1px solid #6e6724;
}
table.rs-btm tr td {
	background: #14283c;
	padding: 10px 1px;
	border: 1px solid #6e6724;
	font-size: 16px;
}
.consol-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px 5px;
}
.lottery-mobile {
	display: none;
}
.lotto-img img {
    max-height: 35px;
}
ul.lt-wrap.win28 {
	grid-template-columns: repeat(9, 1fr);
}
.lotto-btn-wrap {
    text-align: center;
}

/** Crypto **/
.crypto-sec {
    position: relative;
    padding: 30px 0;
}
.crypto-top-title-wrap {
    text-align: center;
    font-size: 40px;
    padding-bottom: 20px;
}
.cpt-title-1 {
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
	margin-bottom: 5px;
}
.cpt-title-2 {
    font-size: 62%;
}
.crypto-container {
    position: relative;
    background: linear-gradient(90deg, rgba(7, 28, 45, 1) 0%, rgba(5, 22, 38, 1) 100%);
    border-radius: 15px;
    padding: 30px 30px;
}
.ctitle {
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
	margin-bottom: 15px;
}
.whycrypto-box {
    position: relative;
    display: inline-block;
    max-width: 280px;
    width: 100%;
    margin: 10px 5px;
    font-size: 13px;
}
.why-points-wrapper {
    text-align: center;
}
.whycimg {
    background: #041726;
    border: 2px solid #d9c372;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    padding: 3%;
    position: absolute;
    z-index: 1;
}
.whyinfo-inner {
    border: 2px solid #d9c372;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 110px;
    margin-left: 13%;
}
.whyinfo {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.why-cptitle {
    background: linear-gradient(90deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    color: #000;
    font-weight: 600;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 24%;
}
.whycap {
	background: url("../images/crypto/cp-bg.jpg")no-repeat right bottom;
	background-size: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    height: 100%;
    padding: 0 2% 3% 33%;
    font-size: 90%;
}
.cptick {
    position: absolute;
    right: 4%;
    bottom: 5%;
    max-width: 6%;
}
.cpdivier {
    border: 1px dashed #2b363d;
    margin: 30px 0;
}
.crpyto-video-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    height: 400px;
}
.faq-crypto-wrapper {
	position: relative;
}
.faq-crypto-card {
    margin-bottom: 15px;
}
button.faq-btn {
    background: #0b364d;
    border: none;
    font-size: 16px;
    color: #f8f8f8;
    width: 100%;
    text-align: left;
    padding: 5px 35px 5px 20px;
    height: 42px;
    border-radius: 8px;
    position: relative;
    line-height: 1;
    margin-bottom: -5px;
    z-index: 1;
}
button.faq-btn::after {
    content: '\f106';
    font-family: 'Font Awesome 7 Free';
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    color: #b9c2c8;
    right: 15px;
    top: 13px;
}
button.faq-btn.collapsed::after {
    color: #b9c2c8;
	transform: rotate(180deg);
}
.faq-body {
    background: #061e2b;
    color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px 20px;
    margin-top: 0px;
}
.faq-body a {
	color: #9cafc4;
}
.faq-body a:hover {
	color: #fff;
}

/** Promotion **/
.promo-sec {
    position: relative;
    padding: 30px 0;
}
.mix {
	display: none;
}
.filter-menu {
    position: relative;
    background: linear-gradient(90deg, rgba(5, 21, 36, 1) 0%, rgba(7, 27, 43, 1) 100%);
    border-radius: 12px;
    padding: 10px 10px;
    margin-bottom: 20px;
}
.pmbox {
    display: inline-block;
	cursor: pointer;
	margin: 0 2px 5px 0;
}
.pmbox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 28px;
    background: #2b363d;
    padding: 0 8px;
    border-radius: 8px;
    min-width: 110px;
}
.pmbox.active .pmbox-inner {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
.promo-content-area {
    position: relative;
    background: linear-gradient(90deg, rgba(5, 21, 36, 1) 0%, rgba(7, 27, 43, 1) 100%);
    border-radius: 12px;
    padding: 15px 10px;
	text-align: center;
}
.promo-bx {
    position: relative;
    max-width: 32%;
    margin: 10px 0.3%;
    text-align: left;
	vertical-align: top;
}
.promobox {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
	cursor: pointer;
}
.pm-img {
    overflow: hidden;
}
.pm-img img {
	transition: ease-in-out 0.3s;
}
.promobox:hover .pm-img img {
	transform: scale(1.07);
	transition: ease-in-out 0.3s;
}
.pm-detail-wrap {
	position: relative;
	background: #031018 url("../images/promo/pm-title-bg.jpg")no-repeat right bottom;
	background-size: cover;
	padding: 15px 15px;
}
.comtext {
    margin-bottom: 15px;
}
.sm-promo-title {
	background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-bottom: 5px;
}
.smpromo-caption {
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	font-size: 14px;
}
.more-info-wrap {
    padding: 5px 0;
    text-align: right;
}
button.pm-more-btn {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    height: 30px;
    padding: 3px 6px;
    min-width: 110px;
    border-radius: 9px;
    margin: 0 4px;
}
button.pm-more-btn:hover {
    filter: brightness(1.07);
    box-shadow: 0 0 10px -1px #ffed7d;
}

/** Download **/
.download-game-sec {
    position: relative;
    padding: 30px 0;
}
.download-wrapper {
    background: url(../images/download/dl-bg-frame.jpg) no-repeat right bottom;
    background-size: cover;
    padding: 20px 20px;
    border-radius: 12px;
}
.download-menu {
    position: relative;
    background: linear-gradient(90deg, rgba(5, 21, 36, 1) 0%, rgba(7, 27, 43, 1) 100%);
    border-radius: 12px;
    padding: 10px 10px;
    margin-bottom: 20px;
}
ul.nav.nav-download li {
	margin-right: 10px;
}
ul.nav.nav-download li.nav-item a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 28px;
    background: #2b363d;
    padding: 0 8px;
    border-radius: 8px;
    min-width: 150px;
}
ul.nav.nav-download li.nav-item a.nav-link.active {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
.download-list-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}
.download-box {
    display: inline-block;
    max-width: 480px;
}
.download-inner {
	display: grid;
	grid-template-columns: 40% auto;
	grid-gap: 10px;
}
.download-box {
	background: url("../images/download/dl-bg-img.jpg")no-repeat right center;
	background-size: cover;
    display: inline-block;
    max-width: 400px;
    overflow: hidden;
}
.download-box {
    display: inline-block;
    max-width: 400px;
    overflow: hidden;
    border-radius: 10px;
}
.download-inner {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 10px;
    position: relative;
}
.qrcode-img {
    padding: 10px 10px 10px 15px;
}
.qrcode-img img {
    max-height: 140px;
}
.dl-info {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1% 16% 20% 0;
}
button.dl-btn {
    position: absolute;
	right: 40px;
    bottom: 15px;
    background: #233749;
    color: #fff;
    border: 1px solid #fef382;
    height: 31px;
    min-width: 116px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1;
}
button.dl-btn:hover {
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
	border: none;
}
.os-wrap {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
    height: 25px;
    display: flex;
    align-items: center;
    padding: 0px 11px;
    font-weight: 500;
    position: absolute;
    right: 13px;
    bottom: -16px;
    transform: rotate(90deg);
    transform-origin: right center;
    width: 70%;
    font-size: 14px;
}
span.os-icon {
    background: #000;
    color: #f7e778;
    height: 18px;
    width: 18px;
    border-radius: 55%;
    font-size: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    rotate: -90deg;
    transform-origin: center;
}
/** Referral Page **/
.referral-sec {
    position: relative;
    padding: 30px 0;
}
.referral-title-wrap {
    text-align: center;
    font-size: 34px;
    padding-bottom: 20px;
    max-width: 680px;
    margin: 0 auto;
}
.referral-menu {
    text-align: center;
    padding: 5px 0 25px;
}
.rfitem {
    display: inline-block;
	margin: 0px 5px 8px;
}
button.refer-btn {
    background: #2b363d;
    color: #fff;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 500;
    height: 33px;
    min-width: 150px;
    display: flex;
    align-items: center;
}
button.refer-btn img {
    max-height: 22px;
    margin-right: 8px;
}
button.refer-btn.active, button.refer-btn:hover {
    background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
button.refer-btn.active img, button.refer-btn:hover img {
	filter: brightness(0) contrast(1);
}
.referral-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(7, 28, 45, 1) 0%, rgba(5, 22, 38, 1) 100%);
    border-radius: 15px;
    padding: 30px 30px;
}
.refer-link-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    margin: 0 auto;
    text-align: center;
}
.refer-input-wrap {
	position: relative;
}
input.refer-input {
    background: #041726;
    border: 1px solid #14587b;
    border-radius: 6px;
    height: 33px;
    width: 500px;
    color: #617789;
    padding: 0 10px;
    font-size: 14px;
}
button.ref-copy-btn {
    background: #041726;
    border: 1px solid #14587b;
    border-radius: 6px;
	height: 33px;
	width: 33px;
	color: #f3d671;
}
button.ref-copy-btn:hover {
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
}
.copy-toast {
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 9999;
}
.copy-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(-6px);
}
.refer-step-wrapper {
    position: relative;
    text-align: center;
	padding-top: 15px;
}
.refer-step-box {
    display: inline-block;
    max-width: 31%;
    position: relative;
    vertical-align: top;
    margin: 0 0.5% 30px;
}
.ref-img {
    position: relative;
    z-index: 1;
    margin: 0 auto -19%;
    text-align: center;
    max-width: 37%;
}
.ref-inner {
	background: url("../images/referral/stepbg.png")no-repeat right center;
	background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #efd57a;
}
.ref-bar {
    background: linear-gradient(180deg, rgba(207, 165, 70, 1) 0%, rgba(188, 140, 45, 1) 100%);
    height: 27px;
}
.ref-info {
    min-height: 160px;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15% 10px 10px;
}
.refno {
    color: #ffc300;
}
.ref-benefits {
    background: #14283c;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 30% 20% 20% 30%;
}
.refbnf-box {
    position: relative;
    border-right: 1px solid #c59939;
    text-align: center;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 500;
    font-size: 17px;
}
.refbnf-text {
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 110%;
    margin-bottom: 7px;
}
.refbnf-box:last-child {
	border-right: none;
}

/** Live Stream**/
.livestream-sec {
	position: relative;
	padding: 30px 0;
}
.stream-frame {
    position: relative;
    background: #061a29 url("../images/live-bg.jpg")no-repeat bottom center;
	background-size: 100%;
    border-radius: 15px;
    padding: 30px 30px;
}
.live-stream-container {
    display: grid;
    grid-template-columns: auto 315px;
    grid-gap: 10px;
    height: 474px;
}
.live-stream-container.active {
	grid-template-columns: auto;
	height: 600px;
}
.livechat-stream-box {
    border: 1px solid #233749;
    background: #04121b;
    overflow: hidden;
    border-radius: 12px;
}
.live-stream-container.active .livechat-stream-box {
	display: none;
}
.tnc-btn-wrap {
    padding: 25px 0;
    text-align: center;
}
button.live-tnc-btn {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
    height: 33px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    min-width: 160px;
}
button.live-tnc-btn:hover {
	filter: brightness(1.07);
    box-shadow: 0 0 10px -1px #ffed7d;
}
.wlist-wrapper {
    position: relative;
    background: #04121b;
    max-width: 790px;
    margin: 0 auto 20px;
    border-radius: 15px;
    border: 1px solid #fef281;
	overflow: hidden;
}
.wltitle-wrap {
    position: relative;
    border-bottom: 1px dashed #2b363d;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wl-title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
.wl-title.yellow {
	color: #ffc300;
}
.claim-wrap {
    font-size: 13px;
    color: #f9d967;
    text-align: right;
    display: flex;
    align-items: center;
}
.claim-wrap a {
	color: #fff;
}
.claim-wrap a:hover {
	color: #fff;
	text-decoration: underline;
}
.wsp-icon {
    color: #f9d967;
    font-size: 34px;
    margin-left: 10px;
}
.wlist-content {
	text-align: center;
	padding: 30px;
}
.winner-top {
	border-radius: 10px;
	background: #152d41;
	overflow: hidden;
}
.table-responsive.winner-list {
    max-height: 400px;
    overflow: auto;
}
.winner-top table.winner-table tr td {
	background: #233749;
    color: #fff;
    padding: 10px 5px;
    font-size: 18px;
}
.winner-list table.winner-table tr td {
	padding: 6px 5px;
	font-size: 16px;
	border-bottom: 3px solid #04121b;
}
.winner-list table.winner-table tr {
	background: #233749
}
.winner-list table.winner-table tr:nth-child(odd) {
	background: #071b26
}
.wbtn {
	cursor: pointer;
}
.wl-title.wbtn {
    padding: 15px 15px;
	border-bottom: 1px dashed #2b363d;
}
.wbtn::after {
    content: '\f13a';
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    color: #f9d967;
    right: 30px;
    top: 18px;
    transform: rotate(180deg);
    transition: 0.3s;
}
.wbtn.collapsed::after {
    content: '\f13a';
    font-family: 'Font Awesome 7 Free';
    transform: none;
    transition: 0.3s;
}
.table-responsive.winner-list::-webkit-scrollbar {
	width: 4px;
}
.table-responsive.winner-list::-webkit-scrollbar-track {
	background: #233749;
	border-radius: 15px;
}
.table-responsive.winner-list::-webkit-scrollbar-thumb {
	background: #ffc300;
	border-radius: 15px;
}
.table-responsive.winner-list::-webkit-scrollbar-thumb:hover {
	background: #ffc300;
}
button.hide-chat-btn {
	background: #fac462;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 17px;
    border-radius: 8px;
    text-transform: uppercase;
	margin: 5px 0;
}
/** Info Center pages **/
.about-sec {
	position: relative;
    padding: 30px 0;
}
.infopage-container {
    display: grid;
    grid-template-columns: 300px auto;
    grid-gap: 15px;
}
.info-content {
    background: linear-gradient(180deg, rgba(4, 32, 52, 1) 0%, rgba(2, 15, 25, 1) 100%);
    position: relative;
    padding: 20px 25px;
    border-radius: 12px;
}
ul.info-menu {
    background: #041624;
    position: relative;
    padding: 20px 20px;
    list-style-type: none;
	border-radius: 12px;
	margin: 0;
}
ul.info-menu li {
    margin-bottom: 8px;
}
ul.info-menu li:last-child {
    margin-bottom: 0;
}
ul.info-menu li a.infolink {
    background: #052237;
    display: flex;
    align-items: center;
    padding: 2px 15px;
    height: 45px;
    color: #fff;
	border-radius: 8px;
}
ul.info-menu li a.infolink.active, ul.info-menu li a.infolink:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
}
ul.info-menu li a.infolink img {
	height: 20px;
	margin-right: 10px;
}
ul.info-menu li a.infolink.active img, ul.info-menu li a.infolink:hover img {
	filter: contrast(1) brightness(0);
}
.info-title {
    font-size: 18px;
}
.info-divider {
    border: 1px dashed #2b363d;
    margin: 20px 0;
}
.info-content-inner {
    line-height: 1.3;
}
.contactbox {
    background: rgb(0,0,0,0.2);
    max-width: 180px;
    width: 100%;
    margin: 10px;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
}
.contactbox:hover {
	box-shadow: 0 0 12px -1px #ffed7d;
}
.ct-icon {
    font-size: 56px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.ct-detail {
    background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #0a1941;
    font-weight: 500;
    font-size: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-detail a {
    color: #0a1941;
}
.ct-icon img {
	max-height: 90px;
}
.tnc-card {
    margin-bottom: 7px;
}
button.btn-tnc {
    background: #0b364d;
	border: none;
	font-weight: 500;
    color: #ffe27f;
    width: 100%;
    text-align: left;
    padding: 5px 35px 5px 20px;
    height: 42px;
    border-radius: 8px;
	position: relative;
	line-height: 1;
}
button.btn-tnc.collapsed {
    background: #0b364d;
	color: #fff;
}
button.btn-tnc::after {
	content: '\f068';
	font-family: 'Font Awesome 7 Free';
    font-size: 14px;
	font-weight: 700;
	position: absolute;
	color: #a194100;
	right: 15px;
	top: 15px;
}
button.btn-tnc.collapsed::after {
	content: '\f067';
	font-family: 'Font Awesome 7 Free';
	font-weight: 700;
	color: #ffe27f;
}
.tnc-body {
    background: #061e2b;
    color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px 20px;
    margin-top: 0px;
}

/** VIP **/
.vip-sec {
	position: relative;
	padding: 30px 0;
}
.vip-player-info-wrapper {
	position: relative;
	background: url("../images/vip/vip-bn-bg.jpg")no-repeat center;
	background-size: cover;
	margin-bottom: 30px;
}
.vip-player-info-wrapper {
    position: relative;
    background: url(../images/vip/vip-bn-bg.jpg) no-repeat center right;
    background-size: cover;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    padding: 0 30px;
    display: flex;
    align-items: center;
}
.vip-trophy-img {
    position: absolute;
    right: 14%;
    bottom: -6%;
    max-width: 27%;
}
.vp-info-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 180px 100%;
    grid-gap: 30px;
    align-items: center;
}
.vipbp-img img {
    max-height: 185px;
}
.vpname-lvl {
    font-size: 22px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.lvltext {
    border: 1px solid #ffe27f;
    border-radius: 6px;
    padding: 2px 10px;
    margin-right: 15px;
}
.vip-rt {
    font-size: 95%;
}
.vprgress-wrap {
    position: relative;
    margin-top: 15px;
    font-size: 16px;
}
.yviptext {
    color: #f3d671;
    margin-bottom: 10px;
}
.pgrsbar {
    position: relative;
    background: #000;
    height: 5px;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px 0 10px;
}
.pgrs-inner {
    background: #be8e2f;
    height: 100%;
    border-radius: 10px;
}
.vip-lvl-frame {
    background: #061929;
    padding: 0 15px 20px;
    position: relative;
    border-radius: 15px;
    margin-top: 200px;
    max-height: 635px;
}
.vip-level-container {
    position: relative;
    display: grid;
    grid-template-columns: 19% 13% 13% 13% 13% 13% 13%;
    grid-gap: 0 0.5%;
    color: #f3d671;
    font-size: 14px;
    top: -150px;
}
.lvl-column {
	text-align: center;
	background: linear-gradient(180deg,rgba(2, 14, 24, 1) 0%, rgba(5, 32, 52, 1) 100%);
	border-radius: 15px;
}
.lvl-column.legend {
	text-align: left;
	background: none;
}
.lvl-column.active {
	background: linear-gradient(180deg,rgba(18, 73, 104, 1) 0%, rgba(5, 34, 55, 1) 100%);
}
.vpspace, .vptbox {
    height: 25px;
	margin-bottom: 5px;
	line-height: 1;
}
.empty-badge, .badge-col {
    height: 175px;
    margin-bottom: 5px;
    padding-top: 15px;
}
.lvltitle {
    margin-top: 10px;
}
.lvlbadge-img img {
    max-height: 125px;
}
.subvp-text {
    display: flex;
    align-items: center;
	height: 25px;
	margin-bottom: 10px;
	color: #fff;
}
.subvp-text img {
    max-height: 18px;
	margin-right: 5px;
}
.normal {
	color: #72baff;
}
.bronze {
	color: #c6bb9b;
}
.silver {
	color: #d3d3d3;
}
.gold {
	color: #fcb01e;
}
.platinum {
	color: #dbf3ff;
}
.diamond {
	color: #fff;
}
.faq-vip-wrapper button.faq-btn {
	display: flex;
	align-items: center;
	grid-gap: 10px;
}
.faq-vip-wrapper button.faq-btn img {
	max-height: 22px;
}
button.faq-btn.gold {
    background: linear-gradient(90deg,rgba(243, 214, 113, 1) 0%, rgba(188, 140, 45, 1) 100%);
    color: #000;
	font-weight: 500;
}
.vip-card-wrapper {
    position: relative;
    background: linear-gradient(270deg, rgba(18, 73, 104, 1) 0%, rgba(5, 34, 55, 1) 100%);
    display: grid;
    grid-template-columns: auto 135px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 45px;
    overflow: hidden;
    border-radius: 12px;
}
.vip-badge img {
    max-height: 140px;
}
.vip-lvl {
    border: 1px solid #ffe27f;
    border-radius: 6px;
    padding: 2px 10px;
    max-width: fit-content;
    font-size: 22px;
    font-weight: 500;
    background: #041e2f;
    margin-bottom: 15px;
}
.achieve-text {
    font-size: 16px;
}
.slider-vip .slick-prev:before {
	content: '\f104';
	font-family: 'Font Awesome 7 Free';
	font-weight: 700;
	opacity: 1;
	font-size: 18px;
}
.slider-vip .slick-next:before {
	content: '\f105';
	font-family: 'Font Awesome 7 Free';
	font-weight: 700;
	opacity: 1;
	font-size: 18px;
}
.slider-vip .slick-prev {
    z-index: 2;
    left: 0;
    height: 100%;
    background: #1d3345;
    border-radius: 12px 0 0 12px;
    width: 25px;
}
.slider-vip .slick-next {
    z-index: 2;
    right: 0;
    height: 100%;
    background: #1d3345;
    border-radius: 0 12px 12px 0;
    width: 25px;
}
.slider-vip .slick-prev:hover {
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
}
.slider-vip .slick-next:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
}
.vip-table-wrapper {
    background: linear-gradient(180deg, rgba(7, 27, 43, 1) 0%, rgba(6, 25, 41, 1) 100%);
    padding: 15px 15px;
    border-radius: 14px;
}
.vip-mobile-wrapper {
	margin-top: 15px;
}
table.vip-table tr td {
    color: #f3d671;
    padding: 5px 5px;
}
table.vip-table tr td.vpcag-title {
    color: #fff;
	padding: 8px 5px;
}
.vpcag-title img {
    display: inline-block;
    max-height: 18px;
    margin-right: 5px;
}
table.vip-table tr td:last-child{
    text-align: center;
}
.slidermain_vip, .vip-mobile-wrapper  {
	display: none;
}

/** Deposit **/
.deposit-sec {
	position: relative;
	padding: 30px 0;
}
.quick-menu-wrapper {
    padding-bottom: 15px;
    display: none;
}
.topmain-btn {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    text-align: center;
    grid-gap: 1%;
}
a.tpm-btn {
    background: #061e2b;
    color: #fff;
    display: block;
    text-align: center;
    font-size: 13px;
    border-radius: 10px;
    padding: 10px 0;
}
a.tpm-btn.active {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
}
a.tpm-btn img {
    margin-bottom: 4px;
	max-height: 30px;
}
a.tpm-btn.active img {
	filter: contrast(1) brightness(0);
}
.af-container {
    display: grid;
    grid-template-columns: 280px auto;
    grid-gap: 15px;
    position: relative;
}
.afmenu-box {
    background: #041624;
    border-radius: 20px;
    padding: 20px 20px;
	overflow: hidden;
}
ul.nav.afmenuside-nav {
	flex-direction: column;
}
ul.nav.afmenuside-nav li.nav-item {
	margin-bottom: 5px;
}
ul.nav.afmenuside-nav li.nav-item a.mslink {
	background: #052237;
    color: #fff;
    padding: 2px 15px;
    border-radius: 8px;
    font-size: 15px;
	font-weight: 500;
    height: 42px;
    display: flex;
    align-items: center;
    position: relative;
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active, ul.nav.afmenuside-nav li.nav-item a.mslink:hover {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active img, ul.nav.afmenuside-nav li.nav-item a.mslink:hover img {
	filter: brightness(0) contrast(1);
}
.afn-icon {
	margin-right: 15px;
}
.afn-icon img {
	max-height: 24px;
}
.deposit-note {
    background: #041624;
    border-radius: 20px;
    padding: 20px 20px;
    margin-top: 15px;
}
.important-note {
    margin-bottom: 10px;
}
.important-note .impicon {
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	margin-right: 5px;
}
.deposit-note ul {
    font-size: 12px;
    color: #c2c2c2;
	margin-bottom: 0;
}
.deposit-note ul li {
    padding: 2px 0;
}
.deposit-note.mobile {
	display: none;
	padding: 15px 0;
}

.afcolumn-right {
    position: relative;
}
.afinner {
	border-radius: 15px;
    overflow: hidden;
}
.mainwallet-wrap {
    background: url(../images/afbg-top.jpg) no-repeat center;
    background-size: cover;
    display: grid;
    grid-template-columns: 62% auto;
    padding: 20px 30px;
    grid-gap: 1%;
    border-radius: 14px;
	margin-bottom: 15px;
}
.mwbox1 {
    position: relative;
    display: grid;
    grid-template-columns: 120px auto;
    grid-gap: 15px;
}
.vip-level-box {
    text-align: center;
    line-height: 1.4;
}
.afvip-badge {
    margin-bottom: 5px;
}
.afvip-badge img {
    max-height: 110px;
}
.mwtext {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 5px 0;
    margin-bottom: 15px;
}
.mw-inner {
    display: flex;
    align-items: center;
}
.wallet-icon {
    margin-right: 5px;
}
.wallet-icon img {
    max-height: 18px;
}
button.restore-btn {
    background: #233749;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    margin: 0px 2px 0 10px;
    display: flex;
    align-items: center;
}
button.restore-btn img {
    max-height: 17px;
    margin-right: 5px;
}
button.restore-btn:hover {
	background: #fed560;
	color: #000;
}
button.restore-btn:hover img {
    filter: brightness(0) contrast(1);
}
.mwbalance {
    font-size: 34px;
	margin-bottom: 15px;
}
sup.crt-my {
    text-transform: uppercase;
    font-size: 50%;
    top: -0.8em;
    color: #f3d671;
}
button.reload-btn {
    border: none;
    font-size: 50%;
    color: #fed560;
    padding: 0;
    vertical-align: middle;
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
button.reload-btn:focus {
	transform: rotate(360deg);
	transition: 0.3s;
}
.mw-transfer {
    display: flex;
    align-items: center;
	margin-top: 5px;
}
.mwauto-text {
    color: #fed560;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.2;
}
.auto-switch-wrap {
    position: relative;
    margin: 0;
    display: flex;
}
.switch {
    position: relative;
    display: inline-block;
	width: 30px;
    height: 14px;
    vertical-align: -webkit-baseline-middle;
	margin: 0;
}
.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}
.sliderx {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #959595;
	-webkit-transition: .4s;
	transition: .4s;
}
.sliderx:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 1px;
    bottom: 0px;
    top: 0;
    margin: auto;
	background: linear-gradient(to bottom, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    -webkit-transition: .4s;
    transition: .4s;
	filter: drop-shadow(0px 0px 3px rgb(0, 0, 0, 0.5));
}
input:checked + .sliderx {
	background: #233749;
}
input:focus + .sliderx {
	box-shadow: 0 0 1px #959595;
}
input:checked + .sliderx:before {
	transform: translateX(15px);
}
.sliderx.round {
	border-radius: 40px;
}
.sliderx.round:before {
	border-radius: 50%;
}
.info-btn-wrapper {
    position: relative;
    margin-left: 2px;
}
button.auto-info-btn {
    background: none;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 7px;
    width: 15px;
    height: 15px;
    color: #fff;
    line-height: 0;
    margin: 3px;
    display: inline-block;
    vertical-align: middle;
}
button.auto-info-btn:hover {
	color: #f3d671;	
	border-color: #f3d671;
}
.info-how-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    background: rgb(0,0,0,0.85);
    color: #fff;
    padding: 7px;
    font-size: 12px;
    min-width: 205px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
	z-index: 3;
}
.iftitle {
	font-weight: 700;
	padding-bottom: 3px;
}
.info-btn-wrapper:hover .info-how-wrapper { 
	visibility: visible;
	opacity: 1;
	transition: 0.2s;
}
.frame-container {
	position: relative;
    background: linear-gradient(90deg, rgba(7, 28, 45, 1) 0%, rgba(5, 22, 38, 1) 100%);
    padding: 15px 20px;
    border-radius: 14px;
}
.af-submenu-wrap {
    padding: 5px 0 20px;
    border-bottom: 1px dashed #2b363d;
    margin-bottom: 20px;
	min-width: 170px;
}
.af-submenu-wrap.blnone {
    border: none;
	margin-bottom: 5px;
}
ul.submenu-nav li {
    margin: 0 3px 5px;
    min-width: 170px;
}
a.afsub-btn {
    background: #2b363d;
    color: #fff;
    border-radius: 8px;
    border: none;
    padding: 6px 15px;
	display: flex;
    align-items: center;
    text-align: center;
    font-size: 15px;
	width: 100%;
}
a.afsub-btn.active, a.afsub-btn:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	color: #000;
}
a.afsub-btn.active .aficon, a.afsub-btn:hover .aficon {
	filter: grayscale(1) brightness(0);
}
.aficon {
    margin-right: 12px;
}
.aficon img {
	max-height: 23px;
}
.afsub-btn.active .aficon img, .afsub-btn:hover .aficon img {
	filter: contrast(1) brightness(5);
}
.af-field-wrap {
    display: grid;
    grid-template-columns: 160px auto;
    grid-gap: 5px;
    margin-bottom: 10px;
}
.label-col {
    padding-top: 10px;
}
.redtext {
    color: #ffde00;
}
.af-field {
    position: relative;
}
input.afinput, select.afinput, textarea.afinput {
    background: #093758;
    color: #fff;
    border: none;
    height: 36px;
    padding: 4px 15px;
    border-radius: 8px;
	width: 100%;
}
input.afinput::placeholder {
	color: #c5c5c5;
}
.quick-amt-wrap {
    display: flex;
    align-items: center;
}
button.qamt-btm {
	background: #052237;
    color: #fff;
    border: none;
    font-size: 15px;
    width: 100%;
    border-radius: 8px;
    padding: 10px 5px;
    margin: 7px 5px 7px 0;
}
button.qamt-btm:hover {
    background: #093758;
}
.bank-depo-option.banking .bank-acct-btn img {
	max-height: 35px;
}
.afinput.upload {
	padding: 8px 15px;
}
.bank-pay {
    position: relative;
    cursor: pointer;
    margin-right: 5px;
    display: inline-block;
    max-width: 130px;
    width: 100%;
	vertical-align: text-top;
}
.input-hide input {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
}
.bank-acct-btn {
    position: relative;
    background: #052237;
    text-align: center;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    padding: 12px 5px;
    font-size: 13px;
}
.bank-acct-btn img {
    position: relative;
    max-height: 30px;
	margin-bottom: 5px;
}
.input-hide[type="radio"], .input-hide input[type="checkbox"] {
	appearance: none;
	display: none;
}
.input-hide .bank-pay input:active + .bank-acct-btn, .input-hide .bank-pay input:checked + .bank-acct-btn {
	background: #093758;
}
.bank-acct-btn.bnk {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    padding: 5px;
}
label.bank-acct-btn.bnk img {
	max-height: 30px;
	margin-right: 4px;
	margin-bottom: 0;
}
.banking .bank-acct-btn {
	font-size: 13px;
	color: #f8f8f8;
}
.banking .bank-acct-btn img {
	margin-bottom: 5px;
}
.greytext {
    color: #b3b3b3;
    font-size: 14px;
}
.agree-af-wrap {
    display: grid;
    grid-template-columns: 35px auto;
    padding: 15px 0;
}
.agree-depo {
    color: #a7a9ac;
    font-size: 13px;
    padding: 2px;
}
.agree-depo a {
    color: #fef281;
}
.af-field-submit {
    padding: 15px 0;
    text-align: center;
}
.how-depo-wrap {
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    margin-right: 20px;
    margin-bottom: 15px;
}
.how-depo-wrap a {
	color: #ccc;
}
.how-depo-wrap a i {
	color: #ccc;
}
.how-depo-wrap a:hover {
	color: #fde268;
}
.wbank-table {
    text-align: center;
    margin-bottom: 20px;
}
.transfrom-amt-wrapper {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    position: relative;
    grid-gap: 30px;
    padding: 15px 0px;
    max-width: 460px;
    margin: 0 auto;
}
.trans-card {
    background: #093758;
    border-radius: 10px;
    padding: 15px 20px 25px;
}
.tc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    padding-bottom: 10px;
}
button.max-btn {
    background:none;
    border: 1px solid #fff;
    color: #fff;
    padding: 1px 7px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
}
button.max-btn:hover {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
	color: #000;
	border-color: transparent;
}
.prod-amt-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
}
select.trans-input {
    background: none;
    color: #fff;
    border: none;
    width: 150px;
    padding: 0;
}
select.trans-input option {
	color: #000;
}
input.trans-input-1 {
    text-align: right;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}
input.trans-input-1.edit {
    padding-right: 25px;
}
input.trans-input-1::placeholder {
	color: #c5c5c5;
}
button.submit-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
	padding: 2px 15px;
    border-radius: 8px;
    font-size: 17px;
	font-weight: 500;
    height: 37px;
	min-width: 140px;
}
button.submit-btn:hover {
	filter: brightness(1.07);
    box-shadow: 0 0 10px -1px #ffed7d;
}
.pdatext {
    font-size: 12px;
    color: #607e8f;
    font-weight: 500;
}
.edit-icon {
    position: absolute;
    right: 0;
    top: 7px;
}
input.trans-input-1.locked {
	color: #607e8f;
}
.swap-icon {
    text-align: center;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
}
button.swap-btn {
	max-width: 50px;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}
button.swap-btn:hover {
	transform: scale(0.96);
	filter: brightness(1.07);
}
.trans-note {
    max-width: 450px;
    margin: 0 auto;
    border: 2px solid #c5c5c5;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 30px auto;
    color: #c5c5c5;
    padding: 15px;
	font-size: 13px;
}
button.balance-btn {
    background: #093758;
    color: #fff;
    border: none;
    padding: 15px 38px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    text-align: left;
    position: relative;
}
button.balance-btn::after {
	content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    color: #fff;
    right: 30px;
    top: 17px;
    transform: rotate(180deg);
    transition: 0.3s;
}
button.balance-btn.collapsed::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    transform: none;
    transition: 0.3s;
}
.balance-panel {
    background: #052237;
}
.all-balance-card {
	background: #052237;
    padding: 20px 30px;
}
.abtitle {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 9px;
}
.pvd-balance-wrapper {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 8px;
	padding-bottom: 10px;
}
.gtext {
    color: #fef281;
}
.prvdbox {
	width: 100%;
    background: #093758;
    padding: 15px 15px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
	max-width: 300px;
}
.pvb-col-1 {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
}
button.allin-btn {
    border: 1px solid #fff;
    color: #fff;
    background: none;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 2px 7px;
    margin-top: 6px;
}
button.allin-btn:hover {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
	color: #000;
	border: 1px solid #fff;
}
.pvb-col-2 {
    text-align: right;
    font-size: 18px;
}
.crcy-text {
    font-size: 80%;
}
.date-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.history-date-wrapper {
    display: flex;
    align-items: center;
}
.date-icon {
    position: absolute;
    left: 10px;
    top: 7px;
    color: #78848b;
    font-size: 20px;
}
.hsword {
    margin: 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #78848b;
}
input.afinput.history {
    padding-left: 40px;
	max-width: 170px;
}
button.submit-btn.history {
    margin-left: 10px;
}
.depo-divider {
    height: 1px;
    background: #42c14a;
    margin: 0 auto 15px;
    max-width: 95%;
}
.af-submenu-wrap.history ul.submenu-nav li {
    width: 15.5%;
	min-width: auto;
}
.af-submenu-wrap.history ul.submenu-nav li a.afsub-btn {
    padding: 10px 5px;
	justify-content: center;
}
.history-table-wrap {
	margin: 10px 0;
}
table.history-table {
	text-align: center;
	color: #f8f8f8;
	font-size: 14px;
}
table.history-table tr.hstop td {
	background: #093758;
	font-weight: 600;
}
table.history-table tr.hstop td:first-child {
	border-radius: 8px 0 0 8px;
}
table.history-table tr.hstop td:last-child {
	border-radius: 0 8px 8px 0;
}
table.history-table tr td {
	padding: 12px 1px;
}
span.pending-st {
    font-size: 13px;
    color: #08202f;
    background: #ff9600;
    padding: 1px 5px;
    border-radius: 6px;
}
span.success-st {
    font-size: 13px;
    color: #08202f;
    background: #49d166;
    padding: 1px 5px;
    border-radius: 6px;
}
span.fail-st {
    font-size: 13px;
    color: #08202f;
    background: #f05f5f;
    padding: 1px 5px;
    border-radius: 6px;
}
.paginiation-history {
    text-align: center;
    padding: 12px 0;
}  
button.page-arrow-btn {
    background: none;
    border: none;
    color: #fff;
}
button.page-arrow-btn:hover {
	color: #ffe27f;	
}
span.page-num-btn {
	letter-spacing: 1px;
	padding: 0 5px;
}
button.btncopy {
	background: none;
	border: none;
	padding: 0;
	color: #fff;
}
button.btncopy:hover {
	color: #ffe27f;	
}
.profile-top-wrapper {
    background: #052237;
    position: relative;
    padding: 20px 25px;
    border-radius: 10px;
	margin-bottom: 15px;
}
.pf-ftitle {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}
.pfrow {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.pfcol {
    padding-right: 20px;
}
.pfrow .pfcol:last-child {
	border: none;
	padding-left: 20px;
	padding-right: 0;
}
.pf-label {
    color: #a7a9ac;
    font-size: 15px;
    margin-bottom: 0;
}
.pfcol .af-field {
	margin-bottom: 5px;
}
input.profile-input {
    background: none;
    border: none;
    color: #fff;
	font-weight: 500;
    font-size: 17px;
    padding: 5px 0;
}
button.edit-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    z-index: 2;
    background: none;
    border: none;
    color: #94b6be;
}
button.edit-btn:hover {
    color: #fff;
}
.pfrow-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
	margin-bottom: 15px;
}
.pfcolumn {
    background: #052237;
    position: relative;
    padding: 20px 25px;
    border-radius: 10px;
}
.pw-note {
    color: #f8f8f8;
    padding: 5px 0;
}
.pw-btn-wrap {
	padding-top: 15px;
	text-align: center;
}
button.update-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    border: none;
    color: #000;
    font-size: 15px;
	font-weight: 500;
    border-radius: 8px;
    padding: 7px 15px;
    height: 37px;
}
button.update-btn:hover {
	filter: brightness(1.07);
    box-shadow: 0 0 10px -1px #ffed7d;
}
.crypto-note {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    background: #093758;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cytext {
    font-weight: 400;
    color: #c2c2c2;
}
.crypto-btn-wrap {
    display: grid;
    grid-template-columns: auto 75px;
    grid-gap: 10px;
	align-items: center;
}
input.crypto-input {
    background: #093758;
    height: 37px;
    color: #fff;
    border: none;
    padding: 2px 15px;
    border-radius: 8px;
}
button.update-btn.copy {
    padding: 5px;
}
.bank-profile-wrap {
	margin-top: 15px;
}
button.update-btn.add-bank {
    position: absolute;
    right: 25px;
    top: 13px;
}
.bank-pf {
    text-align: left;
	display: flex;
	align-items: center;
}
.bank-pf img {
    max-height: 35px;
}
.bank-profile-wrap table.history-table {
    font-size: 15px;
}
.pm-box {
    display: grid;
    grid-template-columns: 55% 35% 10%;
    text-align: center;
    color: #f8f8f8;
    padding: 12px 10px;
    border-bottom: 1px solid #093758;
    margin: 3px auto;
	cursor: pointer;
}
.pm-box.top-title {
    background: #093758;
    font-weight: 600;
    font-size: 17px;
    border-radius: 12px;
    max-width: 100%;
}
.mail-icon {
    position: relative;
}
.unread .mail-icon::after {
    content: '';
    background: #FF0004;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    right: -2px;
    top: 0px;
    z-index: 2;
}
.mtitle {
    display: grid;
    grid-template-columns: 26px auto;
    grid-gap: 15px;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: hidden;
}
.unread .mtitle {
	font-weight: 700;
}
button.delete-btn {
    background: none;
    color: #f8f8f8;
    border: none;
    padding: 2px;
}
button.delete-btn:hover {
	color: #fff1b6;
}
.rb-info {
    margin-left: 5px;
    color: #fed560;
	cursor: pointer;
}
.rb-info:hover {
	color: #fff;
}
.mbtext {
	white-space: nowrap;
    overflow: hidden;
	text-overflow: ellipsis;
}
.upload-box {
    display: grid;
	grid-template-columns: auto 120px;
	grid-gap: 10px;
}
input.upload-custom {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    height: 100%;
    cursor: pointer;
}
button.upload-btn {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 500;
	text-transform: uppercase;
    padding: 5px 15px;
	font-size: 15px;
}
.bank-info-depo {
    background: #093758;
    padding: 10px;
    max-width: 600px;
    margin-bottom: 30px;
    border-radius: 7px;
}
a.copy-icon {
    color: #fed560;
	background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    margin-left: 5px;
}
.subicon {
    margin-right: 10px;
}
.subicon img {
    max-width: 25px;
}
.msgnote {
    background: #ff0000;
    color: #fff;
    font-size: 10px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-left: 5px;
}

/** Reward Center **/
.player-reward-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}
.rwbox-info {
    background: linear-gradient(180deg, rgba(5, 33, 53, 1) 0%, rgba(14, 57, 82, 1) 100%);
}
.rwctitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #356380;
    margin: 0 -15px;
    padding: 10px 10px;
}
.rwctitle {
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 500;
}
.rwcimg {
    margin-right: 20px;
}
.rwcinfo {
    padding: 10px 25px;
}
.rwrow {
    margin-bottom: 10px;
}
.rwicon {
    background: linear-gradient(180deg, rgba(242, 213, 112, 1) 0%, rgba(189, 142, 47, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 7px;
}
.mw2balance {
    font-size: 24px;
}
.mw2balance button.reload-btn {
	font-size: 12px;
}
.wdr-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
button.wdr-btn {
    background: #041624;
    border: none;
    color: #fff;
    height: 35px;
    font-size: 13px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 6px;
}
button.wdr-btn img {
	max-height: 18px;
}
button.wdr-btn:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
button.wdr-btn:hover img {
	filter: contrast(1) brightness(0);
}
.rc-quickgame-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0px;
    text-align: center;
    margin: 15px -20px -20px;
    border-top: 1px dashed #273239;
}
a.rc-quickgame {
    display: block;
    color: #fff;
    font-size: 13px;
    padding: 15px 0;
}
a.rc-quickgame img {
    max-height: 30px;
    margin-bottom: 5px;
}
a.rc-quickgame:hover {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    color: #000;
}
a.rc-quickgame:hover img {
	filter: contrast(1) brightness(0);
}
.rcframe-container {
    position: relative;
    background: linear-gradient(0deg,rgba(2, 16, 26, 1) 0%, rgba(5, 32, 52, 1) 100%);
    border-radius: 14px;
	overflow: hidden;
}
.rwc-toptitle {
    border-bottom: 1px dashed #273239;
    padding: 13px 15px;
}
.rcframe-inner {
	position: relative;
	padding: 15px 20px;
}
.rwcbox-wrap {
    background: linear-gradient(0deg, rgba(6, 32, 51, 1) 0%, rgba(4, 23, 38, 1) 100%);
    padding: 15px 15px;
    border-radius: 15px;
	position: relative;
	margin: 10px 0;
}
.rwcbox-wrap.claimed {
	filter: grayscale(1);
	pointer-events: none;
}
.rwclaim-upper {
    display: grid;
    grid-template-columns: 320px auto;
    grid-gap: 10px;
}
.rwclaim-img {
    overflow: hidden;
    border-radius: 10px;
	margin-bottom: 5px;
}
.rwclaim-img img {
    object-fit: cover;
    height: 100%;
}
.rwclaim-info {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
}
.rwclaim-top {
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
}
.rwctext-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.rwctext-2 {
    color: #fed560;
    font-size: 90%;
}
.date-legend {
    font-size: 13px;
}
.date-legend i {
	margin-right: 5px;
	color: #e6cb63;
}
.claim-date-text {
    color: #fff;
	font-size: 14px;
    font-weight: 600;
    padding-top: 2px;
}
.rwclaim-btm {
    display: grid;
    grid-template-columns: auto 140px;
    grid-gap: 20px;
    margin-top: 5px;
}
.claim-requirement {
    background: #03121f;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
}
.claim-date {
    margin-bottom: 7px;
}
button.rw-claim-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 2px 5px;
    height: 37px;
    width: 100%;
    max-width: 140px;
}
button.rw-claim-btn:hover {
	background: #052237;
    color: #fff;
}
.reward-claim-info {
    position: absolute;
    right: 9px;
    top: 7px;
    z-index: 2;
}
button.claim-info {
    background: none;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 14px;
}
button.claim-info:hover {
	color: #ffe27f;
}
a.mslink.noticed::after {
    content: '!';
    background: #fd0007;
    height: 15px;
    width: 15px;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
}
.daily-turnover-wrap {
    overflow: hidden;
    padding: 2px;
    border-radius: 15px;
    position: relative;
    margin: 10px 0;
}
.dtinner {
    background: linear-gradient(0deg,rgba(6, 32, 51, 1) 0%, rgba(4, 23, 38, 1) 100%);
    border-radius: 14px;
    padding: 15px 15px;
    display: grid;
    grid-template-columns: 35% auto 150px;
    grid-gap: 15px;
}
.trw-img {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    max-height: 200px;
}
.trw-img img {
    object-fit: cover;
    height: 100%;
}
.torw-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	grid-gap: 10px;
	font-size: 17px;
    overflow: hidden;
}
.progress-turnover {
	font-size: 13px;
}
.progress-turnbar {
    background: #041624;
    height: 5px;
    overflow: hidden;
    border-radius: 25px;
    margin-top: 4px;
}
.curt-innerbar {
	background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
	height: 100%;
	border-radius: 25px;
}
.slots-rwclaim {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.slots-rwclaim .date-legend {
    font-size: 11px;
}
ul.cdtimer {
    list-style-type: none;
    margin: 0;
    font-size: 15px;
    display: flex;
	justify-content: center;
    line-height: 1.2;
    padding: 5px 2px;
}
ul.cdtimer li {
    margin: 0 4px;
    text-align: center;
}
ul.cdtimer li span {
    display: block;
    font-size: 140%;
}
button.rw-claim-btn.on-going {
    pointer-events: none;
    background: #08283a;
    color: #fff;
}
.mscliam-req {
    grid-column: 1 / 3;
}
ul.nav-rcgame {
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
}
ul.nav.nav-rcgame li.nav-item {
    width: 23%;
    margin: 0.5% 0.5%;
}
ul.nav.nav-rcgame a.nav-link {
    background: #051621;
    border: 1px solid #e6dd78;
    margin: 0 auto;
    height: 60px;
    border-radius: 8px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1.5px 7px rgb(0, 0, 0, 0.4);
}
ul.nav.nav-rcgame a.nav-link img {
    max-height: 50px;
}
ul.nav.nav-rcgame a.nav-link:hover {
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
}

/** Privilige Rewards **/
.privilege-sec {
	position: relative;
	padding: 30px 0;
	background: url("../images/privilege/privilege-bg.jpg")no-repeat top right;
	background-size: cover;
}
.privilege-reward-container {
	position: relative;
	margin: 0 auto 30px;
	overflow: hidden;
	border-radius: 10px;
}
.privilege-info {
    position: relative;
    background: #0b0c0b;
    text-align: center;
    margin: -3% auto 30px;
	padding: 0 0 20px;
}
.spin-detail {
    position: relative;
    max-width: 400px;
    margin: 0 auto 20px;
}
.spin-num {
    position: absolute;
    left: -2%;
    right: 0;
    top: 46%;
    font-size: 24px;
    font-weight: 500;
}
.pvdepo-wrap {
    font-size: 18px;
}
.priv-depo-wrap {
    background: #093758;
    display: grid;
    grid-template-columns: auto 160px;
    max-width: 500px;
    margin: 10px auto;
    height: 40px;
    border-radius: 7px;
    align-items: center;
    overflow: hidden;
    font-size: 16px;
}
button.pvdepo-btn {
    background: linear-gradient(to right, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    width: 100%;
    height: 40px;
    font-weight: 500;
    font-size: 110%;
}
button.pvdepo-btn:hover {
	background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
}
@media(max-width: 480px) {
.spin-detail {
    max-width: 70%;
}	
.spin-num {
    font-size: 4.5vw;
}
.pvdepo-wrap {
    font-size: 14px;
}	
.priv-depo-wrap {
    grid-template-columns: auto 130px;
    font-size: 14px;
}	
}

.privilege-bgimg {
    pointer-events: none;
}
.deco.rwhistory {
    right: 1%;
    top: 1%;
    max-width: 14%;
    z-index: 1;
	cursor: pointer;
}
.deco.title-privilage {
    text-align: center;
    left: 0;
    right: 0;
    top: 3%;
    max-width: 39%;
    margin: 0 auto;
}
.deco.boxes {
    left: 7%;
    top: 54%;
    max-width: 24%;
	pointer-events: none;
}
.deco.boss {
    left: 24%;
    top: 28%;
    max-width: 23%;
    z-index: 1;
	pointer-events: none;
}
.deco.car {
    left: 34%;
    top: 24%;
    max-width: 58%;
	pointer-events: none;
}
.deco.smoke {
    mix-blend-mode: color-dodge;
    left: 24.3%;
    top: 28%;
    max-width: 10%;
    z-index: 2;
	pointer-events: none;
}
.rwitem {
	position: absolute;
	cursor: pointer;
}
.rwitem.item-1 {
    left: 16%;
    top: 37%;
    max-width: 6%;
    z-index: 1;
}
.rwitem.item-2 {
    left: 9%;
    top: 61%;
    max-width: 25%;
    z-index: 2;
}
.rwitem.item-3 {
    left: 26%;
    top: 72%;
    max-width: 33%;
    z-index: 2;
}
.rwitem.item-4 {
    right: 12%;
    top: 74%;
    max-width: 27%;
    z-index: 2;
}
.rwitem.item-5 {
    right: 22%;
    top: 33%;
    max-width: 8%;
}
.rwitem:hover {
	filter: drop-shadow(0 0 2px #dda32b)  drop-shadow(0 0 6px #dda32b) brightness(1.1);
}
.arrw {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}
.rwitem:hover .arrw {
	opacity: 1;
	visibility: visible;
	transition: 0.2s;
}
@-webkit-keyframes arwshake {
0% {
	transform: translateX(-5px);
}
50% {
	transform: translateX(0);
}
100% {
	transform: translateX(-5px);
}
}
@-webkit-keyframes arwshake2 {
0% {
	transform: translateY(-5px);
}
50% {
	transform: translateY(0);
}
100% {
	transform: translateY(-5px);
}
}
.arrw.arrow-1 {
    left: -116%;
    top: 26%;
	max-width: 120%;
	animation: arwshake 1s ease-in-out infinite;
}
.arrw.arrow-2 {
    left: 0%;
    top: 60%;
    max-width: 29%;
    animation: arwshake 1s ease-in-out infinite;
}
.arrw.arrow-2 img {
	transform-origin: center;
    transform: rotate(321deg);
}
.arrw.arrow-3 {
    left: 0%;
    right: 0;
    top: -39%;
    max-width: 25%;
    margin: 0 auto;
    animation: arwshake2 1s ease-in-out infinite;
}	
.arrw.arrow-3 img {
    transform-origin: center;
    transform: rotate(65deg);
}
.arrw.arrow-4 {
    right: -11%;
    top: -25%;
    max-width: 30%;
    animation: arwshake 1s ease-in-out infinite;
}
.arrw.arrow-4 img {
    transform-origin: center;
    transform: rotate(124deg);
}
.arrw.arrow-5 {
    right: -77%;
    top: 19%;
    max-width: 100%;
    animation: arwshake 1s ease-in-out infinite;
}
.arrw.arrow-5 img {
    transform-origin: center;
    transform: rotate(136deg);
}

/** Legend Spin **/
.legend-body canvas.particles-js-canvas-el {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.legend-body {
	overflow: hidden;
}
.legendspin-sec {
	background: url("../images/legend-spin/bg.jpg")no-repeat top center;
	background-size: cover;
	position: relative;
	padding: 0 0 60px;
}
.legendspin-title {
    position: relative;
    max-width: 1270px;
    margin: 0 auto;
}
@-webkit-keyframes spark {
0% {
	transform: scale(0.2) rotate(0deg);
	opacity: 0.1;
}
50% {
	transform: scale(1) rotate(180deg);
	opacity: 1;
}
100% {
	transform: scale(0.2) rotate(360deg);
	opacity: 0.1;
}
}
.flare {
    position: absolute;
	pointer-events: none;
}
.flare.item-1 {
	left: 22%;
    top: 20%;
	max-width: 23%;
    mix-blend-mode: lighten;
	animation: spark 2.5s linear infinite;
}
.flare.item-2 {
    right: 19%;
    top: 26%;
    max-width: 23%;
    mix-blend-mode: lighten;
    animation: spark 2.5s linear infinite;
	animation-delay: 0.3s;
	opacity: 0;
}
.flare.item-3 {
    left: 43%;
    top: 47%;
    max-width: 23%;
    mix-blend-mode: lighten;
    animation: spark 3s linear infinite;
    animation-delay: 0.7s;
	opacity: 0;
}
.deco.magazine {
    left: 8%;
    bottom: 3%;
    max-width: 12%;
	animation: float 1.9s ease-in-out infinite;
}
.legend-step-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1060px;
    margin: 15px auto 30px;
}
.lg-countdown-wrapper {
    position: relative;
    text-align: center;
    max-width: 570px;
    margin: 0 auto;
}
.deco.bullet {
    left: -32%;
    top: 13%;
    max-width: 22%;
	animation: float 2s ease-in-out infinite;
}
.deco.gun {
    right: -31%;
    top: 4%;
    max-width: 21%;
	animation: float 2.2s ease-in-out infinite;
}
@-webkit-keyframes float {
0% {
	transform: translateY(-12px);
}
50% {
	transform: translateY(0);
}
100% {
	transform: translateY(-12px);
}
}

.title-round {
    margin-bottom: 10px;
}
.count-wrap {
    position: relative;
    max-width: 570px;
    margin: 0 auto;
}
.cdwrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 23%;
    max-width: 90%;
    margin: 0 auto;
}
ul.cdbox {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
    list-style-type: none;
}
ul.cdbox li {
    margin: 0;
    color: #f1cf8c;
    font-size: 60px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
ul.cdbox li .dtext {
    font-size: 30%;
    color: #818181;
}
.legend-prize-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    padding: 30px 0;
}
.prize-box {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 0 4%;
    max-width: 365px;
	margin: 0 auto;
    align-items: center;
}
.pz-detail {
    text-align: left;
    font-size: 18px;
}
.username {
    padding-bottom: 5px;
}
.turnover {
    font-size: 85%;
    color: #9c9c9c;
}
.ytext {
	color: #f3d671;
}
.crown-icon {
    margin-right: 8px;
    margin-bottom: 4px;
}
.crown-icon img {
    max-height: 14px;
}
@keyframes shine {
0% {
	left: -200%;
}
30% {
	left:-200%;
}
100% {
	left: 200%;
}
}
.pz-img {
    position: relative;
    overflow: hidden;
	border-radius: 50%;
}
.shine-wrap {
    position: absolute;
    width: 138px;
    height: 138px;
    top: 19%;
    left: 3%;
    overflow: hidden;
    border-radius: 50%;
}
.gold-shine {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    transform: skewX(20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 2.2s infinite;
    z-index: 1;
}
.gold-shine.badge2 {
	animation-delay: 0.5s;
}
.gold-shine.badge3 {
	animation-delay: 1s;
}
.legend-wlist-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 15px;
	background: #061e2b;
	border-radius: 12px;
	overflow: hidden;
}
table.winner-table {
    text-align: center;
}
table.winner-table.top tr td {
    background: linear-gradient(180deg, rgba(18, 72, 104, 1) 0%, rgba(5, 35, 57, 1) 100%);
    padding: 10px 1px;
	font-size: 16px;
}
table.winner-table.top tr td:first-child {
	border-radius: 12px 0 0 12px;
} 
table.winner-table.top tr td:last-child {
	border-radius: 0 12px 12px 0;
} 
.table-responsive.lswinner-list {
    background: linear-gradient(180deg, rgba(2, 15, 26, 1) 0%, rgba(5, 32, 52, 1) 100%);
    max-height: 400px;
    overflow: auto;
	padding: 10px 0;
}
.table-responsive.lswinner-list::-webkit-scrollbar {
	width: 4px;
}
.table-responsive.lswinner-list::-webkit-scrollbar-track {
	background: #233749;
	border-radius: 15px;
}
.table-responsive.lswinner-list::-webkit-scrollbar-thumb {
	background: #ffc300;
	border-radius: 15px;
}
.table-responsive.lswinner-list::-webkit-scrollbar-thumb:hover {
	background: #ffc300;
}
table.legend-winner-table {
	text-align: center;
}
table.legend-winner-table tr td {
	padding: 6px 1px;
	font-size: 16px;
}
table.legend-winner-table tr td:nth-last-child(2), table.legend-winner-table tr td:nth-last-child(1)  {
	color: #f3d671;
}
.legendwl-title {
	position: relative;
    background: #061e2b;
    height: 48px;
	font-size: 17px;
    display: flex;
    align-items: center;
    padding: 5px 15px;
    border-radius: 12px;
    cursor: pointer;
}
.legendwl-title img {
    max-height: 20px;
    margin-right: 6px;
}
.legendwl-title::after {
    content: '\f107';
    font-family: 'Font Awesome 7 Free';
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    color: #fff;
    right: 30px;
    top: 25%;
    transform: rotate(180deg);
    transition: 0.3s;
}
.legendwl-title.collapsed::after {
    content: '\f107';
    font-family: 'Font Awesome 7 Free';
    transform: none;
    transition: 0.3s;
}
.legend-wlist-content {
    position: relative;
    background: #061e2b;
}





/** Responsive **/
@media (max-width: 1100px) {
.body-container {
	display: block;
}	
.t-sidemenu {
	display: none;
}	
.t-body {
	padding-top: 55px;
}	
.mobile-btm-sec {
	display: block;
}
.header-sec, .body-container.active .header-sec {
	width: 100%;
}	
.header-container {
	height: 55px;
}	
.logo img {
	max-height: 52px;
}	
ul.nav.sidemenu-nav li a.smenu-item {
    font-size: 14px;
}
.footer-sec {
    padding: 30px 0 90px;
}
button.back-to-top {
    bottom: 80px;
    height: 35px;
    width: 35px;
    border-radius: 6px;
    font-size: 17px;
}
.footer-row {
    grid-template-columns: auto;
    grid-gap: 15px;
}
.mobile-btm-menu {
	display: block;
}
.regtitle {
    display: block;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}	
.lottery-result-wrapper {
	display: none;
}
.lottery-mobile {
	text-align: center;
	display: initial;
}
.slot-filter-wrap {
    flex-direction: column;
    grid-gap: 15px;
}			
ul.lt-wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 2px;
    border-bottom: 2px solid #ffe27f;
    padding: 0 2px;
	text-align: center;
}
.nav-tabs.lt-wrap .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
}
.nav-tabs.lt-wrap .nav-item.show .nav-link, .nav-tabs.lt-wrap .nav-link.active {
	color: #ffe27f;
	background-color: transparent;
}
li.lt-item {
    position: relative;
    padding-bottom: 22px;
}
ul.lt-wrap li a.active:after {
    content: "";
    color: #ffe27f;
    position: absolute;
    border-top: 0;
    border-right: 0.7em solid transparent;
    border-bottom: 0.7em solid;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}
.date-box {
    padding: 10px 0px;
    font-size: 15px;
    background: #182939;
    text-align: center;
}
.slots-lobby-container {
	padding: 20px;
	grid-template-columns: auto;
}	
a.spvdbox {
    display: inline-block;
    height: auto;
    width: 12.2%;
    text-align: center;
    font-size: 14px;
	padding: 8px 3px;
    border-right: 1px solid #0a2a45;
}	
a.spvdbox::after {
	content: '';
}
span.pdv-icon {
    margin: 0;
    display: block;
}
.slots-provider {
    white-space: nowrap;
    overflow: auto;
}	
.slots-provider::-webkit-scrollbar {
	display: none;
}
.all-balance-card {
    padding: 20px 15px;
    max-width: 800px;
    margin: 0 auto;
}	
.pfrow {
    grid-template-columns: auto;
}	
.pfcol {
    border-right: none;
    padding-right: 0;
}
.pfrow .pfcol:last-child {
    border: none;
    padding-left: 0;
    padding-right: 0;
}	
.catg-model img {
    max-height: 22vw;
}
.why-points-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.download-list-wrapper {
    grid-template-columns: repeat(2, 1fr);
}
.livechat-stream-box {
	height: 626px;
}	
.vip-lvl-frame {
    display: none;
}
.vip-trophy-img {
    display: none;
}
.slidermain_vip, .vip-mobile-wrapper  {
	display: block;
}
.register-wrapper {
    grid-template-columns: auto;
    border-radius: 15px;
}	
.quick-menu-wrapper {
	display: block;
}	
.af-container {
	display: block;
}
.afcolumn-left {
	display: none;
}	
.deposit-note.mobile {
	display: block;
	background: none;
}
.pfrow {
	grid-template-columns: auto;
}	
.pfrow .pfcol:last-child {
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.afcolumn-left.rwcenter {
	display: block;
	margin-bottom: 15px;
}
.rwcenter ul.nav.afmenuside-nav {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 5px;
}
.rwcenter ul.nav.afmenuside-nav li.nav-item a.mslink {
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 75px;
	font-size: 12px;
	text-align: center;
	border-radius: 10px;
	padding: 1px 3px;
}	
.afn-icon {
	margin: 0 auto 5px;
}
.arrw {
	opacity: 1;
	visibility: visible;
}
.recentlyplay .thumb-img {
    height: 22vw;
}	
}


@media (max-width: 991px) {
.category-wrapper {
    grid-template-columns: repeat(2, 1fr);
}	
.ctgy-column {
    grid-column: 1 / 3;
}
.pvd-list-wrapper {
    grid-template-columns: repeat(5, 1fr);
}		
.lotto-top-row {
    flex-direction: column;
}	
.crpyto-video-wrapper {
	grid-template-columns: auto;
	grid-gap: 30px;
	height: auto;
}
.live-stream-container {
	grid-template-columns: auto;
	height: auto;
}	
.live-video-box {
	height: 54vw;
}	
.infopage-container {
    grid-template-columns: auto;
}
ul.info-menu {
    text-align: center;
}	
ul.info-menu li {
	display: inline-block;
    width: 32%;
    margin-right: 0.5%;
	text-align: left;
	font-size: 14px;
}	

}

@media (max-width: 767px) {
.thumb-text {
    font-size: 12px;	
}
ul.nav-game.casino li.nav-item {
    margin: 0.6% 0.5%;
    width: 24%;
}	
a.spvdbox {
    width: 16.3%;
	font-size: 13px;	
}
.slots-container {
    grid-template-columns: repeat(4,1fr);
    grid-gap: 8px;
}
.slot-name {
    font-size: 12px;
}
.pvd-list-wrapper {
    grid-template-columns: repeat(4, 1fr);
}		
.crypto-top-title-wrap {
    font-size: 30px;
}
.crpyto-video-wrapper {
	grid-template-columns: auto;
	height: auto;
}
.crypto-vframe {
	height: 50vw;
}	
.promo-bx {
    max-width: 48%;
}
.download-list-wrapper {
	grid-template-columns: auto;
}
.refer-step-box {
    max-width: 48%;
    margin: 0 0.5% 30px;
}	
.ref-benefits {
    grid-template-columns: repeat(2, 1fr);
}	
.refbnf-box {
    border-bottom: 1px solid #c59939;
	font-size: 15px;
}	
.refbnf-box:nth-child(2) {
	border-right: none;
}	
.refbnf-box:nth-child(3), .refbnf-box:nth-child(4) { 
	border-bottom: none;
}
.refer-input-wrap {
    width: 85%;
}	
input.refer-input {
    width: 100%;
}
.stream-frame {
    padding: 20px 10px;
}	
.wltitle-wrap {
    display: block;
	padding: 15px 15px;
}
.wl-title {
	font-size: 20px;
}	
.claim-wrap {
	font-size: 13px;
	text-align: left;
	margin-top: 5px;
}	
.vip-player-info-wrapper {
    border-radius: 15px;
    height: auto;
    padding: 20px 20px;
	margin-bottom: 20px;
}	
.vp-info-wrap {
    grid-template-columns: 30% auto;
    grid-gap: 15px;
    width: 100%;
}
.vpname-lvl {
    font-size: 20px;
    margin-bottom: 6px;
}	
.vprgress-wrap {
	margin-top: 10px;
    font-size: 14px;
}
.yviptext {
    margin-bottom: 6px;
}	
.reg-banner-wrapper {
    grid-template-columns: auto;
}
.mainwallet-wrap {
    grid-template-columns: 70% auto;
    padding: 15px 15px;
}
.mwbox1 {
    grid-template-columns: 13vw auto;
}	
.mwbalance {
    font-size: 28px;
}	
.af-field-wrap {
	grid-template-columns: auto;
}
.date-form-wrapper {
	display: grid;
	grid-gap: 15px;
}	
.history-btn-wrap {
	text-align: center;
}
button.submit-btn.history {
    margin-left: 0;
}
.pfrow-2 {
	grid-template-columns: auto;
}	
.all-balance-card {
	max-width: 480px;
}
.pvd-balance-wrapper {
	grid-template-columns: repeat(2, 1fr);
}	
.pvb-col-1 {
	font-size: 13px;
}
.rwclaim-upper {
	grid-template-columns: 45% auto;
	grid-gap: 10px;
}	
.rwclaim-top {
	font-size: 18px;
}	
.rwctext-1 {
	-webkit-line-clamp: 2;
}	
.rwclaim-wrap {
	text-align: right;
}
.dtinner {
	padding: 15px 10px;
	display: grid;
	grid-template-columns: auto 125px;
	grid-gap: 10px;
}	
.trw-img {
	grid-column: 1 / 3;
	max-width: 480px;
	max-height: 220px;
}
.torw-content {
	font-size: 15px;
}	
button.rw-claim-btn {
	font-size: 14px;
	height: 30px;
}
ul.cdtimer {
    font-size: 13px;
}
ul.nav.nav-rcgame li.nav-item {
    margin: 1% 1%;
}	
ul.nav.nav-rcgame a.nav-link {
    padding: 0px 3%;
}	
.legend-prize-wrapper {
    grid-template-columns: auto;
}	
.deco.rwhistory {
    max-width: 24%;
}	
}

@media (max-width: 599px) {
ul.cdbox li {
    font-size: 10vw;
}
.recentlyplay .thumb-img {
	height: 37vw;
}	
.owl-carousel .owl-item .thumb-img.lotto img {
    max-height: 48px;
}	
}

@media (max-width: 480px) {
.header-user {
    height: 33px;
    font-size: 11px;
}	
.vipbadge img {
    max-height: 40px;
}
.user-bal {
    margin-right: 5px;
    font-size: 13px;
}	
.balamt {
    letter-spacing: 0.5px;
    font-size: 11px;
}	
a.bmenu-link {
    font-size: 11px;
}
.record-title-row {
    flex-direction: column;
    align-items: flex-start;
}
table.wdtable tr th {
    font-size: 13px;
}
table.wdtable tr td {
    padding: 8px 1px;
    font-size: 12px;
}
.ctgy-title {
    font-size: 14px;
}
.game-carousel-wrapper {
    padding: 15px 10px;
}	
.seo-wrapper {
    font-size: 12px;
}
button.playslot-btn {
    font-size: 13px;
    height: 30px;
    padding: 3px 5px;
    min-width: 90px;
    border-radius: 7px;
}
a.support-ft img {
    max-height: 80px;
}
.sminner {
    height: 35px;
    width: 35px;
    font-size: 18px;
}	
ul.nav.ftnav li.ftitem a {
    font-size: 13px;
}	
ul.nav.ftnav li.ftitem {
    margin-bottom: 8px;
}
.lisence-logo img {
    max-height: 27px;
}	
.ft-payment img {
    max-height: 30px;
}
.copyright-text {
    font-size: 12px;
}	
.home-slider-sec {
    padding: 20px 0 0px;
}	
.featured-category-sec {
    padding: 10px 0 20px;
}	
.game-carousel-wrapper {
    margin-bottom: 15px;
}	
.owl-theme.hotgames-slider .owl-nav {
    top: -20px;
}
button.gold-btn {
    font-size: 13px;
    height: 30px;
    padding: 3px 5px;
    min-width: 75px;
    border-radius: 7px;
    margin: 0 3px;
}
button.login-btn {
    font-size: 13px;
    height: 30px;
    padding: 3px 4px;
    min-width: 75px;
    border-radius: 7px;
    margin: 0px 3px;
}	
.catg-model {
    max-width: 64%;
    margin: 0 auto;
}	
.catg-model img {
	max-height: 27vw;
}	
.slots-lobby-container {
	padding: 15px 10px;
	border-radius: 10px;
}	
a.spvdbox {
    width: 24.5%;
	font-size: 12px;
}
.hot-slot {
    font-size: 10px;
    padding: 14px 2px 1px;
    right: -33px;
    top: -8px;
}
button.sfbtn {
    font-size: 13px;
    height: 30px;
    padding: 2px 8px;
    margin-bottom: 4px;
}	
ul.nav.cm-nav {
    justify-content: center;
}	
ul.nav.cm-nav li.cm-item {
    margin: 3px 0.5% 3px 0.5%;
    width: 32%;
}	
ul.nav.cm-nav li.cm-item a.cmlink {
    min-width: auto;
	font-size: 12px;
	line-height: 1;
}	
.slots-container {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px 10px;
}	
.pvd-list-wrapper {
    grid-template-columns: repeat(3, 1fr);
}
.lottery-container {
    padding: 15px 10px;
}	
.crypto-container {
    padding: 30px 15px;
}	
button.faq-btn {
	height: 47px;
	font-size: 14px;
	padding: 5px 35px 5px 15px;
}	
.faq-body {
    font-size: 14px;
}
.filter-menu {
    text-align: center;
}	
.promo-bx {
	max-width: 100%;
	margin: 10px 0;
}	
button.dl-btn {
    right: 20%;
    bottom: 10%;
    font-size: 3.3vw;
    height: 7vw;
    min-width: 26vw;
}
.download-wrapper {
    padding: 15px 10px;
}	
ul.nav.nav-download li {
    width: 48%;
    margin-right: 2%;
}
ul.nav.nav-download li:last-child {
	margin-right: 0;
}
ul.nav.nav-download li.nav-item a.nav-link {
    min-width: auto;
	padding: 0 2px;
}
.referral-title-wrap {
    font-size: 24px;
}	
.referral-wrapper {
    padding: 30px 15px;
}	
.refer-step-box {
	max-width: 100%;
	margin: 0 0.5% 20px;
}	
.ref-info {
    min-height: 140px;
    padding: 15% 10px 15px;
}
.refbnf-box {
	font-size: 14px;
}	
ul.info-menu {
    padding: 15px 10px;
}	
.info-content {
    padding: 20px 15px;
}
ul.info-menu li {
	font-size: 12px;
}	
ul.info-menu li a.infolink {
    padding: 2px 5px;
    height: 40px;
}	
ul.info-menu li a.infolink img {
    margin-right: 6px;
}
.info-content-inner {
    font-size: 14px;
}
.tnc-body {
    padding: 15px 10px;
}	
button.btn-tnc {
	padding: 5px 30px 5px 10px;
	font-size: 13px;
}	
.vip-table-wrapper {
    font-size: 14px;
}	
.vip-lvl {
    font-size: 18px;
}
.achieve-text {
    font-size: 13px;
}	
.vip-badge img {
    max-height: 100px;
}	
.vip-card-wrapper {
    grid-template-columns: auto 110px;
    padding: 15px 35px;
}
.slider-vip .slick-prev, .slider-vip .slick-next {
    width: 20px;
}	
.slider-vip .slick-prev:before, .slider-vip .slick-next:before {
    font-size: 14px;
}
.vpname-lvl {
	font-size: 18px;
}
.vip-player-info-wrapper {
	padding: 15px 20px;
}
.reg-left-column {
    padding: 20px 15px;
}	
.info-how-wrapper {
    left: auto;
    right: 0;
}
.mwbox1 {
	grid-template-columns: 15vw auto;
	grid-gap: 10px;
}
.vip-level-box {
    font-size: 13px;
}	
.mwtext {
    font-size: 12px;
    margin-bottom: 10px;
}	
.mwbalance {
	font-size: 20px;
	margin-bottom: 5px;
}	
.mwtext {
	font-size: 12px;
	margin-bottom: 5px;
	flex-direction: column;
	align-items: flex-start;
}	
button.restore-btn {
	padding: 4px 6px;
	font-size: 11px;
	margin: 5px 0 0;
}
a.tpm-btn {
    font-size: 10px;
    padding: 8px 0;
}
a.tpm-btn img {
    max-height: 25px;
}	
ul.submenu-nav li {
	min-width: auto;
    width: 47%;
    margin-right: 1%;
}	
a.afsub-btn {
    min-width: auto;
    padding: 6px 7px;	
	font-size: 14px;
}
.frame-container {
    padding: 15px 15px;
}	
.bank-pay {
	max-width: 31.5%;
	margin: 0 0.4%;
}	
.bank-acct-btn {
	padding: 8px 5px;
	font-size: 13px;
}	
.bank-acct-btn img {
	max-height: 25px;
	margin-bottom: 3px;
}	
table.bank-depo {
    font-size: 14px;
}
.af-submenu-wrap.history ul.submenu-nav li {
	width: 31%;
	min-width: auto;
}	
table.history-table {
	font-size: 13px;
}	
select.afinput.history {
	padding: 5px;
	font-size: 14px;
}	
.profile-top-wrapper, .pfcolumn {
	padding: 20px 15px;
}	
.bank-profile-wrap table.history-table {
	font-size: 13px;
}
.prvdbox {
	padding: 10px 10px;
}	
.pvb-col-2 {
	font-size: 15px;
}	
button.allin-btn {
	font-size: 13px;
	padding: 2px 6px;
}
.afmenu-box {
    padding: 15px 10px;
}	
.rcframe-inner {
    padding: 15px 10px;
}	
.rwclaim-upper {
	grid-template-columns: auto;
}	
.claim-requirement {
	font-size: 11px;
}
ul.nav.nav-rcgame a.nav-link {
    padding: 0px 2%;
    height: 45px;
}
.lstitle-img {
    height: 64vw;
    margin: 0 -10px;
}	
.lstitle-img img {
    object-fit: cover;
    height: 100%;
}	
.title-round {
    max-width: 85%;
    margin: 0 auto 10px;
}
table.winner-table.top tr td, table.legend-winner-table tr td {
    font-size: 14px;
}	
.legendwl-title {
    font-size: 15px;
}
.prize-box {
    grid-template-columns: 35% auto;
}
.prize-box {
	grid-template-columns: 150px auto;
}	
.shine-wrap {
    width: 140px;
    height: 140px;
}
.actext-1 {
    font-size: 20px;
}
.pmbox {
    width: 31%;
}	
.pmbox-inner {
    font-size: 13px;
}
.deco.rwhistory {
	max-width: 27%;
	top: 2%;
}	
.wl-title {
	font-size: 16px;
}	
.wlist-content {
    padding: 10px;
}
.winner-top table.winner-table tr td {
    font-size: 16px;
}	
.winner-list table.winner-table tr td {
    font-size: 15px;
}
.contactbox {
    max-width: 100%;
    width: 47%;
    margin: 10px 1%;
}	
form.reg-form {
    padding: 15px 0;
}
.choose-text {
    font-size: 15px;
}	
.game-option {
    font-size: 14px;
}
.pm-box {
    font-size: 13px;
	padding: 12px 5px;
}	
.mtitle {
    grid-gap: 10px;
}
.pm-box.top-title {
    font-size: 15px;
}
}

.login-error {
    color: #ff3333;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 51, 51, 0.1);
    border-radius: 5px;
    font-size: 14px;
}

.seo-top {
	position: relative;
	font-size: 15px;
}
.seo-top h1 {
    font-size: 150%;
}
.seo-top h2 {
    font-size: 130%;
}
.seo-top h3 {
    font-size: 120%;
}
.seo-top h4 {
    font-size: 100%;
}
.faq-sec {
    position: relative;
    padding: 15px 0 0;
}
h2.faq-title {
	font-size: 20px;
}
button.btn-tnc h3 {
	font-size: 15px;
	margin: 0;
}

@media(max-width: 480px) {
.seo-top {
    font-size: 13px;
}
}



/** Fifa Countdown **/
.fifa-cd-sec {
    padding-bottom: 10px;
}

.fifa-cd-container {
    background: url("../images/fifa/fifa-bg.png")no-repeat center;
    background-size: cover;
    overflow: hidden;
    border-radius: 14px;
}

.fifa-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /*height: 100%;*/
    color: #fff;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    max-width: 1000px;
}

#countdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fifalogo {
    width: 25%;
}

    .fifalogo img {
        max-height: 85px;
    }

.cdbox {
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 85px;
    height: 80px;
    line-height: 1.1;
}

.cd-dot {
    margin: 0px 2px;
    font-size: 40px;
    font-weight: 700;
}

.cdlegend {
    font-size: 32%;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
}

button.fifa-play {
    background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    box-shadow: 0 0 4px -1px #ffed7d;
    border: none;
    color: #0a1941;
    font-size: 18px;
    font-weight: 600;
    min-width: 135px;
    height: 40px;
    border-radius: 8px;
    text-transform: uppercase;
    padding: 5px 5px;
}

    button.fifa-play:hover {
        transform: scale(0.98);
        filter: brightness(1.08);
    }

.fifaplay-inner {
    background: linear-gradient(to left, rgba(248, 236, 127, 1) 0%, rgba(201, 158, 66, 1) 100%);
    box-shadow: 0 0 4px -1px #ffed7d;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-on-hover {
    border: none;
    outline: none;
    position: relative;
    z-index: 0;
    padding: 0 !important;
    overflow: visible !important;
}

    .glow-on-hover:before {
        content: '';
        background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 5px);
        height: calc(100% + 5px);
        animation: glowing 20s linear infinite;
        opacity: 1;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

@keyframes glowing {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 400% 0
    }

    100% {
        background-position: 0 0
    }
}

@media(max-width: 767px) {
    .fifa-cd-container {
        background: url("../images/fifa/fifa-mb-bg.png")no-repeat center;
        background-size: cover;
    }

    .cdbox {
        font-size: 6.4vw;
        width: 11vw;
        height: 10.6vw;
    }

    .cd-dot {
        margin: 0 0.3vw;
        font-size: 5.2vw;
    }

    button.fifa-play {
        font-size: 2.4vw;
        min-width: 17.5vw;
        height: 5.5vw;
        border-radius: 0.9vw;
    }

    .fifaplay-inner {
        border-radius: 0.9vw;
    }

    .fifa-cd-sec {
        padding-bottom: 0;
    }
}
















