﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */



/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: Arial,Helvetica,sans-serif;
	font-weight: normal;
	background: url(img/bg.jpg) center 0 repeat-y #020100;
    -webkit-font-smoothing: subpixel-antialiased!important;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

h1,
.title-page {
    font-size: 40px;
    font-weight: 800;
}

h2 {
    font-size: 32px; 
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
    font-weight: 800;
}

h6 {
    font-size: 14px;
    font-weight: 800;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style:italic;
}

img {
	max-width: 100%;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.alignleft, img.alignleft {
    float: left;
    display: block;
    margin: 0 15px 0 0;
}

.alignright, img.alignright {
    float: right;
    display: block;
    margin: 0 0 0 15px;
}

.aligncenter, img.aligncenter {
    float: none;
    display: block;
    margin: 10px auto 10px;
}

.alignnone, img.alignnone {
    margin: 0 0 0;
    display: block;
}

article {
    margin: 30px 0;
}

article > * {
    color: #EDECF2;
    font-family: Verdana;
}

article p {
    font-size: 14px;
    line-height: 18px;
    margin: 15px 0 15px;
    color: #EDECF2;
}

blockquote {
    padding: 10px 0 10px 50px;
    margin: 15px 0 15px;
    border-left: 4px solid;
    color: #EDECF2;
    font-style: italic;
    font-size: 18px;
}

article ol, article ul {
    padding: 0 0 0 40px;
}

article li {
    margin: 0 0 0 5px;
}
/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

.container {
	max-width: 980px;
    padding: 0;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	min-height: 200px;
}

.justify-align {
	text-align: justify;
}

.justify-align::after {
	content: '';
	display: inline-block;
	width: 100%;
	line-height: 0;
	font-size: 0;
}

.justify-align > * {
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
}

.navbar {
    display: inline-block;
    min-height: 0;
    margin-bottom: 0;
    border: none;
}

.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-nav {
    float: none;
    margin: 0;

}

.nav.navbar-nav::before,
.nav.navbar-nav::after {
    display: none;
}

.navbar-nav>li {
    float: none;
    display: inline-block;
}

.navbar-nav>li>a {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    font-size: 16px;
    color: #fff;
    line-height: normal;
      display: block;
    text-decoration: none;
    display: block;
    line-height: 36px;
    padding: 0 15px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    opacity: 1;
    background: url(img/hover_line.png) center bottom no-repeat;
}

.nav a {
    border: none;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: #21323C;
    border-color: #21323C;
}

.dropdown-menu {
    position: absolute;
    display: none;
    float: none;
    margin: 0 0 0;
    font-size: 14px;
    background-color: #000;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dropdown-menu>li>a {
    display: block;
    text-decoration: none;
    color: #8e9197;
    display: block;
    line-height: 36px;
    padding: 0 15px;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    
}

.parol {
    float: right;
    margin: 8px 0 0 0;
}

.slick-dots {
    bottom: 29px;
    right: 25px;
    text-align: right;
}

.slick-dots li {
    width: 17px;
}

.slick-dots::before {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 0;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #974ad1;
    margin: 3px;
    cursor: pointer;
    vertical-align: middle;
}

.slick-dots li.slick-active button {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fcf600;
    margin: 3px;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.slick-dots li button:before {
    content: "";
}

.slick-dots li {
    margin: 0;
}

.payment {
    max-width: 588px;
}

.jackpot {
    max-width: 354px;
}

ul.main-menu {
    margin: 0 0 0 30px;
}

.main-menu li {
	display: inline-block;
	margin: 0 -0.3em 0 0;
}

.game-wrapper {
    padding: 0 28px;
}

.game-wrapper .row {
	margin: 0 -5px;
}

.game-wrapper .col-sm-4 {
	padding: 0 5px;
}

.game-item {
	position: relative;
	margin: 0 0 5px 0;
}

.game-title {
    color: #fff;
    display: block;
    text-align: center;
    padding: 5px 0;
}

.game-btn {
	opacity: 0;
	position: absolute;
	padding: 0 40px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.game-item:hover {
	box-shadow: 0 0 10px 6px #650dbc;
}

.demo {
	left: 30px;
}

.play {
	right: 30px;
}

.az-reg-btn {
    width: 280px;
    display: block;
    margin: 15px auto;
    font-size: 15px;
    text-align: center;
    line-height: 32px;
    border-radius: 16px;
    padding: 7px 8px;
    color: #fff;
    cursor: pointer;
    transition: background .3s;
    background-color: #95240e;
    text-decoration: none;
}

.az-reg-btn:hover {
    color: #fff;
}

.game-item:hover .game-btn {
	opacity: 1;
	background: rgba(0,0,0,.6);
}

.game-btn a {
	position: absolute;
	bottom: 80px;
	margin: 0 10px;
}

.game-btn a:hover {
	opacity: .8;
}

.show-all {
	width: 233px;
	display: block;
	margin: 10px auto 0;
}

.wp-pagenavi {
    padding: 30px 0 !important;
}

.wp-pagenavi a, .wp-pagenavi span {
    color: #fff;
    font-weight: bold;
}
/* Comment */
.comment-box { padding: 10px;}
#commentform { margin: 0 0 40px 0;}
.guests-list  { padding: 0;}
.guests-list  li { padding: 10px; margin: 0 0 10px 0;  border-bottom: 1px dotted #000; list-style: none; background: #302d28; border-radius: 6px;}
.guest-info { display:block; padding: 0 0 5px 0; margin: 0 0 10px 0; font-weight: bold; }
.guest-info a,.guest-info span { text-transform: uppercase;}
#feedback-form label,
.wpcf7-form label { padding: 0 0 4px 0; display:block;color: #fff; font-size: 12px;}
#feedback-form  input[type="text"],input[type="email"],
.wpcf7-form  input[type="text"]{ border-radius: 6px; font-size: 15px; font-weight: bold; margin: 0 0 20px 0; width: 198px; height: 32px; padding: 0 10px; border: 1px solid #d2d2d2; background: #fff; color: #000;}
#feedback-form  input[type="submit"],
.wpcf7-form input[type="submit"]{  border:none; padding: 8px 21px; margin: 0 0 20px 0; color: #fff; font-size: 15px;font-weight: bold;  display:block; cursor: pointer; background: #95240e;  border-radius: 6px;}
#feedback-form textarea,
.wpcf7-form textarea {width:100%; display: block; max-width: 500px; margin: 0 0 15px 0; height: 120px; border: 1px solid #d2d2d2; resize: none; border-radius: 6px; font-size: 15px; font-weight: bold; padding: 10px; text-transform: uppercase; color: #000;}
.navigation-single { padding: 15px 0;}
#no-comments { padding: 0 0 20px 0;}
.post-realted-box { padding: 20px 0; border-top: 2px solid #ccc; text-transform: uppercase;}
.post-realted-box h3,.rnd-artc{ padding: 0 0 20px 0;  font-size: 17px; font-weight:bold; display:block;}
.wp-pagenavi { overflow:hidden; padding: 10px 0 20px 0; text-align: center;}
.comments-formed-arct,
.comment-this-them {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 22px;
}

/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 20px 0 0 0;
	min-height: 80px;
}

.footer-nav {
	border-bottom: 1px solid #41618c;
}

.footer-nav ul {
	margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.footer-nav ul li {
    font-size: 15px;
    display: inline-block;
    padding: 3px 15px;
}

.footer-nav ul li a {
	text-decoration: none;
    color: #887c9b;
    text-shadow: 1px 0 0 rgba(113,103,128,.6), -1px 0 0 rgba(113,103,128,.3);
}

.footer-nav ul li a:hover {
	    color: #fff;
	    opacity: 1;
}

.partners {
    margin: 10px 0 5px 0;
    text-align: center;
}

.copyright {
    padding: 10px 0 0 25px;
    font-size: 12px;
    line-height: 12px;
    color: #d2a4f7;
}

.copyright > img {
    float: left;
    margin: 0 30px 0 0;
}

.awards {
    margin: 20px 0 20px 0;
    text-align: center;
}

.footer-links.justify-align > * {
    margin-right: -0.3em;
    font-size: 10px;
}

.footer-links.justify-align {
    font-size: 0;
}

.btn-to-top {
	position: fixed;
    cursor: pointer;
    width: 75px;
    right: 0;
   	bottom: 30px
}

.online-support {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    width: 186px;
    height: 50px;
    background: url(img/online-support.png) no-repeat;
    z-index: 777;
    position: fixed;
    cursor: pointer;
    left: -72px;
    top: 45%;
    text-align: center;
    line-height: 42px;
    color: #fff;
    font-size: 17px;
    font-weight: bolder;
    text-shadow: 0 2px 1px #030303, 1px 0 1px rgba(255,255,255,.5), -1px 0 1px rgba(255,255,255,.5);
}

.online-support:hover {
    margin-left: 2px;
    background: url(img/online-support.png) 0 -51px no-repeat;
}

.excerpt {
    padding: 0 20px;

}

.excerpt h1, .excerpt h2, .excerpt h3, .excerpt h4,
.title-page  {
    text-align: center;
}
.excerpt h1,
.title-page {
    padding: 5px;
    border-bottom: 1px solid #fff;
}
.excerpt h2, .excerpt h3, .excerpt h4,
.title-page {
    color: #887CE1;
}

.excerpt a {
    color: #ffcc00;
    text-decoration: underline;
}

.excerpt iframe,
.excerpt object {
    width: 100% !important;
    min-height: 500px !important;
    display: block;
}
.excerpt li {
    font-size: 14px;
}

/* 5 - END of footer ---------------------------------------------------------- */

/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 991px) {
.container {
	width: 750px;
}	
.payment {
    margin: 0 auto;
    display: block;
}
.jackpot {
    max-width: 354px;
    display: block;
    margin: 20px auto 0;
}
.main-menu li {
    max-width: 25%;
    vertical-align: top;
}
.footer-links.justify-align > * {
    display: block;
    text-align: center;
}
.copyright > img {
    display: none;
}


}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
	
.container {
	width: auto;
}
.navbar {
    display: block;
}	
.navbar-toggle {
    float: none;
    margin-top: 8px;
    margin-right: 0;
    margin-left: 10px;
    margin-bottom: 8px;
    border: 1px solid #fff;
    border-radius: 4px;
}
.navbar-toggle .icon-bar {
    background: #fff;
}
.navbar-toggle .icon-bar:nth-of-type(2) {
      top: 1px;
}

.navbar-toggle .icon-bar:nth-of-type(3) {
    top: 2px;
}

.navbar-toggle .icon-bar {
      position: relative;
      transition: all 500ms ease-in-out;
}

.navbar-toggle.active .icon-bar:nth-of-type(1) {
      top: 6px;
      transform: rotate(45deg);
}

.navbar-toggle.active .icon-bar:nth-of-type(2) {
      background-color: transparent;
}

.navbar-toggle.active .icon-bar:nth-of-type(3) {
      top: -6px;
      transform: rotate(-45deg);
}
.navbar-nav>li {
    display: block;
    text-align: center;
}
.navbar-nav > li > a {
    margin: 0;
}
.parol {
    float: none;
    width: 204px;
    margin: 8px auto 0;
}
.main-menu li {
    max-width: 50%;
}
.game-item {
    width: 292px;
    margin: 0 auto 10px;
}
.game-wrapper {
    padding: 0;
}
.footer-links,
.parol,
.jackpot,
.payment,
.online-support,
.mobile-hide {
    display: none !important;
}
.justify-align {
    text-align: center;
}
.excerpt img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin:  0 auto 10px auto;
    float: none;
}

.row {
    margin-top: 15px;
}

.game-item {
    margin: 0 0 5px 0;
    width: auto !important;
}

.game-item img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    border-radius: 12px;
}
.game-title {
    width: auto !important;
}

.game-btn a {
    left: 30px;
    bottom: 50px;
}

.demo {
    display: none;
}

.col-sm-4 {
    float: left;
    width: 49%;
}

.games .col-sm-4 {
    height: 155px;
}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
h1 {
    font-size: 30px;
}   
h2 {
    font-size: 26px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 16px;
}
blockquote {
    padding: 10px 0 10px 30px;
    font-size: 16px;
}	
ul.main-menu {
    margin: 0;
}
.reg-btn-header {
    margin: 0 0 0 20px;
}
}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */

a.azinoreg {
    color: #141211;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(rgb(65, 255, 45), rgb(31, 117, 18));
    border-radius: 5px;
    padding: 6px 20px
;
    text-decoration: none !important;
    display: inline-block;
}

div#lg-button {
    float: right;
    margin: 21px auto;
}

a.azinovhod {
    color: #141211;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(rgb(47, 166, 242), rgb(16, 56, 119));
    border-radius: 5px;
    padding: 6px 20px;
    margin: 0 10px 0 5px;
    text-decoration: none !important;
    display: inline-block;
}

.wp-pagenavi{clear:both}.wp-pagenavi a,.wp-pagenavi span{text-decoration:none;border:1px solid #bfbfbf;padding:3px 5px;margin:2px}.wp-pagenavi a:hover,.wp-pagenavi span.current{border-color:#000}.wp-pagenavi span.current{font-weight:700}