/* DESKTOP MENU */

#menuToggle {
	display: block;
	position: relative;
	top: 2px;
	left: 0px;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
	width: 49%;
	display: inline-block;
}

#menuToggle a:hover {
	color: #00efe7;
}

#menuToggle input {
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;
	cursor: pointer;
	opacity: 0;
	/* hide this */
	z-index: 2;
	/* and place it over the hamburger */
	-webkit-touch-callout: none;
}


/*
 * Just a quick hamburger
 */

#menuToggle span {
	display: block;
	width: 25px;
	height: 3px;
	margin-bottom: 5px;
	position: relative;
	background: #00efe7;
	border-radius: 5px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}


/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */

#menuToggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(0px, 2px);
	background: #00efe7;
}


/*
 * But let's hide the middle one.
 */

#menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}


/*
 * Ohyeah and the last one should go the other direction
 */

#menuToggle input:checked~span:nth-last-child(2) {
	transform: rotate(-45deg) translate(0, -1px);
}

@media screen(max-width:768px) {
	#menuToggle.mobile-acc {
		display: none;
	}
}


/*
 * Make this absolute positioned
 * at the top left of the screen
 */

#menu {
	position: absolute;
	width: 300px;
	margin: 12px 0 0 -233px;
	padding: 25px;
	background: linear-gradient(to left, rgb(35, 35, 35) 0%, rgba(0, 0, 0, 1) 100%);
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(100%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	border-radius: 0 0 0 6px;
}

#menu li {
	padding: 10px 0;
	font-size: 15px;
	display: grid;
	text-align: center;
}

#menu i {
	font-size: 25px;
	color: #fff;
	padding: 5px;
}

#menuToggle #menu li:hover,
#menuToggle #menu li i:hover {
	color: #00e3db;
}


/*
 * And let's slide it in from the left
 */

#menuToggle input:checked~ul {
	transform: none;
}


/*----- Toggle Button -----*/

.toggle-nav {
	display: none;
}

.desk-acc a.button {
	width: 140px;
	height: 53px;
	background: #333;
	display: block;
	position: relative;
	overflow: hidden;
	color: white;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background-image: linear-gradient(to bottom, rgb(1, 217, 210) 2%, rgb(6, 95, 92) 60%, rgb(8, 66, 64) 100%);
	border-bottom: 1px solid #00e3db;
}

.desk-acc a.button span.text {
	position: absolute;
	top: 9px;
	left: 35px;
	font-size: 16px;
}

.desk-acc a.button span.shine {
	content: '';
	position: absolute;
	height: 400px;
	width: 20px;
	background: white;
	top: -80px;
	left: -20px;
	display: block;
	opacity: 0.8;
	-webkit-box-shadow: 0px 0px 20px 10px white;
	-moz-box-shadow: 0px 0px 20px 10px white;
	box-shadow: 0px 0px 20px 10px white;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	animation: 5s ease-in-out infinite;
}

.desk-acc a.button:active {
	-webkit-box-shadow: inset 0px 1px 15px 0px rgba(0, 0, 0, .4), inset 0px 1px 1px 1px rgba(0, 0, 0, .2), 0px 1px 1px 0 rgba(255, 255, 255, .5);
	-moz-box-shadow: inset 0px 1px 15px 0px rgba(0, 0, 0, .4), inset 0px 1px 1px 1px rgba(0, 0, 0, .2), 0px 1px 1px 0 rgba(255, 255, 255, .5);
	box-shadow: inset 0px 1px 15px 0px rgba(0, 0, 0, .4), inset 0px 1px 1px 1px rgba(0, 0, 0, .2), 0px 1px 1px 0 rgba(255, 255, 255, .5);
}

.desk-acc a.button:hover span.shine {
	left: 170px;
	top: -300px;
}

.login-btn {
	background: linear-gradient(to bottom, rgb(97, 97, 97) 0%, rgba(0, 0, 0, 1) 100%);
	font-size: 16px;
	color: #fff;
	height: 50px;
	padding: 0px 40px;
	border: none;
	border-left: 1px solid #00e3db;
}

.login-btn:hover {
	-webkit-transition: -webkit-box-shadow .25s linear;
	transition: -webkit-box-shadow .25s linear;
	-o-transition: box-shadow .25s linear;
	transition: box-shadow .25s linear;
	transition: box-shadow .25s linear, -webkit-box-shadow .25s linear;
	background: none;
}

.login-btn:focus {
	outline: none;
}

.desk-acc i {
	font-size: 15px;
	margin-right: 5px;
}

.login{
	background: url(../images/common/M-SIGN-01.jpg)no-repeat top center;
	background-size: cover;
}
.lp-right.register{
	background: url(../images/common/M-SIGN-01.jpg)no-repeat top center;
	background-size: cover;
}
.info-page{
    background: url(../images/common/M-SIGN-01.jpg)no-repeat top center;
    background-size: cover;
	min-height: 450px;
	border-radius: 20px;
}
.table-bank{
	overflow: auto;
}
.content h2{
	margin-bottom: 15px;

}
.card-header {
	padding: 5px;
}
/*----- Menu -----*/

@media screen and (min-width: 860px) {
	.menu {
		width: 45%;
		box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
		border-radius: 3px;
		background: #303030;
		float: right;
	}
}

@media screen and (min-width: 768px) {
	.menu {
		display: none;
	}
	.desk-menu {
		display: block;
	}
}

.menu ul {
	display: inline-block;
}

.menu li {
	margin: 0px 50px 0px 0px;
	float: left;
	list-style: none;
	font-size: 17px;
}

.menu li:last-child {
	margin-right: 0px;
}

.menu a {
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: color linear 0.15s;
}

.menu a:hover,
.menu .current-item a {
	text-decoration: none;
	color: #00efe7;
}

.menu li a {
	display: grid;
}


/*----- Responsive -----*/

@media screen and (max-width: 860px) {
	.menu {
		position: relative;
		display: inline-block;
		float: right;
	}
	.menu ul.active {
		display: none;
	}
	.menu ul {
		position: absolute;
		top: 55px;
		right: -50px;
		padding: 10px;
		box-shadow: 0px 0 3px #00efe7;
		border-radius: 6px;
		background: linear-gradient(to bottom, rgba(69, 72, 77, 1) 0%, rgba(0, 0, 0, 1) 100%);
		width: 320px;
		transition: ease-in-out 0.3s;
	}
	.menu ul:after {
		width: 0px;
		height: 0px;
		position: absolute;
		top: 0px;
		right: 22px;
		content: '';
		transform: translate(0%, -100%);
		border-left: 7px solid transparent;
		border-right: 7px solid transparent;
		border-bottom: 7px solid #00efe7;
	}
	.menu li {
		margin: 5px 0px 5px 0px;
		float: none;
		display: inline-block;
		width: 49%;
	}
	.menu a {
		display: block;
		text-align: center;
	}
	.toggle-nav {
		padding: 0px 10px;
		float: right;
		display: inline-block;
		border-radius: 3px;
		color: #00efe7;
		font-size: 25px;
		transition: color linear 0.15s;
	}
	.toggle-nav i {
		font-size: 22px;
	}
	.toggle-nav:hover,
	.toggle-nav.active {
		text-decoration: none;
		color: #66a992;
	}
	.search-form {
		margin: 12px 0px 0px 20px;
		float: left;
	}
	.search-form input {
		box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
	}
	.f-b {
		margin: 0 auto;
		text-align: center;
	}
	.copyright {
		text-align: center;
	}

}

/* CASINO */
.casino{
	
}
/* PROMOTION SECTION */

#accordion {
	margin: auto;
}

.box {
	position: relative;
	background: rgb(21, 21, 21);
	height: 64px;
	transition: all .15s ease-in-out;
}

.box::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	box-shadow: 0 3px 5px rgba(0, 255, 231, 0.2), inset 0 0 5px rgba(0, 255, 208, 0.1), 0px 1px 0 #113c3a;
	border-bottom: 1px solid #185855;
}

header.box {
	background: #00BCD4;
	z-index: 100;
	cursor: initial;
	box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px -2px rgba(0, 0, 0, .12), 0 2px 4px -4px rgba(0, 0, 0, .24);
}

header .box-title {
	margin: 0;
	font-weight: normal;
	font-size: 16pt;
	color: rgb(0, 239, 231);
	cursor: initial;
}

.box-title {
	width: calc(100% - 40px);
	height: 64px;
	line-height: 64px;
	padding: 0 20px;
	display: inline-block;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.box-content {
	width: calc(100% - 40px);
	padding: 30px 20px;
	font-size: 11pt;
	color: #fff;
	display: none;
}

.box-close {
	position: absolute;
	height: 64px;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}

.promo-content {
	margin-top: 40px;
	margin-bottom: 25px;
}

.promo-content .card {
	margin-bottom: 10px;
}

input:checked+.box {
	height: auto;
	margin: 16px 0;
	box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

input:checked+.box .box-title {
	border-bottom: 1px solid rgba(0, 0, 0, .18);
}

input:checked+.box .box-content,
input:checked+.box .box-close {
	display: inline-block;
}

.arrows section .box-title {
	padding-left: 44px;
	width: calc(100% - 64px);
}

.arrows section .box-title:before {
	position: absolute;
	display: block;
	content: '\203a';
	font-size: 18pt;
	left: 20px;
	top: -2px;
	transition: transform .15s ease-in-out;
	color: rgba(0, 0, 0, .54);
}

input:checked+section.box .box-title:before {
	transform: rotate(90deg);
}


/* DOWNLOAD */

@media only screen and (max-width:320px) {
	.menu ul {
		width: 200px;
	}
}

@media only screen and (max-width: 450px) {
	.f-inside>div {
		min-width: 250px;
	}
	.contact-content {
		width: 100%;
	}
	#accordion p {
		padding: 0;
		font-size: 14px;
	}
	.contact-01 {
		width: 40%;
		display: grid;
	}
	.lp-left.login, .lp-right.register{
		background-position: left!important;
	}
	.info-page{
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media only screen and (max-width:768px) {
	.info-page {
		width: 95%;
	}
	.faq-page #accordion {
		width: 100%;
	}
	.faq-page #accordion .btn {
		text-align: initial;
	}
}


/* PROMOTION */

.mix {
	display: none;
}

.promo-part {
	padding: 10px;
	margin: 0 auto;
}

.promotion-secion {
	padding: 0;
	margin: 0 auto;
	padding-bottom: 30px;
}

.promotab.active {
	background-image: linear-gradient(to bottom, rgb(1, 217, 210) 2%, rgb(6, 95, 92) 60%, rgb(8, 66, 64) 100%);
	border-bottom: 1px solid #00e3db;
	text-decoration: none;
	color: #fff;
}

.promotab {
	background: none;
	padding: 10px 10px;
	width: 25%;
	text-align: center;
	background: linear-gradient(to bottom, rgb(97, 97, 97) 0%, rgba(0, 0, 0, 1) 100%);
	text-transform: uppercase;
}

.promotab:first-child {
	border-radius: 6px 0 0 6px;
}

.promotab:last-child {
	border-radius: 0 6px 6px 0;
}

h1.filter-title {
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.77);
	margin-left: 30px;
	font-weight: 900;
}

.filter-box {
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
}

.filter-menu {
	display: flex;
}

.filter-menu a {
	color: #fff;
}

.promo-body {}

.card-body {
	padding: 15px;
	color: #fff;
	border-radius: 6px;
}

.card-promo {
	position: relative;
	padding-bottom: 15px;
	width: 100%;
}

.bannerpromo {
	/* border: 1px solid #00e3db; */
}

.bannerpromo img {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .6);
}

/****************************
****** download CSS ******
****************************/
.card-box{
	display: inline-flex;
	margin-bottom: 15px;
}
.box-download {
	padding-top: 30px;
	padding-bottom: 30px;
}
.box-download .card {
	position: relative;
	float: left;
	padding-bottom: 25%;
	width: 232px;
	text-align: center;
	height: 370px;
	cursor: pointer;
	background: none;
	margin: 0 auto;
}
/* card fronts and backs */
.box-download .card__front,
.box-download .card__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 7px 3px rgba(0, 255, 231, 0.2), inset 2px -2px 5px rgba(0, 255, 208, 0.1), 0px 1px 0 #113c3a;
	border-radius: 15px;
}	
.box-download .card__front,
.box-download .card__back {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.7s;
	transition: transform 0.7s;
}
.box-download .card__back {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}
/* card text */
.box-download .card__text {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	color: #fff;
	background: #151515;
	border-radius: 15px;
}
.box-download .card__text h4 {
	margin-top: 16px;
	font-size: 18px;
	color: #0868a0;
	font-weight: 600;
	margin-bottom: 15px;
	padding: 0px;
	background: none;
	box-shadow: none;
}
.box-download .card__text p.blue-g{
	background: rgba(227,227,227,1);
	background: -moz-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(38,116,161,1) 50%, rgba(227,227,227,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(227,227,227,1)), color-stop(50%, rgba(38,116,161,1)), color-stop(100%, rgba(227,227,227,1)));
	background: -webkit-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(38,116,161,1) 50%, rgba(227,227,227,1) 100%);
	background: -o-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(38,116,161,1) 50%, rgba(227,227,227,1) 100%);
	background: -ms-linear-gradient(left, rgba(227,227,227,1) 0%, rgba(38,116,161,1) 50%, rgba(227,227,227,1) 100%);
	background: linear-gradient(to right, rgba(227,227,227,1) 0%, rgba(38,116,161,1) 50%, rgba(227,227,227,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e3e3', endColorstr='#e3e3e3', GradientType=1 );
	font-weight: 100;
	padding: 3px;
}

/* checked effect */
input[type="checkbox"] { position: absolute;left: -9999px;}
input[type="checkbox"]:checked + .child .card__front {
-webkit-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
}
input[type="checkbox"]:checked + .child .card__back {
-webkit-transform: rotateY(0);
		transform: rotateY(0);
}
.download-btn ul li {
  list-style: none;
  float: left;
  margin: 15px 10px;
  display: inline-flex;
}

.download-btn ul {
  display: flex;
  justify-content: center;
  margin:0px;
  padding:0px;
}
.download-btn2 ul li {
  list-style: none;
  float: left;
  margin: 5px 10px;
  display: inline-flex;
  padding:0px;
}
.download-btn2 ul {
  display: flex;
  justify-content: center;
  margin: 0px;
  padding: 0px;
}
.btn-win {
  background: rgba(8,195,232,1);
  background: -moz-radial-gradient(center, ellipse cover, rgba(8,195,232,1) 0%, rgba(74,230,238,1) 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(8,195,232,1)), color-stop(100%, rgba(74,230,238,1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(8,195,232,1) 0%, rgba(74,230,238,1) 100%);
  background: -o-radial-gradient(center, ellipse cover, rgba(8,195,232,1) 0%, rgba(74,230,238,1) 100%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(8,195,232,1) 0%, rgba(74,230,238,1) 100%);
  background: radial-gradient(ellipse at center, rgba(8,195,232,1) 0%, rgba(74,230,238,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#08c3e8', endColorstr='#4ae6ee', GradientType=1 );
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 0px #bfbab8;
  font-weight: 100;
  font-size: 12px;
  border: 1px solid #7ce7fc;
}
.btn-os {
  background: rgba(224,224,224,1);
  background: -moz-linear-gradient(top, rgba(224,224,224,1) 0%, rgba(197,197,197,1) 49%, rgba(218,218,218,1) 50%, rgba(226,226,226,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(224,224,224,1)), color-stop(49%, rgba(197,197,197,1)), color-stop(50%, rgba(218,218,218,1)), color-stop(100%, rgba(226,226,226,1)));
  background: -webkit-linear-gradient(top, rgba(224,224,224,1) 0%, rgba(197,197,197,1) 49%, rgba(218,218,218,1) 50%, rgba(226,226,226,1) 100%);
  background: -o-linear-gradient(top, rgba(224,224,224,1) 0%, rgba(197,197,197,1) 49%, rgba(218,218,218,1) 50%, rgba(226,226,226,1) 100%);
  background: -ms-linear-gradient(top, rgba(224,224,224,1) 0%, rgba(197,197,197,1) 49%, rgba(218,218,218,1) 50%, rgba(226,226,226,1) 100%);
  background: linear-gradient(to bottom, rgba(224,224,224,1) 0%, rgba(197,197,197,1) 49%, rgba(218,218,218,1) 50%, rgba(226,226,226,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e0e0', endColorstr='#e2e2e2', GradientType=0 );
  color: #000;
  padding: 10px 24px;
  border-radius: 5px;
  box-shadow: 0px 2px 0px #bfbab8;
  font-weight: 100;
  font-size: 12px;
  border: 1px solid #fff;
}
.btn-and {
  background: rgba(179,195,38,1);
  background: -moz-radial-gradient(center, ellipse cover, rgba(179,195,38,1) 0%, rgba(203,227,107,1) 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(179,195,38,1)), color-stop(100%, rgba(203,227,107,1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(179,195,38,1) 0%, rgba(203,227,107,1) 100%);
  background: -o-radial-gradient(center, ellipse cover, rgba(179,195,38,1) 0%, rgba(203,227,107,1) 100%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(179,195,38,1) 0%, rgba(203,227,107,1) 100%);
  background: radial-gradient(ellipse at center, rgba(179,195,38,1) 0%, rgba(203,227,107,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3c326', endColorstr='#cbe36b', GradientType=1 );
  color: #fff;
  padding: 10px 17px;
  border-radius: 5px;
  box-shadow: 0px 2px 0px #bfbab8;
  font-weight: 100;
  font-size: 12px;
  border: 1px solid #fff;
}
@media (max-width:768px){
	.content h2{
		display: none!important;
	}
}
#accordion .btn{
	text-align: left;
}
h1.login-title{
	display: block!important;
}
.download-btn2 img {width: 80px;}
    .mobile-lang{
	   /* display: none; */
	   display: flex;
	}
	.mobile-lang a{
		width: 25%;
	}

@media (max-width:768px){
	.mobile-lang{
	  display: flex;
	  
	  width: 68%;
	  padding-bottom: 15px;
	}
	.mobile-lang a{
		width: 15%;
		margin: 0 auto;
		margin-top: 5px;
		margin-bottom: 5px;
		cursor: pointer;
	}
	.table-amount{
		display: none;
	}
	
}
@media (max-width: 768px){
.content h1 {
    text-align: center;
	padding-top: 15px;
	color: #00efe7;
}
.cover-banner{
	display: none;
}
.lp-left.login, .lp-right.register, .info-page{
	background-position: left;
}
.games-list .pos-rel.flex-cont{
	display: none;
}
}
@media (min-width:769px){
	.mobile-table-amount{
		display: none;
	}
}
@media (min-width:769px){
	.content h1{
		display: none;
	}
}

/* DEPOSIT */
.bln-box, .bln-box:hover {
	position: relative;
	text-align: center;
	width: 100%;
	display: block;
	background: #292929;
	padding: 7px 5px;
	font-size: 13px;
	margin-top: 10px;
	color: #00efe7;
	border-radius: 15px;
}
.bln-box.collapsed {
	color: #00efe7;
}
.bln-box.collapsed:before {
    content: '+';
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 70px;
    right: 0;
    top: 2px;
}
.bln-box:before {
    content: 'x';
    font-size: 16px;
    color: #00efe7;
    position: absolute;
    left: 70px;
    right: 0;
    top: 5px;
}
.his-info{
	margin-right: 10px;
}
.his-info select{
	color: aqua;
}