* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: "Arial", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	background: #121223;
	color: #fff;
}
p {
	margin: 0 0 20px 0;
}
.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}


/* HEADER */
header {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 60px;
	background: #2c2c54;
	box-shadow: rgba(0, 0, 0, .5) 0px 4px 15px;
}
header .container {
	position: relative;
}
.logo {
	display: block;
	width: 150px;
	margin: 14px auto 13px auto;
	transition: all .3s;
}
.logo:hover {
	opacity: 0.8;
}
.menu-button {
	position: absolute;
	top: 4px;
	left: 15px;
	width: 25px;
	height: 25px;
	background: none;
	border: none;
	cursor: pointer;
	transition: all .3s;
}
.menu-button span,
.menu-button span:before,
.menu-button span:after {
	display: block;
	width: 20px;
	background-color: #fff;
	height: 3px;
	border-radius: 5px;
}
.menu-button span:before {
	content: '';
	position: absolute;
	width: 25px;
	top: 2px;
	transition: all .3s;
}
.menu-button span:after {
	content: '';
	position: absolute;
	width: 25px;
	bottom: 2px;
	transition: all .3s;
}
.menu-button.active span {
	height: 0;
}
.menu-button.active span:before {
	content: '';
	top: 45%;
	transform: translate(0, -50%);
	transform: rotate(135deg);
}
.menu-button.active span:after {
	content: '';
	top: 45%;
	transform: translate(0, -50%);
	transform: rotate(-135deg);
}
.mobile-button {
	position: absolute;
	display: block;
	top:3px;right: 15px;
    width: 28px;
    height: 28px;
	border: none;
    background: url("https://webmark.com.ua/login.svg") no-repeat;
	background-size: 100%;
	cursor: pointer;
}

nav {
    position: fixed;
    width: 285px;
    height: 100%;
    z-index: 100;
    top: 60px;
    left: -290px;
    transition: all 0.5s;
    background: #2c2c54;
    overflow: auto;
}
nav.open {
	left: 0
}
nav ul {
	padding: 5px 0 15px;
	border-bottom: 1px solid rgba(107,112,255,.4);
	margin-bottom: 15px;
	list-style: none;
}
nav ul li {
    display: block;
    padding: 0 15px;
    width: 100%;
}
nav ul li a {
	display: block;
	position: relative;
	color: #ae5cf4;
    font-size: 16px;
    font-weight: 600;
	text-decoration: none;
	padding: 10px 0;
	transition: all .3s;
}
nav ul li a:hover {
	color: #8e5ef6;
}
nav ul li.active a{
	color: #fff;
	padding-left: 5px;
}

.header-buttons {
	display: flex;
    align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}
.reg-button, .log-button {
	height: 40px;
    display: flex;
    align-items: center;
	
	color: #fff;
	font-size: 14px;
    font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	padding: 0 24px;
	border:0;
/*    border-radius: 8px;*/
	cursor: pointer;
	transition: all .3s;
}
.center-button{
	display:block;
    margin-left: auto;
    margin-right: auto;
}
.reg-button {
    background: linear-gradient( 180deg ,#eb55ee,#2d68ff);
    background-image: linear-gradient( 180deg ,#eb55ee -82%,#2d68ff 191%);
}
.log-button{
    background: none;
    border: 2px solid #fff;
}
.reg-button:hover,
.comments-form button:hover {
	cursor: pointer;
	opacity: .8;
}
.log-button:hover {
	color: #a05df5;
	border-color: #a05df5;
}
.first_banner{
	margin-top:-35px;
	cursor:pointer;
}
/* CONTENT */
main {
	overflow: auto;
	position: relative;
	padding: 125px 0 75px;
}
main::before {
	content: '';
	z-index: 1;
	position: absolute;
	top:60px;
	width: 100%;
	height: 112px;
	background-image: -webkit-linear-gradient(#311953, #121223);
	background-image: -o-linear-gradient(#311953, #121223);
	background-image: linear-gradient(#311953, #121223);
}
main .container {
	position: relative;
	z-index: 3;
}
main img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
main *:last-child {margin-bottom: 0;} 
main h1, main h2, main h3, main h4 {
	margin: 35px 0 20px;
}
main h1 {
    font-weight: 700;
    font-size: 24px;
}
main h1:first-child {margin-top: 0;}
main h2 {
	font-weight: 700;
    font-size: 21px;	
}
main h3 {
	font-weight: 700;
    font-size: 19px;	
}
main h4 {
	font-weight: 700;
    font-size: 17px;	
}
main ol,
main ul {
	padding-left: 30px;
	margin-bottom: 20px;
}
main ol li > ol,
main ul li > ul {
	margin: 10px 0 0;
}
main ul li > ul li {list-style-type: circle}
main ol li,
main ul li {
	padding: 5px 0;
}
main a {
	text-decoration: none;
	color: #b05bf4;
	transition: all 0.3s;
}
main a:hover {
	border-bottom: 1px solid #b05bf4;
}

main table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
}
main table td {
	font-size: 14px;
    padding: 5px;
    border-bottom: 1px solid #2c2c54;
}
main table td:first-child {
width:25%;
}
main table tr:first-child td {
	border-top: 1px solid #2c2c54;
}
main table tr:nth-child(2n){background:#1a142d}
main table th {
	text-align: center;
	background-color: #311953;
	font-size: 18px;
	font-weight: 400;
}
.tbl-bonus td:nth-child(1){width:15%;}
.tbl-bonus td:nth-child(2){width:30%;}
.tbl-bonus td:nth-child(3){width:40%;}
.tbl-bonus td:nth-child(4){width:15%;}

.contents-box {
	display: block;
    max-width: 600px;
    margin: 50px 0;
    padding: 35px;
    background: #252552;
}
.contents-box p {
	margin-bottom: 10px;
	font-weight: 700;
}
.contents-box ul {
	padding: 0;
}
.contents-box ul li {
	padding: 3px;
}
.contents-box ul li > ul li{
	margin-left:10px;
}
.contents-box ul li:last-child {
	padding-bottom: 0;
}
.contents-box a {
	font-size: 16px;
}

.games-box {
    margin: 50px 0;
	padding: 30px 20px;
    background: #252552;
}
.games-box__title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
    margin: 0;
}
.games-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0 -10px;
}
.games-list .games-list__item {
	flex: 1 1 50%;
    margin: 20px 0 0;
	padding: 0 10px;
	text-align: center;
	font-weight:600;
	font-size:18px;

}
.games-list__item__bg {
	position: relative;
	max-width: 285px;
    margin: 0 auto 10px auto;
}
.games-list__item__bg .hover {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
    justify-content: center;
}
.games-list__item__bg .hover button {
    height: 32px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 0 15px;
    border: none;
    margin-top: 25px;
    text-transform: uppercase;
    background: linear-gradient(180deg,#eb55ee,#2d68ff);
    background-image: linear-gradient(180deg,#eb55ee -82%,#2d68ff 191%);
	cursor: pointer;
	border-radius: 5px;
}
.games-list__item__bg .hover button:hover {
	background: linear-gradient(180deg,#eb55ee,#2d68ff);
    background-image: linear-gradient(180deg,#eb55ee -20%,#2d68ff 180%);
}
.games-list .games-list__item img {display: block;	box-shadow: 0 0 10px white;}

/*Bonus START*/
.bonus-box {
    margin: 50px 0;
	padding: 30px 20px;
    background: #252552;
}
.bonus-box__title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
    margin: 0;
}
.bonus-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0 -10px;
}
.bonus-list .bonus-list__item {
	flex: 1 1 50%;
    margin: 20px 0 0;
	padding: 0 10px;
	text-align: center;
	font-weight:600;
	font-size:18px;
}
.bonus-list__item__bg {
	position: relative;
	max-width: 285px;
    margin: 0 auto 10px auto;
}
.bonus-list__item__bg .hover {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	display: flex;
	align-items: center;
    justify-content: center;
}
.bonus-list__item__bg .hover button {
    height: 32px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 0 15px;
    border: none;
    margin-top: 25px;
    text-transform: uppercase;
    background: linear-gradient(180deg,#eb55ee,#2d68ff);
    background-image: linear-gradient(180deg,#eb55ee -82%,#2d68ff 191%);
	cursor: pointer;
}
.bonus-list__item__bg .hover button:hover {
	background: linear-gradient(180deg,#eb55ee,#2d68ff);
    background-image: linear-gradient(180deg,#eb55ee -20%,#2d68ff 180%);
}
.bonus-list .bonus-list__item img {display: block;}
/*Bonus END*/

.text-center {
	text-align: center;
}
.aligncenter {
    float: none;
    margin: 20px auto;
}
.alignright {
    float: right;
    margin: .5em 0 20px 20px;
}
.alignleft {
    float: left;
    margin: .5em 20px 20px 0;
}
main .big-btn {
	display: inline-block;
    width: 100%;
    min-width: 320px;
    max-width: 500px;
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    border-radius: 10px;
    padding: 20px 30px;
	text-decoration: none;
	background: linear-gradient( 180deg ,#eb55ee,#2d68ff);
    background-image: linear-gradient( 180deg ,#eb55ee -82%,#2d68ff 191%);
	transition: all .3s;
}
.comments {
	overflow: auto;
	width: 100%;
    margin: 50px 0;
}
.comments h2 {
	text-transform: uppercase;
	text-align: center;
	margin-top: 0;
}
.comments .comment-post {
	border: 1px solid #454798;
	padding: 25px;
	margin: 25px 0;
}
.comments .comment-post:last-child {margin-bottom: 0}
.comments .comment-post__info {
	border-bottom: 1px solid #2c2c54;
	margin: 0 0 20px;
	padding: 0 0 10px;
}
.comments span {
	color: #ffd5d0;
    font-weight: bold;
    font-size: 14px;
}
.comments-form {
	margin-top: 50px;
}
.comments-form .comments-form__title {
	font-weight: 700;
    font-size: 21px;	
	text-transform: uppercase;
	text-align: center;
}
.comments-form textarea,
.comments-form input {
	width: 100%;
	display: block;
	background: none;
	height: 50px;
	padding: 20px;
	border: 1px solid #454798;
	font-family: inherit;
	font-size: 14px;
	color: #fff;
	margin-bottom: 25px;
}
.comments-form textarea{
	resize: none;
	height: 100px;
}
.comments-form button {
	display: block;
	width: 100%;
    padding: 0 25px;
    height: 50px;
	border: none;
	color: #fff;
	font-weight: 700;
    font-size: 14px;
	text-transform: uppercase;
	transition: all .3s;
	background: linear-gradient(180deg,#eb55ee,#2d68ff);
    background-image: linear-gradient(180deg,#eb55ee -82%,#2d68ff 191%);
}
#msg {text-align: center;margin: -10px 0 20px;}
.hidden {display: none;}


/* FOOTER */
footer {
	padding: 50px 0;
	background: #0f0f1f;
}
footer a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
}
footer a:hover {
	border-bottom: 1px solid #fff;
}
.footer-menu {
	text-align: center;
	margin-bottom: 20px;
	list-style: none;
}
.footer-menu li {
	display: inline-block;
	padding: 5px;
}
.footer-menu li a {
	color: #fff;
	font-size: 14px;
}
.footer-imgs {
	display: flex;
	flex-wrap: wrap;
  	justify-content: center;
  	align-items: center;   
	padding: 10px 0;
	margin-bottom: 25px;
	border-top: 1px solid #454798;
	border-bottom: 1px solid #454798;
	list-style: none;
}
.footer-imgs li {
	margin: 10px;
	align-items: center;
}
.footer-imgs li i{
	display: block;
	margin: 0 auto;
	background-image: url('https://webmark.com.ua/sprite.png');
	background-repeat: no-repeat;
}
.footer-imgs li.adult i{
	width: 55px;
	height: 55px;
}
.footer-imgs li.ssl i{
	width: 51px;
	height: 52px;
	background-position: -60px 0;
}
.footer-imgs li.hand i{
	width: 51px;
	height: 52px;
	background-position: -120px 0;
}
.footer-imgs li.game {flex-basis: 100%;}
.footer-imgs li.game i{
	width: 191px;
	height: 30px;
	background-position: 0 -60px;
}
.footer-imgs li.visa i{
	width: 65px;
	height: 20px;
	background-position: -180px 0;
}
.footer-imgs li.mc i{
	width: 56px;
	height: 32px;
	background-position: -180px -28px;
}
.footer-copy {
	font-size: 13px; 
	text-align: center;
	margin: 0;
}


/* other */
button:focus, textarea:focus, input:focus {outline:none}
iframe{width:100%;height:200px;margin:0 auto 15px;display:block;border:1px solid white;}
.video {
	box-shadow: 0 0 10px #8e5ef6;
	padding: 10px;
	border:none!important;
	width:100%;
	cursor: pointer;
	margin-bottom: 20px!important;
}

.faq-link{
	display: inline-block;
	font-size: 15px;
	border: 1px solid #8e5ef6;
	padding:5px;
	margin: 5px;
}
.faq-link:hover{
	color: #fff;
}

.breadcrumbs{
	background-color: #1f1639;
	padding:5px;
	margin:10px 0;
}

.breadcrumbs ul{
	padding: 0;
}
.breadcrumbs ul li {
	list-style-type:none;
	display: inline;
	text-transform: uppercase;
	font-weight: bolder;
	font-size: 12px;
}
.breadcrumbs-link::after{
	content: ' / ';
}
.pros{
	color: mediumseagreen;
}
.cons{
	color: indianred;
}

.cons li{
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}
.cons li::before{
	content:'- ';
	font-weight: bolder;
}
.pros li{
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}
.pros li::before{
	content:'+ ';
	font-weight: bolder;
}

.menu-sub {
	color: #747474 !important;
}
.menu-sub:hover{
	color:#fff!important;
}

/* Modal BEGIN */
.modal {
	visibility: hidden; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 3; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


.modal-content {
	background-color: rgba(0,0,0,0.4);
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	height: auto;
}

/* The Close Button */
.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
#load{
	color:lawngreen;
}
/* Modal END */

.demo-btn:hover{
	color:#ae5cf4;
	cursor: pointer;
	text-decoration: underline;
	transition: all 0.3s;
}
.author-img{
	max-width: 50%;
	margin-bottom: 30px;
	box-shadow: 0 0 10px white;
	border-radius: 50%;
}

.comments-form input[type=checkbox]{
	margin-right: 15px;
	display: flex;
	height: 20px;
	max-width:20px;

}
.input-flex{
	display:flex;
	flex-direction: row;
	justify-content: start;
	align-items: flex-start;
	margin-top: 20px;
}
.button-center{
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	height: 40px;
	width:150px;
	display: block;
	line-height: 40px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	padding: 0 24px;
	border:0;
	/*    border-radius: 8px;*/
	cursor: pointer;
	transition: all .3s;
	background: linear-gradient( 180deg ,#eb55ee,#2d68ff);
	background-image: linear-gradient( 180deg ,#eb55ee -82%,#2d68ff 191%);
}
.button-center:hover{
	opacity: 0.8;
	cursor: pointer;
	text-decoration: none;
}
.warning {
	box-shadow: 0 0 10px #e10d4f;
	padding: 10px;
	border:none!important;
	width:100%;
	cursor: pointer;
	margin-bottom: 10px!important;
}
.attention{
	font-weight: 700;
}
/* ADAPTIVE */
@media screen and (max-width: 320px) {
	main table td {padding: 1px;}
}

@media screen and (min-width: 480px) {
	.games-box {padding: 30px;}
	.games-list__item__bg .hover button {height: 40px;font-size: 15px;padding: 0 25px;}
	.bonus-box {padding: 30px;}
	.bonus-list__item__bg .hover button {height: 40px;font-size: 15px;padding: 0 25px;}
	.breadcrumbs ul li {font-size: 14px;}
}
@media screen and (min-width: 600px) {iframe{width:100%;height:350px;margin:0 auto 15px;display:block;}}
@media screen and (min-width: 650px) {
	.games-list .games-list__item {flex: 0 1 33.33333%;}
	.bonus-list .bonus-list__item {flex: 0 1 33.33333%;}
	iframe{width:100%;height:400px;margin:0 auto 15px;display:block;}
	.author-img{max-width: 15%;margin-left: 0;}
	.video{width:80%}
}
@media screen and (min-width: 768px) {
	.comments {border: 1px solid #2c2c54;padding: 50px;}
	.footer-menu {display: flex;justify-content: space-between;align-items: center;}
	.footer-imgs li {margin: 10px 15px;}
	.footer-imgs li.game {flex-basis: auto;}
}

@media screen and (min-width: 1088px) {
	body {font-size: 16px;}
	.menu-button, .mobile-button{display: none;}
	.logo {position: absolute;top: 0;left: 50%;margin-left: -75px;}
	nav {
		display: flex;
    	flex-wrap: wrap;
		justify-content: space-between;
		background: none;
		position: static;
		width: 100%;
	}
	nav ul {
		display: flex;
		border: 0;
		padding:0;
		margin: 0;
		border: none;
	}
	nav ul li {width: auto;}
	nav ul li:first-child {padding-left: 0;}
	nav ul li a {padding: 19px 0;}
	.log-button {margin-left: 15px;}
	
	main h1 {font-size: 27px;}
	main h2 {font-size: 23px;}
	main h3 {font-size: 21px;}
	main h4 {font-size: 19px;}
	
	.comments h2,
	.comments-form .comments-form__title {text-align: left; font-size: 23px}
	.comments-form__inputs {display: flex;}
	.comments-form .comments-form__input {margin-right: 25px;flex: 1 1 33.33333%;}
	.comments-form .comments-form__input:last-child {margin-right: 0;}
	.comments-form__txt {display: flex;}
	#msg {text-align: left;margin: 7px 0 0 25px;font-size: 14px;}
	
	.games-box {padding: 50px;}
	.games-list .games-list__item {flex: 0 1 25%;}
	.games-box__title {text-align: left;}
	.games-list__item__bg .hover {opacity: 0;transition: all .3s;}
	.games-list__item:hover .hover {opacity: 1;}
	
	.bonus-box {padding: 50px;}
	.bonus-list .bonus-list__item {flex: 0 1 25%;}
	.bonus-box__title {text-align: left;}
	.bonus-list__item__bg .hover {opacity: 0;transition: all .3s;}
	.bonus-list__item:hover .hover {opacity: 1;}
	main table td {padding: 15px;}
	iframe{width:80%;height:500px;margin:0 auto 15px;display:block;}
	.input-flex{
		margin-top: 5px;
	}
}

@media screen and (min-width: 1140px) {	
	.games-list .games-list__item {flex: 0 1 20%;}
	.bonus-list .bonus-list__item {flex: 0 1 20%;}
	main table td {padding: 15px;}
	iframe{width:80%;height:500px;margin:0 auto 15px;display:block;}
}

