@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: #fff;
    background: #062352;
}

a { text-decoration: none; cursor:pointer; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }

a:hover, a:focus, button:focus, button:hover, input:focus, select:focus { text-decoration: none; outline: none; }

img { max-width:100%;}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #fff;
    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: 999;box-shadow: 0 1px 4px rgb(0, 0, 0, 0.6);
    background: linear-gradient(180deg,rgba(8, 56, 115, 1) 0%, rgba(7, 36, 89, 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: 50px;
}
.header-wrap {
    display: flex;
    align-items: center;
}
button.login-btn {
    color: #fff;
    text-transform: uppercase;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
}
button.login-btn:hover {
    color: #d09c12;
}
button.gold-btn {
    background: linear-gradient(0deg, rgba(132, 80, 0, 1) 0%, rgba(152, 96, 3, 1) 20%, rgba(255, 183, 21, 1) 65%, rgba(255, 229, 106, 1) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 100px;
    height: 35px;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
}
button.gold-btn:hover {
	filter: brightness(1.07);
	transform: scale(0.98);
	box-shadow: 0 2px 1px rgb(0, 0, 0, 0.3);
}
.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;
}


/** Mobile Bottom Menu **/
.mobile-btm-sec {
    position: fixed;
	background: linear-gradient(180deg, rgba(8, 56, 115, 1) 0%, rgba(7, 36, 89, 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: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bmimg.rwc-img img {
    max-height: 55px;
}
.bmimg.rwc-img {
    margin: -27px auto -3px;
}


/** Side Menu **/
.t-sidemenu {
	position: relative;
    background: linear-gradient(90deg, rgba(8, 56, 115, 1) 0%, rgba(7, 36, 89, 1) 100%);
	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: 1px solid #fed560;
    box-shadow: 0px 2px 2px rgb(0, 0, 0, 0.3);
}
button.sidemenu-btn {
    position: relative;
    z-index: 99;
    background: none;
    max-width: 33px;
}
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;
}
.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: 17px;
    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: rgb(9,60,121,0.8);
	box-shadow: 0 0 4px rgb(0,0,0,0.15);
    flex-direction: column;
	overflow: hidden;
	border-radius: 10px;
	margin: 15px 0;
}
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: 16px;
    font-weight: 500;
    position: relative;
	text-transform: uppercase;
}
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: #d09c12;
}
.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: #bbb;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    padding: 5px 15px 5px 40px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}
.smenu-wrap a:hover {
	background: #d09c12;
	color: #fff;
}
.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 **/
.footer-sec {
    position: relative;
    background: #00143a;
    padding: 25px 0 5px;
}
.seo-wrapper {
	position: relative;
	overflow: hidden;
	font-size: 13px;
	max-height: 300px;
}
.seo-wrapper::after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 20, 58, 0) 0%, rgba(0, 20, 58, 1) 91%, rgba(0, 20, 58, 1) 100%);
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.readmore-seo {
    text-align: center;
    margin-top: -40px;
}
.seo-container.active .readmore-seo {
    margin-top: 0;
}
.seo-container.active .seo-wrapper {
	max-height: none;
}
.seo-container.active .seo-wrapper::after {
	content: none;
}
button.read-more {
    position: relative;
    min-width: 100px;
    background: #032967;
    height: 35px;
    border-radius: 7px;
    margin: 0 auto 0 8px;
    color: #fff;
    font-size: 14px;
    padding: 2px 10px;
}
button.read-more:hover {
	opacity: 0.6;
}
.seo-wrapper h1 {
	font-size: 17px;
	font-weight: 700;
}
.seo-wrapper h2 {
	font-size: 16px;
	font-weight: 700;
}
.seo-wrapper h3 {
	font-size: 15px;
	font-weight: 700;
}
.seo-wrapper h4 {
	font-size: 14px;
	font-weight: 500;
}
.seo-wrapper h5 {
	font-size: 13px;
	font-weight: 500;
}
.seo-wrapper a {
	color: #fff;
	text-decoration: underline;
}
.seo-wrapper a:hover {
	color: #fed560;
}
.footer-row-1 {
    position: relative;
    padding: 30px 0 25px;
    border-bottom: 1px solid #3b4b68;
}
.ft-title {
    font-size: 14px;
    margin-bottom: 5px;
    color: #aeaeae;
}
.ft-crypto img {
    max-width: 40px;
    margin: 5px 3px;
}
.ft-payment img {
    max-height: 25px;
    margin: 5px 3px;
}
.ft-social a {
	display: inline-block;
	margin: 0 5px;
}
.ft-social a img {
	max-height: 35px;
}
.footer-row-2 {
    padding: 20px 0;
    border-bottom: 1px solid #3b4b68;
}
.footer-link-wrap a {
    color: #d09c12;
    padding: 1px 12px;
    margin: 5px 0;
    display: inline-block;
    border-right: 1px solid #d09c12;
    line-height: 10px;
}
.footer-link-wrap a:last-child {
	border: none;
}
.footer-link-wrap a:hover {
	color: #fff;
}
.provider-logo-wrapper {
    position: relative;
    text-align: center;
    padding: 25px 0;
	border-bottom: 1px solid #3b4b68;
}
.provider-logo-wrapper img {
    max-width: 130px;
    max-height: 50px;
    margin: 5px 5px;
    filter: grayscale(1);
    mix-blend-mode: screen;
}
.provider-logo-wrapper img:hover {
	filter: grayscale(0);
    mix-blend-mode: normal;
}
.lisence-logo {
    padding: 25px 0;
    text-align: center;
}
.lisence-logo img {
    max-height: 40px;
    margin: 5px 10px;
}
.copyright-sec {
    background: #00091c;
    text-align: center;
    padding: 10px 0;
    color: #aeaeae;
    font-size: 13px;
}

/** Home **/
.t-body.home {
	background: url("../images/bg.jpg")no-repeat top center;
	background-size: cover;
}
.home-slider {
	position: relative;
    padding: 15px 0;
}
.desktop-slider {	
	overflow: hidden;
	border-radius: 15px;
}
.desktop-slider .carousel-control-next, .desktop-slider .carousel-control-prev {
    width: 5%;
}
.annoucement-sec {
    padding: 15px 0;
}
.annoucement-wrapper {
    display: grid;
    grid-template-columns: 30px auto;
    grid-gap: 15px;
    align-items: center;
    height: 30px;
    background: #06245a;
    padding: 0px 10px;
    border: 1px solid #f6cf5f;
    border-radius: 30px;
    font-size: 14px;
}
.speaker-icon img {
    max-height: 25px;
}
.how-step-sec {
	position: relative;
    padding: 30px 0 15px;
}
.step-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.stepbox {
    position: relative;
    background: #093c79;
    overflow: hidden;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 35% auto;
	align-items: center;
    grid-gap: 10px;
	height: 110px;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    padding: 12px 10px;
    box-shadow: 0 0px 12px rgb(0, 0, 0, 0.25);
}
.step-icon img {
    max-height: 80px;
    filter: drop-shadow(0px 2px 4px rgb(0, 0, 0, 0.4));
}
.step-text {
    font-size: 16px;
}
.sptext-1 {
    margin-bottom: 5px;
    font-weight: 500;
}
.sptext-2 {
    font-size: 85%;
    color: #c6c6c6;
}
.stepbox::after {
    content: '';
    width: 89px;
    height: 100px;
    position: absolute;
    right: -18px;
    bottom: -6px;
	pointer-events: none;
}
.stepbox.step1::after {
    content: '';
    background: url(../images/fade-1.png) no-repeat;
    background-size: 100%;
}
.stepbox.step2::after {
    content: '';
    background: url(../images/fade-2.png) no-repeat;
    background-size: 100%;
}
.stepbox.step3::after {
    content: '';
    background: url(../images/fade-3.png) no-repeat;
    background-size: 100%;
}
.stepbox.step4::after {
    content: '';
    background: url(../images/fade-4.png) no-repeat;
    background-size: 100%;
}
.stepbox.step2::before, .stepbox.step3::before, .stepbox.step4::before {
	content: '';
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent #031b42;
	transform: rotate(0deg);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.hotgames-sec {
    position: relative;
    padding: 15px 0 30px;
}
.hotgames-title {
    font-size: 20px;
	padding: 0 5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.hotgame-icon {
    margin-right: 10px;
}
.hotgame-icon img {
    max-height: 27px;
}
.hotgames-slider {
	margin-bottom: 5px;
}
.owl-theme.hotgames-slider .owl-nav {
    margin-top: 10px;
    position: absolute;
    right: 0;
    top: -14%;
}
.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: 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.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: 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.hotgames-slider .owl-nav button.owl-prev:hover, .owl-theme.hotgames-slider .owl-nav button.owl-next:hover {
	background: rgb(255,255,255,1);
	color: #00143a;
} 
.tumbox {
    position: relative;
    text-align: center;
}
.tumbox video {
	height: 100%;
    width: 100%;
	overflow: hidden;
	border-radius: 8px;
	object-fit: cover;
}
.tumbox img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    object-fit: cover;
}
.tmb-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7%;
    font-size: 15px;
}
.tmbtext-1 {
    text-transform: uppercase;
    font-weight: 500;
}
.seo-sec {
    position: relative;
    padding: 10px 0 30px;
}
.qnacard {
    background: #0f3a76;
    position: relative;
    margin-bottom: 5px;
    border-radius: 10px;
    border: 1px solid #03163a;
    font-size: 15px;
}
.qnabtn {
    cursor: pointer;
    position: relative;
	padding: 15px;
}
.qnabtn::after {
	content: '\f077';
	font-family: 'Font Awesome 5 Free';
    font-size: 14px;
	font-weight: 700;
	position: absolute;
	color: #fff;
	right: 15px;
	top: 18px;
}
.qnabtn.collapsed::after {
	content: '\f077';
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	transform: rotate(180deg);
	transform-origin: center;
}
.qnacard h1, .qnacard h2, .qnacard h3, .qnacard h4, .qnacard h5, .qnacard h6 {
	margin: 0;
}
.qnacard h1, .qnacard h2, .qnacard h3 {
	font-weight: 400;
	font-size: 18px;
}
.qna-body {
    padding: 15px;
    color: #bbb;
}
.qna-body ul, .qna-body ol {
	padding-left: 17px;
}
.qna-body a {
	color: #fff;
	text-decoration: underline;
}

/** 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: #062352;
}
.reg-left-column {
    padding: 20px;
}
.reg-right-column {
    background: #051b3f;
	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;
    color: #b3b3b3;
    font-size: 16px;
    background: #083169;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 8px 0 0 8px;
}
input.reg-input {
    background: #093c79;
    color: #fff;
    border: none;
    height: 40px;
    padding: 2px 15px 2px 50px;
    border-radius: 8px;
}
input.reg-input::placeholder {
	color: #b3b3b3;
}
.field-icon {
    position: absolute;
    right: 17px;
    top: 13px;
    font-size: 17px;
    cursor: pointer;
	color: #b3b3b3;
}
.reg-line {
    background: #535e76;
    height: 1px;
    width: 100%;
    margin: 0px 0 20px;
}
.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: #093c79;
}
.game-option:hover input ~ .checkmark {
	background-color: #093c79;
}
.game-option input:checked ~ .checkmark {
	background-color: #093c79;
}
.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(0deg, rgba(132, 80, 0, 1) 0%, rgba(152, 96, 3, 1) 20%, rgba(255, 183, 21, 1) 65%, rgba(255, 229, 106, 1) 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    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;
}
.greentext, .agree-text a {
    color: #ffd800;
}
.agree-text a:hover {
	color: #fff;
}
.fun-begin {
    padding: 0 5px;
}
.regtext-1 {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
}
ol.fun {
    padding: 10px 0 0px 17px;
	font-size: 17px;
}
ol.fun li {
	padding-bottom: 10px;
}
.reg-iframe-video {
    height: 350px;
}
.activate-wrapper {
    background: #062352;
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
	text-align: center;
}
.active-img {
	margin-bottom: 10px;
}
.actext-1 {
    color: #ffd800;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.btn-act {
    padding-top: 20px;
}
.btn-act button.login-btn:hover {
	background: #ffd800;
	color: #fff;
}
.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;
}


/** Info Pages **/
.t-body.info {
    background: url("../images/bg-info.jpg") no-repeat top center;
    background-size: cover;
	background-attachment: fixed;
}
.info-page-sec {
	position: relative;
	padding: 25px 0 30px;
}
.infopage-container {
    display: grid;
    grid-template-columns: 250px auto;
    grid-gap: 15px;
}
.info-menu-wrap {
    background: #062352;
    border-radius: 16px;
    padding: 15px;
	height: fit-content;
}
a.infolink {
    display: flex;
    align-items: center;
    height: 45px;
    color: #fff;
    font-size: 15px;
	font-weight: 500;
    padding: 5px 10px 5px 20px;
    margin: 5px 0;
    border-radius: 10px;
}
a.infolink.active, a.infolink:hover {
    background: linear-gradient(90deg,rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
}
.info-content {
	background: #062352;
    border-radius: 16px;
    padding: 30px;
}
.info-title {
    font-size: 24px;
    font-weight: 500;
    padding: 0 20px;
}
.info-divider {
    height: 2px;
    background: #0040a7;
    width: 100%;
    margin: 20px 0;
}
.info-content-inner {
    padding: 0 15px;
    line-height: 1.4;
    color: #fff;
}
ul.terms, ol.terms {
    padding-left: 17px;
}
table.banking-table tr td {
	background: #0f3a76;
	border: 1px solid #03163a;
	text-align: center;
	padding: 6px 2px;
}
table.banking-table tr th {
    font-weight: 500;
    background: #051b3f;
    padding: 6px 2px;
    border: 1px solid #03163a;
}
table.banking-table tr td.bktitle {
	background: #051a27;
}
.tnc-card {
    margin-bottom: 7px;
}
button.btn-tnc {
	position: relative;
    background:#d09c12;
	font-weight: 600;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 5px 35px 5px 20px;
    height: 42px;
    border-radius: 6px;
	position: relative;
	line-height: 1;
}
button.btn-tnc.collapsed {
    background: #0f3a76;
    color: #fff;
	font-weight: 500;
}
button.btn-tnc::after {
	content: '\f078';
	font-family: 'Font Awesome 5 Free';
    font-size: 14px;
	font-weight: 700;
	position: absolute;
	color: #fff;
	right: 15px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(180deg);
}
button.btn-tnc.collapsed::after {
	content: '\f078';
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	color: #fff;
	transform: rotate(0deg);
	transform-origin: center;
}
.tnc-body {
	padding: 10px;
}
.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;
}
.ct-icon {
    font-size: 50px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.ct-detail {
    background: #2b3248;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-detail a {
    color: #fff;
}
.ct-icon img {
	max-height: 90px;
}
.contactbox:hover .ct-detail {
    background: #42c14a;
}

/** Promotion **/
.promotion-sec {
	padding: 25px 0 30px;
	position: relative;
}
.filter-menu {
    background: #041838;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}
.pmbox {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
	font-weight: 500;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
}
.pmbox.active, .pmbox:hover {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
}
.mix {
	display: none;
}
.promo-bx {
	width: 100%;
	margin-bottom: 20px;
}
.promo-box {
    position: relative;
    display: grid;
    grid-template-columns: 550px auto;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0px 7px rgb(0, 0, 0, 0.65);
}
.pmbox-content {
    display: grid;
    grid-template-columns: auto 200px;
	align-items: center;
	background: #09347a;
	color: #fff;
}
.pm-desc {
    padding: 20px 25px;
}
.pmbox-title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 30px;
	color: #ffd800;
}
.pmbox-subtitle {
    font-size: 14px;
    height: 70px;
    overflow: hidden;
}
.pm-btn-wrap {
    padding-top: 10px;
}
button.promo-btn {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    border: 1px solid #fff1b6;
    color: #000;
	font-size: 14px;
    height: 33px;
    border-radius: 8px;
    min-width: 125px;
    padding: 2px 10px;
    text-transform: uppercase;
	margin-right: 5px;
}
button.promo-btn:hover {
	background: transparent;
    border: 1px solid #fff1b6;
    color: #fff1b6;
}
.expire-date {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 25px 15px;
    height: 100%;
	font-size: 14px;
}
.rmtime {
    color: #a7a9ac;
    padding: 5px 0;
}
.rmtime i {
	margin-right: 4px;
}
.exptime-cd {
    color: #fff;
	font-weight: 500;
}

/** VIP **/
.t-body.vip {
	background: #031a4c url("../images/bg-vip.jpg")no-repeat top center;
	background-size: 100%;
}
.vip-sec {
	padding-bottom: 30px;
	position: relative;
}
.vip-top-banner {
    position: relative;
    padding-top: 30px;
    height: 34vw;
    max-width: 1300px;
    margin: 0 auto;
}
.vip-top-base {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    max-width: 65%;
}
.vipcard-top {
    position: absolute;
    left: -3%;
    right: 0;
    top: 23%;
    margin: 0 auto;
    max-width: 29%;
    transform: rotateZ(352deg);
}
.vip-privilege {
    position: absolute;
    color: #fff;
    text-align: center;
    right: 13%;
    top: 15%;
	font-size: 18px;
}
.vptext-1 {
    font-size: 245%;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}
.vptext-2 {
    color: #fbc43f;
}
.vptext-current {
    font-size: 220%;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 15px;
}
.crt-row {
    margin: 20px auto 0;
}
.turnbox-wrap {
    overflow: hidden;
    border-radius: 10px;
    max-width: 200px;
    margin: 0 auto;
    border: 1px solid #f6cf5f;
}
.twbox-1 {
    background: #05214c;
    color: #fbc43f;
    font-size: 90%;
    padding: 3px 15px;
    line-height: 1;
    height: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.twbox-2 {
    background: #021333;
    color: #fff;
    padding: 3px 15px;
    line-height: 1;
    height: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slidermain_vip {
    position: relative;
    padding-bottom: 45px;
    max-width: 1100px;
    margin: -10% auto 0;
}
.slidermain_vip .slick-slide.slick-current.slick-active.slick-center >div {
	width: 120%!important;
    margin-left: -10%!important;
}
.slick-current .vip-card-wrapper {
    z-index: 9;
    transition: 0.3s;
    top: 0;
	filter: none;
}
.vip-card-wrapper {
	position: relative;
	margin: 0 6px;
	color: #fff;
	filter: blur(1.5px) brightness(0.7);
	max-width: 380px;
    margin: 0 auto;
}
.lock-status {
	background: url("../images/vip/lockbg.png")no-repeat;
	background-size: 100% 100%;
    color: #fff;
	max-width: 115px;
	height: 28px;
	margin: 0 auto;
    font-size: 14px;
	font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
    left: 0;
    right: 0;
    top: 67%;
}
.lock-icon {
    margin-right: 8px;
}
.vip-lvl {
    text-transform: uppercase;
    font-size: 193%;
    font-weight: 500;
}
.slick-current .vip-lvl {
	font-size: 200%;
}
.turnover-text {
    color: #fff;
	font-size: 14px;
}
.lvlbar-wrap {
    height: 5px;
    background: #041838;
    width: 91%;
    margin: 0 auto;
    border-radius: 25px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
}
.vip-next {
    position: absolute;
    left: 0;
    right: 0;
    top: 81%;
    display: grid;
    grid-template-columns: 45% auto;
    grid-gap: 5px;
    align-items: center;
    max-width: 93%;
    margin: 0 auto;
	font-size: 11px;
	line-height: 1;
	height: 37px;
}
.lvlbar-inner {
    height: 100%;
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    border-radius: 35px;
}
.lvlbar-wrap.completed .lvlbar-inner {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
}
.vip-badge {
    max-width: 91%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 4%;
}
.slick-slide.slick-active .vip-card-wrapper {
	transform: scale(0.9);
}
.slick-slide .vip-card-wrapper {
	transform: scale(0.9);
}
.slick-slide.slick-current .vip-card-wrapper {
	transform: scale(1);
}
.slidermain_vip .slick-prev:before {
	content:'\f137';
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
	font-weight: 700;
    line-height: 1;
    opacity: 1;
    color: #c5e0ff;
}
.slidermain_vip .slick-next:before {
	content:'\f138';
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
	font-weight: 700;
    line-height: 1;
    opacity: 1;
    color: #c5e0ff;
}
.how-vip {
    background: url(../images/vip/bg-model.png) no-repeat center;
    background-size: cover;
    border-radius: 20px;
    grid-gap: 20px;
    color: #fbc43f;
    display: grid;
    grid-template-columns: 340px auto;
    max-width: 1300px;
    width: 100%;
    margin: 110px auto 0px;
    align-items: center;
    padding: 15px 15px 0;
    font-size: 16px;
    border: 1px solid #af9a56;
}
.couple-vip {
	position: relative;
    margin-top: -36%;
}
.blink-img {
    position: absolute;
    right: -3%;
    top: 33%;
    max-width: 18%;
    mix-blend-mode: screen;
	transform-origin: center;
	animation: blink-shine 2s linear infinite;
}
@keyframes blink-shine {
    0% {
        transform: scale(0.2);
		opacity: 0;
    }
	40% {
        transform: rotate(90deg) scale(1);
		opacity: 1;
    }
	60% {
        transform: rotate(120deg) scale(1);
		opacity: 0.5;
    }
    100% {
        transform: rotate(180deg) scale(0.2);
		opacity: 0;
    }
}
.hvptitle {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 7px;
}
.vip-table-wrapper {
    background: #041a3e;
    margin-top: 45px;
    color: #fff;
    border: 1px solid #ae9a57;
    border-radius: 12px;
	padding: 20px 0;
}
table.vip-table tr td {
    padding: 8px 2px;
    text-align: center;
    color: #fbc43f;
    border-right: 1px solid #3b4b68;
}
table.vip-table tr td:last-child {
	border: none;
}
table.vip-table tr td:first-child {
	padding-left: 20px;
	text-align: left;
	color: #fbc43f;
	border: none;
}
table.vip-table tr td.whtext {
	color: #fff;
}
tr.tbrow {
	background: #031534;
}
.badgeimg {
    max-width: 110px;
	margin: 0 auto;
}
.vptxt {
    margin-top: 8px;
    text-transform: uppercase;
}
.normal {
	color: #acd0ae;
}
.silver {
	color: #d3d3d3;
}
.rosegold {
	color: #e4bb85;
}
.gold {
	color: #ffc63b;
}
.platinum {
	color: #88dcff;
}
.diamond {
	color: #9eaeff;
}
.pinkdiamond {
	color: #da9dff;
}
.vip-colm {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 30px;
	padding-top: 30px;
}
.vipcbox {
    position: relative;
    background: rgb(8,38,56,0.9);
    border-radius: 15px;
}
.vipcbox-inner {
    padding: 20px;
    color: #668f99;
}
.vptitle {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}
.vipcbox {
    position: relative;
}
.qtext {
    color: #ffe27f;
}
.uptext-1 {
    color: #969561;
    padding-bottom: 15px;
}
.vipcbox-inner.upgrade {
    width: 373px;
}
.vipgirl {
    position: absolute;
    right: -12%;
    top: 0;
    z-index: 0;
    max-width: 55%;
}
.vip-tnc {
    margin: 15px 0 0;
}
.vip-term-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
ul.terms {
	padding-left: 17px;
}
.vip-mobile-wrapper {
	display: none;	
}

/** Download **/
.t-body.download {
    background: url("../images/bg-download.jpg") no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
}
.download-sec {
    position: relative;
    padding: 15px 0 30px;
}
.dl-container {
    position: relative;
    display: grid;
    grid-template-columns: 38% auto;
}
.download-wrapper {
    position: relative;
    background: #062352;
    border-radius: 12px;
    padding: 30px 25px;
	margin-top: 45px;
}
ul.nav.nav-download {
    border-bottom: 1px solid #fff1b6;
    max-width: 100%;
	margin-bottom: 30px;
}
ul.nav.nav-download li.nav-item {
    margin-right: 10px;
}
ul.nav.nav-download li.nav-item:last-child {
	margin: 0;
}
ul.nav.nav-download li.nav-item a.nav-link {
    background: #041838;
    border: 1px solid #fff1b6;
	border-bottom: none;
    font-weight: 500;
    font-size: 17px;
    color: #ffe27f;
    min-width: 170px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    padding: 8px 15px;
}
ul.nav.nav-download li.nav-item a.nav-link i {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 5px;
	font-size: 20px;
}
ul.nav.nav-download li.nav-item a.nav-link.active {
    background: linear-gradient(to left, rgba(248,236,127,1) 0%, rgba(201,158,66,1) 100%);
    color: #0a1941;
}
ul.nav.nav-download li.nav-item a.nav-link.active i {
	background: none;
	-webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
    color: #000;
}
.download-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 170px;
    margin: 80px 5px 10px;
    background: #022762;
    border-radius: 10px;
	text-align: center;
}
.game-img {
    margin-top: -79px;
    margin-bottom: -15px;
}
.dl-qr {
    position: relative;
    max-width: 125px;
    margin: 0 auto;
}
.dl-qr img {
	max-height: 125px;
}
.device-os {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 14px;
}
.os-icon {
    margin-right: 3px;
}
.os-icon img {
    max-height: 25px;
}
button.download-btn {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    height: 40px;
    width: 100%;
    border: 1px solid #fff1b6;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 2px;
}
button.download-btn:hover {
	color:#ffe27f;
	border-color: #fff1b6;
	background: #041838;
}

/** Slots **/
.slots-sec {
	position: relative;
	padding-bottom: 30px;
}
.slots-top-banner {
    position: relative;
    max-width: 1250px;
    margin: 0 auto -2%;
}
.deco.slotdeco-1 {
    left: 39%;
    top: 24%;
    max-width: 3%;
    animation: 2.4s float ease-in-out infinite;
}
.deco.slotdeco-2 {
    right: 35%;
    top: 16%;
    max-width: 3%;
    animation: 2s float ease-in-out infinite;
}
.deco.slotdeco-3 {
    left: 26%;
    top: 77%;
    max-width: 5%;
    animation: 2.3s float infinite;
}
.deco.slotdeco-4 {
    right: 28%;
    top: 76%;
    max-width: 4%;
    animation: 2.2s float ease-in-out infinite;
}
@-webkit-keyframes zooming {
0% {
	transform: scale(1.1);
}

50% {
	transform: scale(1);
}

100% {
	transform: scale(1.1);
}
}
@-webkit-keyframes float {
0% {
	transform: translateY(0);
}

50% {
	transform: translateY(-15px);
}

100% {
	transform: translateY(0);
}
}
.lobby-btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 65%;
    text-align: center;
	z-index: 2;
}
button.globby-btn {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    height: 40px;
    min-width: 200px;
    border: 1px solid #fff1b6;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    padding: 3px 10px;
    box-shadow: 0px 2px 9px rgb(0, 0, 0, 0.5);
}
button.globby-btn:hover {
	color: #ffe27f;
    border-color: #fff1b6;
    background: #041838;
}
.slots-lobby-container {
    background: #062352;
    padding: 30px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 15px;
    position: relative;
	max-width: 1200px;
}
.slot-filter-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px;
}
.sf-btn-wrap {
    position: relative;
    background: #041838;
    border-radius: 7px;
}
button.sfbtn {
    background: #041838;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 10px;
    height: 35px;
    border-radius: 7px;
    min-width: 75px;
    position: relative;
}
button.sfbtn.active, button.sfbtn:hover {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
}
.slot-search-box {
    position: relative;
    background: #041838;
    border-radius: 7px;
    display: grid;
    grid-template-columns: auto auto;
    height: 33px;
    max-width: 185px;
}
input.slots-input {
    background: none;
    border: none;
    height: 33px;
    padding: 5px 10px;
    color: #fff;
    width: 160px;
}
button.slot-search-btn {
    background: none;
    border: none;
    color: #939393;
    padding: 5px;
}
input.slots-input::placeholder {
	color: #939393;
}
.slots-provider {
    background: #041838;
    border: 1px solid #d09c12;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: fit-content;
}
a.spvdbox {
    display: block;
    color: #fff;
    font-size: 15px;
	font-weight: 500;
    padding: 5px 4px 4px 20px;
    position: relative;
    overflow: hidden;
    height: 55px;
    display: flex;
    align-items: center;
}
a.spvdbox.active, a.spvdbox:hover {
	background: #d09c12;
	color: #fff;
}
a.spvdbox.active .pdv-icon img, a.spvdbox:hover .pdv-icon img {
	filter: brightness(10) grayscale(1);
}
a.spvdbox::after {
    content: '';
    width: 80%;
    margin: auto;
    height: 1px;
    background: #d09c12;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    z-index: 1;
}
.hot-slot {
    background: #fed560;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    width: 80px;
    padding: 17px 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;
}
.pdv-icon {
    margin-right: 8px;
}
.slots-container {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 10px;
}
.slotgbox {
    position: relative;
    max-width: 180px;
    margin: 0 auto;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
	padding: 0 0 10px;
}
.slot-tumbnail {
    overflow: hidden;
}
.slot-tumbnail img {
    object-fit: cover;
    width: 100%;
    height: 180px;
}
.slot-name {
    color: #fff;
    height: 50px;
    font-size: 14px;
    text-align: center;
    padding: 5px 5px;
    overflow: hidden;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rtp-pts {
    background: linear-gradient(270deg, rgba(162, 120, 8, 1) 0%, rgba(207, 155, 18, 1) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    max-width: 70px;
    margin: 0 auto;
    border-radius: 5px;
    padding: 1px 5px;
    box-shadow: 0 1px 5px rgb(0, 0, 0, 0.5);
}
.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;
}
.slotgbox:hover .play-hover {
	visibility: visible;
	opacity: 1;
	transition: 0.2s;
}
button.playslot-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
	font-weight: 500;
    min-width: 110px;
    padding: 7px;
    margin: 5px 0px;
    border-radius: 7px;
	transform: scale(0.3);
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
.slotgbox:hover .play-hover button.playslot-btn {
	transition: 0.2s;
	transform: scale(1);
	visibility: visible;
	opacity: 1;
}

/** Product Inner pages **/
.t-body.casino {
    background: #041d53 url("../images/bg-live.jpg") no-repeat top center;
    background-size: cover;
}
.game-sec {
	position: relative;
	text-align: center;
	padding: 0 0 30px;
}
.tab-content {
	position: relative;
}
.game-inner-wrap {
    display: grid;
    grid-template-columns: 45% auto;
    max-width: 900px;
    margin: 0 auto;
}
.spcolumn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.game-model-wrapper {
    position: relative;
    height: 426px;
    max-width: 350px;
    width: 100%;
}
.lcfloat {
	pointer-events: none;
	position: absolute;
}
.lcfloat.deco-1 {
    right: -3%;
    top: 29%;
    max-width: 22%;
    animation: float 2s ease-in-out infinite;
}
.lcfloat.deco-2 {
    left: -4%;
    top: 74%;
    max-width: 22%;
    animation: float 2.5s ease-in-out infinite;
    z-index: 2;
}
.lcfloat.deco-3 {
    right: -3%;
    top: 73%;
    max-width: 14%;
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}
.spimg {
    position: relative;
    z-index: 1;
}
.lc-modelbg {
    mix-blend-mode: screen;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6%;
}
.gameprvd-box {
    position: relative;
    z-index: 2;
	width: 100%;
    max-width: 400px;
    margin: auto;
    background: rgb(4, 24, 56, 0.7);
    border-radius: 12px;
    padding: 15px 30px 20px;
}
.pvdlogo img {
    max-height: 90px;
}
.gameprvd-text {
    font-size: 14px;
    padding: 10px 0 5px;
}
.play-btn-wrap {
    margin-top: 15px;
}
button.play-btn {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    min-width: 130px;
    height: 37px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 500;
}
button.play-btn:hover {
    background: #fed560;
}
.deco.smoke {
    left: 0;
    right: 0;
    bottom: -28%;
    pointer-events: none;
    max-width: 85%;
    margin: 0 auto;
}
ul.nav-game {
    justify-content: center;
    align-items: center;
	position: relative;
	z-index: 3;
	max-width: 1000px;
	margin: 0 auto;
}
ul.nav-game li.nav-item {
    margin: 7px 7px;
}
ul.nav-game li.nav-item a.nav-link {
    background: #041838;
    border: 1px solid #fff1b6;
    width: 180px;
    margin: 0 auto;
    height: 60px;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
	box-shadow: 0 1.5px 7px rgb(0,0,0,0.4);
}
ul.nav-game li.nav-item a.nav-link.active {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
}
img.acvimg {
	display: none;
}
ul.nav-game li.nav-item a.nav-link.active img.acvimg {
	display: initial;
}
ul.nav-game li.nav-item a.nav-link.active img.nmimg {
	display: none;
}
.t-body.fishing {
    background: #051e54 url("../images/bg-fishing.jpg") no-repeat top center;
    background-size: cover;
}
.lcfloat.fishdeco-1 {
    left: -11%;
    top: 23%;
    max-width: 22%;
    animation: float 2s ease-in-out infinite;
}
#fishContent .lc-modelbg {
    bottom: 13%;
}
#fishContent .game-model-wrapper {
   padding-top: 10px;
}
.t-body.fastgame {
    background: #051e54 url("../images/bg-fast-game.jpg") no-repeat top center;
    background-size: cover;
}
.lcfloat.fastdeco-1 {
    left: -11%;
    top: 53%;
    max-width: 22%;
    animation: float 2s ease-in-out infinite;
}
#fastgameContent .spimg {
    top: 7%;
}
.deco.cloud-fg {
    left: -27%;
    top: 17%;
    right: -40%;
    mix-blend-mode: screen;
    max-width: 170%;
}
.game-model-wrapper.fast-game {
    max-width: 400px;
    height: 370px;
}
.t-body.sports {
    background: #041f53 url("../images/bg-sports.jpg") no-repeat top center;
    background-size: cover;
}
.lcfloat.ball-1 {
    right: -4%;
    top: 63%;
	max-width: 26%;
	animation: float 2s ease-in-out infinite;
}
#sportsContent .game-inner-wrap {
    grid-template-columns: 50% auto;
}
#sportsContent .game-model-wrapper {
    max-width: 450px;
    height: 400px;
}
#sportsContent .spimg {
    top: 10%;
}

/** Lottery **/
.t-body.lottery {
    background: #031b4b url("../images/bg-lottery.jpg") no-repeat top center;
    background-size: cover;
}
/** Lottery Page **/
.lottery-sec {
    position: relative;
    padding: 30px 0;
}
.lottery-top {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 45%;
    grid-gap: 5%;
    align-items: center;
    justify-content: center;
}
.lottery-machine {
    position: relative;
    max-width: 378px;
    margin: 0 auto -21%;
    width: 100%;
}
.lottery-machine .deco {
	z-index: 3;
}
.deco.ltball-1 {
    left: 0;
    top: -4%;
    max-width: 13%;
	animation: float 2.4s ease-in-out infinite;
}
.deco.ltball-2 {
    left: -28%;
    top: 11%;
    max-width: 29%;
	animation: float 2.5s ease-in-out infinite;
}
.deco.ltball-3 {
    left: -19%;
    top: 54%;
    max-width: 25%;
	animation: float 2.3s ease-in-out infinite;
}
.deco.ltball-4 {
    right: 0;
    top: 3%;
    max-width: 18%;
	animation: float 2.6s ease-in-out infinite;
}
.deco.ltball-5 {
    right: -11%;
    top: 38%;
    max-width: 27%;
	animation: float 2.5s ease-in-out infinite;
}
.deco.ltball-6 {
    right: 17%;
    top: 59%;
    max-width: 26%;
	z-index: 3;
	animation: float 2.2s ease-in-out infinite;
}
.lotto-machine {
	position: relative;
	z-index: 1;
}
.deco.lotto-light-front {
    left: -39%;
    right: 0;
    top: -26%;
    width: 150%;
    mix-blend-mode: screen;
	z-index: 2;
}
.deco.lotto-light-back {
    left: -125%;
    right: 0;
    top: -7%;
    width: 340%;
    mix-blend-mode: screen;
}
.lotto-text-wrap {
    max-width: 400px;
    text-align: center;
    font-size: 18px;
    padding-bottom: 8%;
    position: relative;
    z-index: 4;
}
.lotto4d-title {
    font-size: 300%;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.lotto-sub {
    color: #fbc43f;
}
.lottery-btn-wrap {
	padding: 10px 0;
	text-align: center;
}
.lottery-btn-wrap.desktop {
	display: none;
}
button.lottery-btn {
	background: url("../images/lottery/btn.png")no-repeat;
	background-size: 100% 100%;
	width: 100%;
	max-width: 162px;
	height: 48px;
	margin: 5px 5px;
}
button.lottery-btn.active {
	background: url("../images/lottery/btn-active.png")no-repeat;
	background-size: 100% 100%;
}
button.lottery-btn.hs4d.active img {
	filter: contrast(0) brightness(10) drop-shadow(0 1px 3px rgb(0,0,0,0.9));
}
button.lottery-btn.active img {
	filter: drop-shadow(0 1px 3px rgb(0,0,0,0.7));
}
.lottery-container {
    background: #062352;
    padding: 20px;
    border-radius: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.lotto-btn-wrap {
    text-align: center;
}
button.lotto-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    border: 1px solid #fff1b5;
    width: 180px;
    color: #0a1941;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6px;
    height: 47px;
    padding: 5px;
    margin: 5px;
}
button.lotto-btn.guide {
	background: #041838;
	color: #fde268;
}
button.lotto-btn:hover {
	transform: scale(0.98);
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
	color: #0a1941;
}
.lotto-divider {
    background: #0040a7;
    height: 1px;
    margin: 15px auto;
	width: 100%;
}
.date-search-wrap {
    position: relative;
    max-width: 300px;
    margin: 20px auto;
}
input.date-input {
    background: #041838;
    color: #fff;
    border: none;
    height: 40px;
    padding: 4px 15px;
    border-radius: 8px;
    width: 80%;
}
button.search-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    border: 1px solid #fff1b5;
    border-radius: 8px;
    height: 40px;
    width: 45px;
	color: #0a1941;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
}
.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: #00102a;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #fff1b5;
    max-width: 350px;
    margin: 0 auto;
    color: #fff;
    width: 100%;
    text-align: center;
}
.lotto-top {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px;
	height: 55px;
}
.lotto-img img {
    max-height: 48px;
}
.lotto-title {
    text-align: right;
    font-size: 14px;
	font-weight: 500;
}
.lottitle-1 {
    font-size: 160%;
    font-weight: 600;
    text-transform: uppercase;
}
.lottitle-2 {
    border: 1px solid #000;
    border-radius: 5px;
    padding: 1px 5px;
    font-size: 87%;
    font-weight: 600;
    max-width: fit-content;
    margin: 0 0 0 auto;
}
table.rs-top tr th {
    color: #ffe27f;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 1px;
    border: 1px solid #f6cf5f;
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
table.rs-top tr td {
    background: #061935;
    font-size: 22px;
    font-weight: 500;
    padding: 5px 1px;
    border: 1px solid #f6cf5f;
    border-bottom: none;
}
table.rs-btm tr th {
    color: #ffe27f;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 1px;
    border: 1px solid #f6cf5f;
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
table.rs-btm tr td {
    background: #061935;
    padding: 10px 1px;
    border: 1px solid #f6cf5f;
    font-size: 16px;
    border-bottom: none;
}
.result-box table tr td:first-child, .result-box table tr th:first-child {
    border-left: none;
}
.result-box table tr td:last-child, .result-box table tr th:last-child {
    border-right: none;
}
.consol-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px 5px;
}
.lottery-mobile {
	display: none;
}
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;
}
ul.lt-wrap.huawei {
    grid-template-columns: repeat(9, 1fr);
}
.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: #041838;
    text-align: center;
}

/** Afterlogin Pages **/
.deposit-sec {
	position: relative;
	padding: 45px 0 30px;
}
.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: #062352;
    color: #fff;
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 0;
}
a.tpm-btn.active {
    background: #0d68ca;
}
a.tpm-btn img {
    margin-bottom: 4px;
	max-height: 30px;
}
a.tpm-btn.active img {
	filter: contrast(1) brightness(5);
}
.af-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px auto;
    grid-gap: 15px;
    position: relative;
}
.player-vip-box {
    background: #062352;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 15px;
}
.plyvip-inner {
    padding: 10px 0 0px;
    border-radius: 20px;
}
.vip-badge-img {
    max-width: 85%;
    margin: -30px auto 9px;
    position: relative;
}
.vip-badge-img img {
    filter: drop-shadow(0px 3px 5px rgb(0, 0, 0, 0.5));
}
.mblvl-text-1 {
    font-size: 14px;
}
a.info-vip {
    color: #fbdb00;
    margin: 0 5px;
}
.mblvl-text-2 {
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 0;
}
.afmenu-box {
    background: #062352;
    border-radius: 20px;
    padding: 20px 20px;
}
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 {
    color: #fff;
	font-weight: 500;
    padding: 2px 15px;
    border-radius: 8px;
    font-size: 16px;
    height: 42px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid transparent;
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active, ul.nav.afmenuside-nav li.nav-item a.mslink:hover {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    border: 1px solid #fff1b6;
}
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: #062352;
    border-radius: 20px;
    padding: 25px 20px;
    margin-top: 15px;
}
.important-note {
    margin-bottom: 10px;
}
.important-note i {
    color: #ffde00;
	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;
}
.af-submenu-box {
    position: relative;
    padding: 0 5px 0 35px;
    margin-top: 5px;
}
.af-submenu-box::before {
    content: '';
    background: #78848b;
    height: 100%;
    width: 2px;
    margin: auto;
    position: absolute;
    left: 21px;
    top: 0;
}
.af-submenu-box a {
    display: block;
    color: #fff;
    margin: 3px 0;
    padding: 10px 15px;
    border-radius: 8px;
}
.af-submenu-box a:hover, .af-submenu-box a.active {
	background: linear-gradient(to left, rgba(248,236,127,1) 0%, rgba(201,158,66,1) 100%);
	color: #0a1941;
}
.afcolumn-right {
    position: relative;
}
.afinner {
	border-radius: 20px;
    overflow: hidden;
}
.mainwallet-wrap {
    background: #01296b;
    display: grid;
    padding: 25px 30px;
    grid-template-columns: 48% 30% 20%;
    grid-gap: 1%;
    border: 1px solid #0b62ce;
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 0 10px #0b62ce;
}
.mwtext {
    color: #fed560;
    font-size: 15px;
    padding: 5px 0;
    height: 38px;
}
button.restore-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
	font-weight: 500;
	margin: 0 2px 0 10px;
}
button.restore-btn i {
    color: #000;
	margin-right: 5px;
}
button.restore-btn:hover {
	background: #fed560;
}
.info-restore {
    position: relative;
	cursor: pointer;
}
.info-wrap {
    position: absolute;
    color: #fff;
    width: 120px;
    background: rgb(0, 0, 0, 0.8);
    left: 105%;
    top: 0;
    font-size: 11px;
    padding: 6px;
    border-radius: 5px;
	opacity: 0;
	visibility: hidden;
}
.info-restore:hover .info-wrap {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
button.redeem-btn {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    border: 1px solid #fff1b6;
    border-radius: 8px;
    color: #000;
    padding: 4px 12px;
	font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
    vertical-align: middle;
}
button.redeem-btn:hover {
	background: #fed560;
}
.mwbalance {
    font-size: 38px;
    font-weight: 500;
}
sup.crt-my {
    text-transform: uppercase;
    font-size: 50%;
    top: -0.8em;
}
button.reload-btn {
    background: none;
    border: none;
    font-size: 21px;
    color: #fed560;
    padding: 0px 5px 7px;
    vertical-align: middle;
}
button.reload-btn:hover {
	color: #fff;
}
button.reload-btn:hover i {
	transform: rotate(180deg);
	transition: 0.3s;
}
.frame-container {
	position: relative;
    /*min-height: 1500px;*/
}
.aform-wrapper {
    background: #062352;
    padding: 15px 25px;
    height: 100%;
    color: #fff;
    border-radius: 0 0 20px 20px;
}
.aform-wrapper.trans {
    margin-bottom: 15px;
}
.af-submenu-wrap {
    padding: 5px 0 20px;
    border-bottom: 1px solid #0040a7;
    margin-bottom: 20px;
}
.af-submenu-wrap.blnone {
    border: none;
    margin-bottom: 5px;
}
a.afsub-btn {
    background: #093781;
    color: #fff;
    border-radius: 8px;
    border: none;
    padding: 6px 5px;
    margin: 0.5% 0.5% 0.5% 0;
    display: inline-block;
	min-width: 170px;
    text-align: center;
    font-size: 15px;
}
a.afsub-btn.active, a.afsub-btn:hover {
    background: #0d68ca;
}
.aficon {
    margin-right: 15px;
}
.aficon img {
	max-height: 25px;
}
.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: #032967;
    color: #fff;
    border: none;
    height: 40px;
    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: #093c79;
    color: #fff;
    border: none;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    border-radius: 8px;
    padding: 10px 5px;
    margin: 7px 5px 7px 0;
}
button.qamt-btm:hover {
    background: #0c5eb8;
}
.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: #09347a;
    text-align: center;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    padding: 12px 5px;
}
.bank-acct-btn img {
    position: relative;
    max-height: 30px;
}
.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: #0c5eb8;
}
.bank-acct-btn.bnk {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 5px;
    min-height: 50px;
}
label.bank-acct-btn.bnk img {
	max-height: 35px;
	margin-right: 10px;
}
.banking .bank-acct-btn {
	font-size: 13px;
	font-weight: 500;
	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: #fde268;
}
.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: #093781;
    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;
    font-weight: 600;
    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: 600;
}
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 {
	background: #fed560;
}
.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;
	max-width: 42px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
}
button.swap-btn {
    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: #093781;
    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: #062352;
}
.all-balance-card {
	background: #062352;
    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;
}
.prvdbox {
	width: 100%;
    background: #093781;
    padding: 15px 15px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
	max-width: 250px;
}
.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: #42c14a;
	color: #fff;
	border: 1px solid #42c14a;
}
.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 a.afsub-btn {
    min-width: 15.5%;
    font-size: 15px;
    padding: 10px 5px;
}
.history-table-wrap {
	margin: 10px 0;
}
table.history-table {
	text-align: center;
	color: #f8f8f8;
	font-size: 14px;
}
table.history-table tr.hstop td {
	background: #093781;
	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: 14px;
    font-weight: 500;
    color: #08202f;
    background: #ff9600;
    padding: 1px 5px;
    border-radius: 6px;
}
span.success-st {
    font-size: 14px;
    font-weight: 500;
    color: #08202f;
    background: #49d166;
    padding: 1px 5px;
    border-radius: 6px;
}
span.fail-st {
    font-size: 14px;
    font-weight: 500;
    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: #032967;
    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: #032967;
    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: 1px solid transparent;
    color: #000;
    font-size: 15px;
    border-radius: 8px;
    padding: 7px 15px;
    height: 37px;
}
button.update-btn:hover {
	background: #062352;
	border: 1px solid #fff1b6;
	color: #fff;
}
.crypto-note {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    background: #062352;
    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: #0147a2;
    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 img {
    max-height: 37px;
}
.bank-profile-wrap table.history-table tr.hstop td {
    background: #093781;
    font-weight: 600;
}
.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 #093781;
    margin: 3px auto;
	cursor: pointer;
}
.pm-box.top-title {
    background: #093781;
    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: #093781;
    padding: 10px;
    max-width: 600px;
    margin-bottom: 30px;
    border-radius: 7px;
}
a.copy-icon {
    color: #fed560;
    font-size: 15px;
    margin-left: 5px;
}
.subicon {
    margin-right: 10px;
}
.subicon img {
    max-width: 25px;
}
.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: 32px;
    height: 16px;
    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-color: #959595;
  -webkit-transition: .4s;
  transition: .4s;
}
.sliderx:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 3px;
    bottom: 0px;
    top: 0;
    margin: auto;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
	filter: drop-shadow(0px 0px 3px rgb(0, 0, 0, 0.5));
}
input:checked + .sliderx {
    background-color: #ffde00;
}
input:focus + .sliderx {
	box-shadow: 0 0 1px #959595;
}
input:checked + .sliderx:before {
	transform: translateX(13px);
}
.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: none;
    font-size: 14px;
    color: #fff;
    line-height: 0;
    margin: 3px;
    display: inline-block;
    vertical-align: middle;
}
button.auto-info-btn:hover {
	color: #ffde00;	
}
.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;
}
a.rwc-wrap {
    text-align: center;
    text-transform: uppercase;
    color: #fed560;
    font-size: 13px;
    font-weight: 600;
}
a.rwc-wrap:hover img {
	transform: scale(1.03);
	filter: brightness(1.07);
}
.rwiconimg {
	max-width: 80px;
	margin: 0 auto 5px;
}
.rwiconimg img {
	max-height: 80px;
}

/** Reward Center Updated **/
.player-reward-box {
    background: #062352;
    border-radius: 20px;
    text-align: center;
    padding: 10px 15px 20px;
    margin-bottom: 15px;
}
.rwctitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 12px;
    border-bottom: 1px solid #2b3248;
    padding-bottom: 12px;
}
.rwcimg {
    max-width: 90px;
    margin: -25px 15px 0 0;
}
.rwctitle {
    font-size: 24px;
    color: #fed560;
    font-weight: 700;
    text-transform: uppercase;
}
button.wdr-btn {
    border: 1px solid #fed560;
    border-radius: 45px;
    color: #fff;
    height: 32px;
    padding: 2px 4px;
    font-size: 13px;
    margin: 0 0.5%;
    width: 48%;
}
button.wdr-btn i {
    color: #fed560;
    margin-right: 5px;
}
button.wdr-btn:hover {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
	color: #000;
}
button.wdr-btn:hover i {
	color: #000;
}
.rwcinfo {
    text-align: left;
    padding: 0 10px 10px;
}
.rwrow {
    display: flex;
    align-items: center;
    grid-gap: 0 10px;
    margin: 5px 0 10px;
}
.rwicon {
	color: #fed560;
}	
.mw2balance {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.mw2balance button.reload-btn {
    font-size: 18px;
    padding: 0px 0px 3px;
    margin-left: 5px;
}
.rc-quickgame-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
	margin-top: 2px;
}
.rc-quickgame {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 11px;
    background: #09347a;
    border-radius: 10px;
    padding: 5px 2px;
    vertical-align: text-top;
	cursor: pointer;
}
.rc-quickgame img {
	max-width: 40px;
}
.rc-quickgame a {
	display: block;
}
.rcgtext {
    margin-top: 5px;
    color: #fff;
}
.rc-quickgame:hover {
    background: #0d68ca;
}
.rc-quickgame:hover .rcgtext {
	color: #fff;
}
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;
}
.rwc-toptitle {
    font-size: 22px;
    font-weight: 700;
	color: #fff;
    margin-bottom: 20px;
}
.rwcbox-wrap {
    background: #09347a;
    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: 360px auto;
    grid-gap: 10px;
}
.rwclaim-img {
    height: 125px;
    overflow: hidden;
    max-width: 360px;
}
.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 {
    color: #a7a9ac;
    font-size: 13px;
}
.date-legend i {
	margin-right: 5px;
}
.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 {
    font-size: 12px;
    color: #a7a9ac;
    padding: 5px 0px;
}
.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: 1px solid #fff1b6;
    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: transparent;
    border: 1px solid #fff1b6;
    color: #fff1b6;
}
.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;
}
ul.nav.nav-game.rwcenter li.nav-item {
    width: 23%;
    margin: 1% 1%;
}
ul.nav.nav-game.rwcenter a.nav-link {
    padding: 5px 15px;
    width: auto;
}
ul.nav.nav-game.rwcenter a.nav-link img {
	max-height: 50px;
}
ul.nav.nav-game.rwcenter a.nav-link:hover {
    background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
}
ul.nav.nav-game.rwcenter a.nav-link:hover img {
	filter: drop-shadow(0 2px 1px rgb(0,0,0,0.7));
}
.daily-turnover-wrap {
    overflow: hidden;
    padding: 2px;
    border-radius: 15px;
    position: relative;
    margin: 10px 0;
}
.dtinner {
    background: #09347a;
    border-radius: 14px;
    padding: 15px 15px;
    display: grid;
    grid-template-columns: 35% auto 140px;
    grid-gap: 15px;
}
.torw-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	grid-gap: 10px;
	padding: 5px 0;
	font-size: 20px;
    font-weight: 600;
    overflow: hidden;
}
.progress-turnover {
	text-align: center;
	font-size: 14px;
}
.progress-turnbar {
    background: #062352;
    height: 9px;
    overflow: hidden;
    border-radius: 25px;
    margin-top: 2px;
}
.curt-innerbar {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 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: 12px;
    display: flex;
    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: none;
    color: #fff1b6;
	border-color: #fff1b6;
}







/** Responsive **/
@media(max-width: 1100px) {
.body-container {
	display: block;
}	
.mobile-btm-sec {
	display: block;
}	
.t-sidemenu {
	display: none;
}
.t-body {
    padding-top: 55px;
}
.header-sec, .body-container.active .header-sec {
	width: 100%;
}	
.header-container {
	height: 55px;
}	
.logo img {
	max-height: 35px;
}
button.login-btn {
    font-size: 15px;
	padding: 5px 10px;
}	
button.gold-btn {
    font-size: 14px;
    min-width: 85px;
    height: 32px;
}	
.hdaf-1 {
    display: none;
}
button.gold-btn.depo, .hduser-icon {
    display: none;
}
button.gold-btn.mobile-depo {
    display: block;
}	
.annoucement-sec {
    padding: 0;
}
.how-step-sec {
    padding: 15px 0 15px;
}	
.step-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.stepbox {
	max-width: 100%;
}	
.step-icon {
    text-align: center;
}	
.hgrow2 {
	margin-top: 40px;
}	
.owl-theme.hotgames-slider .owl-nav {
    top: -9%;
}	
.annoucement-wrapper {
	height: 25px;
	font-size: 12px;
}	
.annoucement-wrapper {
    grid-template-columns: 25px auto;
    grid-gap: 5px;	
}
.speaker-icon img {
    max-height: 20px;
}	
.copyright-sec {
	padding: 10px 0 90px;
}	
.infopage-container {
	grid-template-columns: auto;
}
.info-menu-wrap {
	display: none;
}
.info-content {
	padding: 30px 15px;
}	
.promo-box {
    grid-template-columns: auto;
    max-width: 850px;
    margin: 0 auto;
}
.pmbox-content {
    display: block;
}
.pm-desc {
    padding: 15px 15px 5px;
}	
.expire-date {
    padding: 10px 15px;
    height: auto;
    text-align: left;
    justify-content: space-between;
    flex-direction: row;
}
.how-vip, .vip-table-wrapper {
    display: none;
}	
.vip-top-banner {
    height: 450px;
}	
.vip-mobile-wrapper {
	display: block;
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
}
.vip-mobile-wrapper .slick-slide {
    padding: 0 5px;
}
.slidermain_vip {
    padding-bottom: 0;
}
.vip-table-wrapper{
    margin-top: 25px;
    padding: 10px 0;
}	
.slots-lobby-container {
	padding: 15px;
	grid-template-columns: auto;
}	
.slots-provider {
	white-space: nowrap;
	overflow: auto;
}	
a.spvdbox {
	display: inline-block;
	height: auto;
	width: 12.2%;
	text-align: center;
	font-size: 14px;
	padding: 5px;
}	
a.spvdbox::after {
    content: none;
}	
.pdv-icon {
    margin: 0;
    display: block;
}		
ul.nav-game li.nav-item {
	margin: 0.7% 0.5%;
	width: 23%;
}
ul.nav-game li.nav-item a.nav-link {
	width: 100%;
}		
.lottery-result-wrapper {
	display: none;
}
.lottery-mobile {
	text-align: center;
	display: initial;
}	
table.rs-btm tr td {
    border-bottom: 1px solid #f6cf5f;
}
.deposit-sec {
    position: relative;
    padding: 15px 0 30px;
}	
.quick-menu-wrapper {
	display: block;
}
.af-container {
	display: block;
}
.afcolumn-left {
	display: none;
}	
.deposit-note.mobile {
	display: block;
	background: none;
}	
.mainwallet-wrap {
	padding: 25px 35px;
	grid-template-columns: 54% 45%;
}	
.mwbox-rc {
	display: none;
}
.mwbalance {
	font-size: 28px;
}	
.mwtext {
	font-size: 14px;
}
.mwauto-text {
	font-size: 13px;
}
.pfrow {
	grid-template-columns: auto;
}	
.pfrow .pfcol:last-child {
	border: none;
	padding-left: 0;
	padding-right: 0;
}	
.all-balance-card {
	padding: 20px 15px;
	max-width: 800px;
	margin: 0 auto;
}	
.afcolumn-left.rwcenter {
    display: block;
}
.rwrow {
    justify-content: center;
}
.rwcenter .afmenu-box {
    margin-bottom: 15px;
}		
	
}

@media(max-width: 991px) {
.register-wrapper {
	grid-template-columns: auto;
	border-radius: 12px;
}
.regtitle {
	display: block;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.agree-text {
	text-align: center;
}	
.reg-iframe-video {
	height: 44vw;
}
.filter-menu {
    background: none;
    display: block;
}	
.pmbox {
    background: #041838;
    margin: 4px 2px;
    display: inline-block;
    width: 120px;
    vertical-align: text-top;
    padding: 10px 5px;
    height: auto;
}		
.lock-status {
    max-width: 30%;
    font-size: 1.3vw;
	height: 2.5vw;
}	
.slick-current .lock-status {
	font-size: 15px;
	height: 28px;
}
.vip-next {
    font-size: 1vw;
}
.dl-container {
    display: block;
}
.dl-banner {
    text-align: center;
    max-width: 44%;
    margin: -8% auto -27%;
}	
ul.nav.nav-download {
	justify-content: space-evenly;
}	
.download-list-wrapper {
    text-align: center;
}	
}

@media(max-width: 767px) {
a.toprofile-link {
    font-size: 13px;
}	
.desktop-slider .carousel-item img {
	object-fit: cover;
	height: 40vw;
}	
.qnabtn {
	padding: 10px 30px 10px 15px;
}	
.qnabtn::after {
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}	
.qna-body {
    padding: 10px 15px;
}	
.qnacard h1, .qnacard h2, .qnacard h3 {
    font-size: 15px;
}
.hotgames-title {
    font-size: 18px;
    margin-bottom: 10px;
}	
.hotgame-icon img {
    max-height: 22px;
}	
.hotgame-icon {
    margin-right: 7px;
}
.footer-sec {
    padding: 15px 0 5px;
}	
.footer-row-1 {
    flex-direction: column;
    grid-gap: 15px;
    padding: 20px 0;
}
.footer-row-2 {
    text-align: center;
}
.ft-crypto img {
    max-width: 35px;
    margin: 5px 3px;
}
.provider-logo-wrapper img {
    max-height: 30px;
}	
.lisence-logo img {
    max-height: 30px;
    margin: 5px 5px;
}	
.provider-logo-wrapper, .lisence-logo {
    padding: 15px 0;
}	
.copyright-sec {
    font-size: 11px;
}
form.reg-form {
	padding: 15px 0;
}
.pmbox-title {
	font-size: 22px;
	height: 23px;
}	
.vip-top-base {
	right: 0;
	margin: 0 auto;
	max-width: 85%;
}	
.vip-privilege {
	font-size: 16px;
    left: 0;
    right: 0;
    top: 31%;
    text-shadow: 0 1px 5px rgb(0, 0, 0, 0.8);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
}
.slick-active.slick-center .vip-card-wrapper {
	margin: 0 -14%;
	transform: scale(1);
}	
.slick-slide .vip-card-wrapper {
    margin-top: 22%;
}	
.slick-slide.slick-current .vip-card-wrapper {
	margin-top: 0;
}	
.slick-current .lock-status {
	font-size: 2vw;
	height: 3.8vw;
}
.vip-next {
	font-size: 1vw;
	height: 3vw;
}
.slick-current .vip-next {
	font-size: 1.5vw;
	height: 4.8vw;
}	
.lvlbar-wrap {
    height: 0.5vw;
}	
.slick-current .lvlbar-wrap {
    height: 0.8vw;
}
.sf-btn-wrap {
    background: none;
}	
button.globby-btn {
    height: 33px;
    min-width: 155px;
    font-size: 15px;
}	
a.spvdbox {
	width: 16.3%;
	font-size: 13px;
}	
.slot-filter-wrap {
	display: block;
}
.sf-btn-wrap {
	margin-bottom: 10px;
}
.slots-container {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 6px;
}
.slot-name {
	font-size: 12px;
}
.rtp-pts {
    font-size: 12px;	
}
.game-inner-wrap {
    display: block;
}
.gameprvd-text {
    display: none;
}	
.gameprvd-box {
    margin: -8% auto 3%;
}
ul.nav-game li.nav-item a.nav-link {
	height: 50px;
}	
.game-model-wrapper.fast-game {
    max-width: 400px;
    height: auto;
}
#sportsContent .spimg {
    top: 0;
}
.lottery-machine {
    margin: 0 auto -28%;
}	
.lottery-top {
	grid-template-columns: auto;
	grid-gap: 1%;
	max-width: 60%;
	margin-left: 25%;
}	
.lotto-text-wrap {
    font-size: 16px;
}
.lotto-col-2 {
    display: none;
}	
.date-form-wrapper {
	display: grid;
	grid-gap: 15px;
}	
.history-btn-wrap {
	text-align: center;
}
.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 {
	display: grid;
	grid-template-columns: 45% auto;
	grid-gap: 10px;
}
.rwclaim-img {
	height: 14vw;
}
.rwctext-1 {
	-webkit-line-clamp: 2;
}	
.rwclaim-top {
	font-size: 18px;
}
.rwclaim-wrap {
	text-align: right;
}
.claim-requirement {
	font-size: 11px;
}	
.lottery-btn-wrap.desktop {
	display: block;
	padding: 0 0 15px;
}
.af-field-wrap {
	grid-template-columns: auto;
}	
}

@media(max-width: 480px) {
.step-text {
    font-size: 14px;
}
.stepbox {
    grid-gap: 5px;
	height: 100px;
}
.stepbox::after {
    width: 75px;
    height: 84px;
}
.stepbox.step2::before, .stepbox.step3::before, .stepbox.step4::before {
    border-width: 8px 0 8px 8px;
}
.tmb-title {
    font-size: 13px;
}	
.hgrow2 {
	margin-top: 45px;
}
.owl-theme.hotgames-slider .owl-nav {
	top: -10%;
}
.seo-wrapper {
	font-size: 12px;
}	
.regtext-1 {
	font-size: 20px;
}	
ol.fun {
	font-size: 15px;
}
.reg-iframe-video {
	height: 46vw;
}
.info-content-inner {
	padding: 0 10px;
}	
.info-content {
	padding: 20px 15px;
	font-size: 14px;
}	
.info-title {
	font-size: 22px;
	padding: 0 10px;
}
.pmbox {
	margin: 2px 2px;
	width: auto;
	padding: 10px 15px;
	font-size: 13px;
}	
.pmbox-title {
	font-size: 19px;
	height: 20px;
}
.vip-top-banner {
	height: 400px;
}	
.vip-top-base {
	max-width: 100%;
}	
.slick-active.slick-center .vip-card-wrapper {
	margin: 0 -43%;
}
.slick-slide .vip-card-wrapper {
	margin-top: 50%;
}
.vip-next {
	height: 4vw;
}
.slick-current .vip-next {
	font-size: 2.1vw;
	height: 7.5vw;
}
.slick-current .lock-status {
	font-size: 3vw;
	height: 5.6vw;
}
.vip-tnc {
    font-size: 14px;
}
.download-wrapper {
    padding: 25px 15px;
}	
ul.nav.nav-download li.nav-item {
    width: 48%;
    margin: 0;
}	
ul.nav.nav-download li.nav-item a.nav-link {
    padding: 10px 5px;
    font-size: 14px;
	min-width: auto;
}
.download-box {
	max-width: 47%;
	margin: 90px 1% 1%;
}
ul.nav.nav-provider-game li.nav-item {
	width: 31%;
	margin: 0.7%;
}
ul.nav.nav-provider-game a.nav-link {
	height: 13vw;
}
.game-pvd-img {
    max-width: 80%;
    margin: 0 auto;
}
.game-pvd-img img {
    max-height: 65px;
}	
a.spvdbox {
	width: 24.5%;
	font-size: 12px;
}
.slots-container {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px 10px;
}
.slotgbox {
    max-width: none;
}
.slot-name {
	font-size: 14px;
}
.hot-slot {
	font-size: 9px;
	padding: 14px 2px 1px;
	right: -33px;
	top: -8px;
}	
.lobby-btn-wrap {
    top: 54%;
}
button.globby-btn {
	height: 30px;
	min-width: 150px;
	font-size: 14px;
}	
.game-model-wrapper {
    max-width: 60%;
    height: auto;
}		
.gameprvd-box {
	padding: 1% 3% 5%;
	width: 100%;
	margin: -16% auto 3%;
}
.pvdlogo img {
    max-height: 70px;
}	
.play-btn-wrap {
    margin-top: 10px;
}	
ul.nav-game li.nav-item {
	margin: 0.7% 0.5%;
	width: 32%;
}	
#sportsContent .game-model-wrapper {
    height: auto;
}	
.lottery-container {
    padding: 20px 15px;
}
a.afsub-btn {
	margin: 0.5% 0.5% 0.5% 0;
	min-width: 48.5%;
	font-size: 14px;
}	
.aform-wrapper {
	padding: 15px 15px;
}	
.bank-pay {
	max-width: 31.5%;
	margin: 0 0.4%;
}
a.tpm-btn {
	font-size: 10px;
}	
a.tpm-btn img {
	max-height: 25px;
}	
.mainwallet-wrap {
	padding: 15px 15px;
	grid-template-columns: 59% 40%;
}	
.mwbalance {
	font-size: 20px;
}	
button.restore-btn {
    padding: 2px 7px;
    font-size: 12px;
    margin: 0 2px 0 5px;
}
button.reload-btn {
	font-size: 13px;
	padding: 0px 3px 3px;
}
.bank-acct-btn img {
	max-height: 25px;
	margin-bottom: 3px;
}	
.bank-acct-btn {
    padding: 8px 5px;
    font-size: 13px;
}
.bank-acct-btn.bnk {
	font-size: 13px;
}	
table.history-table {
	font-size: 13px;
}
.bank-pf img {
    max-height: 30px;
}
.profile-top-wrapper, .pfcolumn  {
    padding: 20px 15px;	
}
.bank-profile-wrap table.history-table {
    font-size: 13px;
}
.inbox-container {
    font-size: 13px;
}
button.balance-btn {
	padding: 15px 25px;
}	
.prvdbox {
    padding: 10px 15px;
}
button.allin-btn {
	font-size: 13px;
	padding: 2px 6px;
}	
.pvb-col-2 {
	font-size: 15px;
}
.afmenu-box {
	padding: 20px 12px;
}
.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;
    background: #09347a;
    height: 75px;
    font-size: 12px;
    text-align: center;
    border-radius: 10px;
    padding: 1px 3px;
}
.rwcenter ul.nav.afmenuside-nav li.nav-item a.mslink.active {
	background: linear-gradient(90deg, rgba(208, 156, 18, 1) 0%, rgba(255, 229, 106, 1) 100%);
    color: #000;
    border: 1px solid #fff1b6;	
}
.afn-icon {
    margin: 0 auto 5px;
}
.rc-quickgame {
    font-size: 13px;
}
.rc-quickgame img {
    max-width: 35px;
}	
.rwcenter .rwc-content {
    padding: 15px 15px;
}	
.rwclaim-btm {
	grid-template-columns: auto 115px;
	grid-gap: 5px;
}	
.rwclaim-top {
	font-size: 3.3vw;
}
button.rw-claim-btn {
    font-size: 14px;
    height: 30px;
}		
.rwc-toptitle {
    font-size: 18px;
    margin-bottom: 15px;
}
.dtinner {
    padding: 15px 10px;
    display: grid;
    grid-template-columns: auto 115px;
    grid-gap: 10px;
}
.trw-img {
    grid-column: 1 / 3;
    width: 60%;
}	
.torw-content {
    font-size: 16px;
}	
.progress-turnover {
    font-size: 13px;
}	
.slots-rwclaim .date-legend {
    font-size: 10px;
}	
ul.nav.nav-game.rwcenter a.nav-link {
    padding: 3% 9%;
    width: auto;
}	
ul.nav.nav-game.rwcenter a.nav-link img {
	max-height: 55px;
}
button.lottery-btn {
	max-width: 47%;
	margin: 1% 1%;
}	
}

/** Updated - 1/10/2025 **/
.t-body.gaming {
    background: #051e54 url("../images/bg_gaming.png") no-repeat top center;
    background-size: cover;
}
.lcfloat.gmdeco-1 {
    right: -3%;
    top: 27%;
    max-width: 22%;
    animation: float 2s ease-in-out infinite;
}
.lcfloat.gmdeco-2 {
    left: -3%;
    top: 44%;
    max-width: 19%;
    animation: float 2.5s ease-in-out infinite;
    z-index: 2;
}

.recent-played-sec {
    position: relative;
    padding: 20px 0 15px;
}
.owl-theme.recentplay-slider .owl-nav {
    margin-top: 10px;
    position: absolute;
    right: 0;
    top: -11%;
}
.owl-theme.recentplay-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: 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.recentplay-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: 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.recentplay-slider .owl-nav button.owl-prev:hover, .owl-theme.recentplay-slider .owl-nav button.owl-next:hover {
	background: rgb(255,255,255,1);
	color: #00143a;
} 
.rcgamebox {
    position: relative;
    max-width: 180px;
    margin: 0 auto;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
}
.rcgame-name {
    background: #062352;
    color: #fff;
    height: 50px;
    font-size: 13px;
    text-align: center;
    padding: 5px 5px;
    overflow: hidden;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rcgamebox:hover .play-hover {
    visibility: visible;
    opacity: 1;
}
.rcgamebox:hover .play-hover button.playslot-btn {
    transition: 0.2s;
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}
.rcgame-tumbnail {
    overflow: hidden;
	height: 140px;
}
.rcgame-tumbnail img {
	object-fit: cover;
	height: 100%;
}
.rcgamebox.casino .rcgame-tumbnail {
	background: url("../images/recent/casino-thumb-bg.png")no-repeat center;
	background-size: cover;
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 5px;
}
.rcgamebox.sports .rcgame-tumbnail {
	background: url("../images/recent/sports-thumb-bg.png")no-repeat center;
	background-size: cover;
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 5px;
}
.rcgamebox.lottery .rcgame-tumbnail {
	background: url("../images/recent/lotto-thumb-bg.png")no-repeat center;
	background-size: cover;
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 5px;
}
.rcgamebox.casino .rcgame-tumbnail img, .rcgamebox.sports .rcgame-tumbnail img, .rcgamebox.lottery .rcgame-tumbnail img {
	height: auto;
}
/** Recent widthdrawal **/
.recent-withdraw-slider {
    position: relative;
    padding: 0 0 20px;
}
.recent-wd-table-wrapper {
	position: relative;
}
.rwd-row-title {
    background: #0f3a76;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 35px;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    padding: 5px 3px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}
.wdlist-wrap {
	position: relative;
	overflow: hidden;
}
.rwd-row {
    background: #08265c;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 30px;
    align-items: center;
    text-align: center;
    border-radius: 6px;
    padding: 2px 3px;
    margin: 4px 0;
    font-size: 14px;
}
.rwd-row:nth-child(even){
	background: #0f3a76;
}


@media(max-width: 480px) {
.rcgame-tumbnail {
    height: 30vw;
}
.rcgame-name {
    font-size: 12px;
}	
.rwd-row-title {
    font-size: 13px;
}
.rwd-row {
    font-size: 13px;
}	
}

iframe.deposit {
    height: 1300px;
}

iframe.transfer {
    height: 1750px;
}

iframe.withdraw {
    height: 1080px;
}

iframe.history {
    height: 810px;
}

iframe.message {
    height: 800px;
}

iframe.profile {
    height: 850px;
}

iframe.password {
    height: 100%;
}

iframe.bank-detail {
    height: 700px;
}

@media(max-width: 991px) {
    iframe.password {
        height: 400px;
    }
}

@media(max-width: 767px) {
    iframe.deposit {
        height: 1550px;
    }

    iframe.transfer {
        height: 2600px;
    }

    iframe.withdraw {
        height: 1400px;
    }

    iframe.history {
        height: 900px;
    }

    iframe.message {
        height: 900px;
    }

    iframe.bank-detail {
        height: 800px;
    }
}

@media(max-width: 480px) {
    iframe.deposit {
        height: 2000px;
    }

    iframe.transfer {
        height: 2800px;
    }

    iframe.withdraw {
        height: 1600px;
    }

    iframe.history {
        height: 1100px;
    }

    iframe.password {
        height: 500px;
    }
}


/** Update - 12/9/2025 **/
.vip-dropdown-wrap {
    position: relative;
    display: inline-block;
    margin: 0 5px 0 5px;
}

.vipuser-wrap {
    display: flex;
    align-items: center;
}

.vipbadge {
    position: relative;
}

    .vipbadge img {
        height: 25px;
    }

.usertext {
    background: #00143a;
    padding: 3px 7px 4px 8px;
    margin-left: -5px;
    display: flex;
    align-items: center;
    border-radius: 0 15px 15px 0;
}

a.profile-user {
    color: #fff;
    font-size: 13px;
    margin-right: 3px;
}

.uvdrop {
    margin-left: 1px;
    margin-top: 2px;
    font-size: 70%;
}

.vip-status-wrap {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
    width: 300px;
    background: #0f3a76;
    padding: 15px 15px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.5);
}

.vip-dropdown-wrap:hover .vip-status-wrap {
    opacity: 1;
    visibility: visible;
}

.welcome-vip {
    display: grid;
    grid-template-columns: auto 60px;
    grid-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

span.vipbdg img {
    max-width: 60px;
}

span.wcuser {
    font-size: 110%;
    font-weight: 500;
}

.viptier {
    font-weight: 600;
    ffont-size: 110%;
}

.vip-upgrd {
    position: relative;
    margin-bottom: 10px;
    font-size: 13px;
}

.vipbar-wrap {
    position: relative;
    height: 8px;
    background: #041a3e;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 5px;
}

.vipbar-inner {
    background: #fed560;
    height: 100%;
    border-radius: 25px;
}

.vipbenefit {
    text-align: right;
}

    .vipbenefit a {
        color: #fed560;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: end;
    }

        .vipbenefit a:hover {
            color: #fff;
        }

.bfvipicon {
    margin-right: 5px;
}

    .bfvipicon img {
        max-height: 20px;
    }

@media(max-width: 480px) {
    .vip-dropdown-wrap {
        margin: 0 5px 0 0px;
    }

    .usertext {
        background: #00143a;
        padding: 2px 7px 3px 8px;
    }

    a.profile-user {
        font-size: 11px;
    }

    .vipbadge img {
        height: 20px;
    }
}










