﻿/*

Theme Name: Casino Catalog

*/

*,
:after,
:before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

img {
    vertical-align: middle;
}

ol,
ul {
    list-style: none;
}

@font-face {
    font-family: roboto;
    src: local('Roboto'), 
         url('fonts/robotoregular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
	font-display: swap;
}

@font-face {
    font-family: roboto;
    src: local('Roboto'), 
         url('fonts/robotomedium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
	font-display: swap;
}

@font-face {
    font-family: roboto;
    src: local('Roboto'), 
         url('fonts/robotobold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
	font-display: swap;
}

body {
	position: relative;
	background-color: #e2e6ee;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	font-family: roboto;
	color: #1e1e1e;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: roboto;
	color: #000;
    font-size: 100%;
	line-height: 1.45;
	font-weight: 600;
	margin-bottom: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

p {
    margin-bottom: 20px;
}

a {
    color: #ff6d2d;
	text-decoration: none;
}

a:hover {
    color: #ff2d2d;
}

.button {
    background-color: #ff6d2d;
    display: table;
	cursor: pointer;
	font-family: roboto;
    color: #fff;
    font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
    border: 1px solid #ff6d2d;
	outline: none;
	border-radius: 8px;
	user-select: none;
    transition: all .5s;
	padding: 13px 20px;
}

.button:hover {
	background-color: #ff2d2d;
	color: #fff;
	border-color: #ff2d2d;
}

.button.neutral {
    background-color: #fff;
	color: #000;
    border-color: rgb(0 0 0 / 35%);
}

.button.neutral:hover {
	background-color: #fff;
	color: #000;
    border-color: rgb(0 0 0 / 50%);
}

.row {
	position: relative;
    font-size: 0;
}

.main {
	flex: 1 0 auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	padding: 0;
	margin: -1px;
}

.ellipsis {
	max-width: 100%;
	display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* SCROLLBAR */

.scrollable {
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.scrollable::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.scrollbar {
    position: relative;
	background-color: #e2e6ee;
	height: 2px;
	border-radius: 2px;
}

.scrollbar .scrollbar-thumb {
    position: absolute;
	background-color: rgb(0 0 0 / 8%);
    height: 100%;
    border-radius: 2px;
}


/* ОСНОВНОЙ КОНТЕНТ */

.main {
	padding-bottom: 40px;
}

.content {
	flex: 1 0 auto;
}


/* Action Buttons */

.action-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	margin-top: 25px;
}


/* Sticky Buttons */

.sticky-footer {
	z-index: 9999;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	visibility: hidden;
    pointer-events: none;
	opacity: 0;
	box-shadow: 0 -4px 20px rgb(0 0 0 / 20%);
	border-top-left-radius: 13px;
	border-top-right-radius: 13px;
	transform: translate3d(0, 100%, 0); 
    will-change: transform, opacity;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	padding: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.sticky-footer.is-visible {
	visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.sticky-footer .sticky-footer-close {
	position: absolute;
	top: -27px;
	right: 6px;
	background-color: #333;
	width: 24px;
	height: 24px;
	display: block;
	cursor: pointer;
	border: none;
	outline: none;
	box-shadow: 0 -4px 20px rgb(0 0 0 / 20%);
	border-radius: 20px;
}

.sticky-footer .sticky-footer-close:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	background-position: -80px -20px;
	width: 20px;
	height: 20px;
	display: block;
}

.sticky-footer .sticky-footer-container {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.sticky-footer .sticky-btn {
	background-color: #e2e6ee;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #000;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
	border-radius: 8px;
	border: none;
	transition: transform 0.1s;
	padding: 8px 5px;
}

.sticky-footer .sticky-btn.sticky-btn-bonus {
	background-color: #6540ca;
	color: #fff;
}

.sticky-footer .sticky-btn:active {
	transform: scale(0.98);
}

.sticky-footer .sticky-btn .sticky-btn-title {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 2px;
}

.sticky-footer .sticky-btn .sticky-btn-desc {
	display: block;
	font-size: 10px;
	font-weight: 400;
}


/* ШАПКА */

.header {
	position: relative;
	background-color: #edf0f5;
	padding-top: 6px;
	padding-bottom: 7px;
}

.header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .logotype {
	background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-size: 165px 34px;
	width: 165px;
	height: 34px;
	display: block;
	outline: none;
}

.header .navigation li a {
	color: #000;
	line-height: 1.4;
}

.header .search {
	position: absolute;
	top: 50%;
	width: 250px;
	display: none;
	margin-top: -24px;
}

.header .search.show {
	z-index: 10002;
	display: block;
}

.header .search input {
    background-color: #d2d7df;
    width: 100%;
	height: 48px;
	display: block;
	font-family: inherit;
	font-size: 17px;
	line-height: 48px;
    border: 2px solid #d2d7df;
	outline: none;
	border-radius: 13px;
	-webkit-transition: background-color .1s ease-out;
	transition: background-color .1s ease-out;
	padding-left: 15px;
	padding-right: 48px;
}

.header .search-toggle { 
	position: relative;
	background-color: transparent;
	width: 48px;
	height: 48px;
	cursor: pointer;
	border: none;
	outline: none;
	border-radius: 13px;
	margin-left: auto;
}

.header .search-toggle.close { 
	z-index: 10003;
}

.header .search-toggle:after {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	background-position: 0 0;
	width: 20px;
	height: 20px;
	display: block;
}

.header .search-toggle.close:after {
	background-position: -40px 0;
}


/* ХЛЕБНЫЕ КРОШКИ */

.breadcrumbs {
	font-size: 13px;
	margin-bottom: 15px;
}

.breadcrumbs li {
	position: relative;
	display: inline-block;
	color: rgb(0 0 0 / 64%);
}

.breadcrumbs li:after {
    content: "›";
    display: inline-block;
    margin: 0 5px;
}

.breadcrumbs li:last-child:after {
    content: none;
}

.breadcrumbs li a {
	color: rgb(0 0 0 / 64%);
	border-bottom: 1px solid transparent;
}

.breadcrumbs li a:hover {
	color: #000;
	border-color: rgb(0 0 0 / 20%);
}


/* БЛОК */

.block {
	background-color: #fff;
	border-radius: 13px;
	margin-bottom: 20px;
}


/* ЗАГОЛОВОК */

.title {
	display: block;
    color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}


/* Rating */

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating .rating-stars {
    display: flex;
    gap: 2px; 
}

.rating .rating-star {
    background-color: transparent;
    background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-position: -80px 0;
    background-size: 160px;
    width: 20px;
    height: 20px;
	cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    transition: transform 0.1s ease;
    padding: 0;
    margin: 0;
}

.rating-star.is-active,
.rating:not(.is-voted) .rating-star.is-hover {
    background-position: -60px 0;
}

.rating.is-voted .rating-star,
.rating.is-sending .rating-star {
    cursor: default;
    pointer-events: none;
}

.rating-meta {
	color: rgb(0 0 0 / 80%);
    font-size: 14px;
    line-height: 1;
}

.rating-star:active {
    transform: scale(0.9);
}


/* Провайдер */

.provider {
    position: relative;
	background-color: #333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	text-align: center;
}

.provider.light {
    background-color: #fff;
}

.provider h1 {
    color: #fff;
}

.provider.light h1 {
    color: #000;
}

.provider p {
	max-width: 640px;
    color: rgb(255 255 255 / 86%);
	font-size: 17px;
	line-height: 1.3;
	margin-left: auto;
	margin-right: auto;
}

.provider.light p {
    color: rgb(0 0 0 / 86%);
}


/* ГЛАВНЫЙ ЭКРАН */

.hero {
	background-color: #fff;
	text-align: center;
	border-radius: 13px;
	margin-bottom: 20px;
}

.hero .hero-image {
	position: relative;
	width: 100%;
	max-height: 360px;
	overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 13px;
}

.hero .hero-image .desktop,
.hero .hero-image .mobile {
    width: 100%;
    height: 100%;
    flex-shrink: 0; 
}

.hero .hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;	
}

.hero .hero-content .hero-title h1 {
	margin-top: 0;
	margin-bottom: 0;
}

.hero .hero-content .hero-title .hero-subtitle {
	display: block;
}

.hero .hero-content .hero-title .rating {
    margin-top: 8px;
}

.hero .hero-content .hero-info {
	max-width: 100%;
    display: flex;
	justify-content: center;
	text-align: left;
}

.hero .hero-content .hero-info dl,
.hero .hero-content .hero-info dl dt,
.hero .hero-content .hero-info dl dd {
	display: block;
	margin: 0;
}

.hero .hero-content .hero-info dl,
.hero .hero-content .hero-info dl dt,
.hero .hero-content .hero-info dl dd {
	display: block;
	margin: 0;
}

.hero .hero-content .hero-info dl {
	position: relative;
}

.hero .hero-content .hero-info dl:last-child {
	padding-right: 0;
}

.hero .hero-content .hero-info dl:after {
    content: '';
    position: absolute;
    top: 50%;
	background-color: rgb(0 0 0 / 10%);
	width: 1px;
    height: 50px;
	margin-top: -25px;
}

.hero .hero-content .hero-info dl:last-child:after {
	content: none;
}

.hero .hero-content .hero-info dl dt {
	color: rgb(0 0 0 / 80%);
	margin-bottom: 7px;
}

.hero .hero-content .hero-info dl dd {
	color: rgb(0 0 0 / 92%);
	font-weight: 500;
	line-height: 1.3;
}


/* Latest Wins */

.latest-wins {
    position: absolute;
	right: 10px;
	bottom: 3px;
}

.latest-wins .latest-win-item {
	background-color: #fff;
    display: flex;
	gap: 15px;
    align-items: center;
    opacity: 0;
	font-size: 15px;
	border-radius: 13px;
	box-shadow: 0 1px 6px rgb(0 0 0 / 14%);
    transform: translateY(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	padding: 11px 16px 12px;
	margin-bottom: 7px;
}

.latest-wins .latest-win-item.show {
    opacity: 1;
    transform: translateY(0);
}

.latest-wins .latest-win-item.hide {
    opacity: 0;
    transform: translateY(20px);
}

.latest-wins .latest-win-item .mail {
	color: #333;
	font-weight: 400;
}

.latest-wins .latest-win-item .amount {
	color: #00c511;
	font-weight: 600;
	margin-left: auto;
}


/* Gallery */

.gallery {
	position: relative;
	align-items: stretch;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.gallery .gallery-item img {
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
	object-fit: cover;
	border-radius: 13px;	
}

.gallery .gallery-item.placeholder {
	background-color: #c6ccd5;
	border-radius: 13px;
}


/* Demo */

.demo {
	margin-bottom: 20px;
}

.demo .demo-wrapper {
	position: relative;
	background-color: #d2d7df;
	width: 100%;
	overflow: hidden;
	border-radius: 13px;
	padding-top: 56.25%;
}

.demo .demo-wrapper.demo--fullscreen {
	z-index: 10001;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
	border-radius: 0;
	padding-top: 0;
}

.demo .demo-wrapper .fullscreen-button {
	z-index: 2;
	position: absolute;
	background-color: #fff;
    width: 36px;
	height: 36px;
	opacity: .8;
	cursor: pointer;
	border-radius: 8px;
	border: none;
	outline: none;
	padding: 0;
}

.demo .demo-wrapper .fullscreen-button:hover {
	opacity: 1;
}

.demo .demo-wrapper .fullscreen-button:after {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	background-position: 0 -20px;
	width: 20px;
	height: 20px;
	display: block;
}

.demo .demo-wrapper.demo--fullscreen .fullscreen-button:after {
	background-position: -20px -20px;
}

.demo .demo-wrapper iframe {
	z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	overflow: hidden;
    border: none;
}

.demo .demo-wrapper.demo--fullscreen.demo--has-referral iframe {
    height: calc(100% - 36px);
}

.demo .demo-wrapper .referral-link {
	z-index: 2;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #ff6d2d;
	width: 100%;
	height: 36px;
	display: block;
	color: #fff;
    font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 36px;
	text-align: center;
	user-select: none;
	border-radius: 0;
	padding: 0 20px;
}

.demo .demo-wrapper .referral-link:hover {
	background-color: #ff2d2d;
	color: #fff;
}


/* ТАБЛИЦА */

.game-table table {
    width: 100%;
    text-align: left;
}

.game-table table tr td {
    vertical-align: top;
	border: none;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
	padding: 10px 0 11px;
}

.game-table table tr:last-child td {
	border: none;
}


/* Bonus */

.bonus-info {
	background-color: #fff;
}

.bonus-list {
    display: flex;
    gap: 20px; 
    justify-content: space-between;
	margin-top: 25px;
}

.bonus-list .bonus-item {
	min-width: 250px;  
    flex: 1;
    text-align: left; 
	border-radius: 13px;	
	padding: 20px 25px;
}

.bonus-list .bonus-item-1 {
    background-color: #eeeafd;
}

.bonus-list .bonus-item-2 {
    background-color: #e9f7fd;
}

.bonus-list .bonus-item-3 {
    background-color: #fdf4e9;
}

.bonus-list .bonus-item::before {
    content: '';
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	width: 34px;
	height: 34px;
    display: block;
    margin: 0 0 20px;
}

.bonus-list .bonus-item-1::before {
    background-position: 0 -40px;
}

.bonus-list .bonus-item-2::before {
    background-position: -34px -40px;
}

.bonus-list .bonus-item-3::before {
    background-position: -68px -40px;
}

.bonus-list .bonus-item h3 {
	white-space: normal;
	margin-bottom: 10px;    
}

.bonus-list .bonus-item p {
	white-space: normal;
	color: rgb(0 0 0 / 80%);
	margin: 0;	
}

.bonus-info .button {
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
}


/* Информация об авторе */

.author-info .author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-info .author-header:has(.author-photo) {
    flex-wrap: wrap;
}

.author-info .author-header .author-photo {
    flex-shrink: 0;
}

.author-info .author-header .author-photo img {
    width: 104px;
    height: 104px;
    border-radius: 13px;
}

.author-info .author-header .author-info {
    min-width: 136px;
    flex: 1;
}

.author-info .author-header .author-info .author-name {
	display: block;
    color: #333;
    font-size: 20px;
    font-weight: 600;
	line-height: 1.3;
    margin-bottom: 10px;
}

.author-info .author-header .author-info .author-title {
    margin: 0;
}

.author-info .author-body .author-achievements {
    margin-top: 25px;
}

.author-info .author-body .author-achievements ul li {
    background-color: #f0f2f5;
	display: inline-block;
	color: #000;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	border-radius: 8px;
	padding: 8px 12px;
	margin: 0 5px 8px 0;
}

.author-info .author-body .author-email {
    margin-top: 20px;
}


/* ЛИСТИНГ */

.listing {
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-auto-rows: 1fr;
	margin-bottom: 40px;
}

.listing .card {
	background-color: #fff;
	max-width: 295px;
	vertical-align: top;
	text-align: left;
	border-radius: 13px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

.listing .card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.listing .card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 13px;
	transition: transform 0.5s ease;
}

.listing .card:hover img {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgb(0 0 0 / 15%);
}

.listing .card .card-content {
	padding: 10px 13px 12px;
}

.listing .card .card-content .name {
	display: block;
	color: #000;
	font-weight: 500;
	line-height: 1.4;
}

.listing .card .card-content ul {
	display: flex;
	flex-wrap: wrap; 
	gap: 18px;
	justify-content: space-between;
	margin-top: 8px;
}

.listing .card .card-content ul li {
	display: block;
	font-size: 13px;
}

.listing .card .card-content ul li:before {
	content: attr(data-label);
	display: block;
	color: rgb(0 0 0 / 60%);
	font-size: 11px;
}


/* ТЕКСТ */

.text {
	text-align: left;
}

.text ul,
.text ol {
    margin-bottom: 25px;
}

.text ul:last-child,
.text ol:last-child,
.text p:last-child {
    margin-bottom: 0;
}

.text ol {
    counter-reset: list;
}

.text ul li,
.text ol li {
    position: relative;
    display: block;
    margin: 6px 0;
}

.text ul li:before {
    content: "";
    background-color: #ff6d2d;
    width: 4px;
    height: 4px;
	display: inline-block;
	vertical-align: middle;
    border-radius: 50%;
    margin-right: 15px;
}

.text ol li:before {
    content: counter(list) ". ";
	counter-increment: list;
}

.text table {
	max-width: 100%;
	display: inline-block;
	overflow-x: auto;
	margin-bottom: 25px;
}

.text table caption {
	font-size: 14px;
    font-weight: 400;
	text-align: left;
    margin-bottom: 10px;
}

.text table th,
.text table td {
    vertical-align: top;
    border: 1px solid #ddd;
	padding: 15px 20px;
}

.text thead th {
    vertical-align: bottom;
	font-weight: 500;
}

.text mark {
	background-color: #ffeea4;
    padding: 4px 2px;
}

.text .rating {
	margin-top: 25px;
}


/* ИЗОБРАЖЕНИЯ */

.image {
	margin: 0;
	margin-bottom: 25px;
}

.image img {
    max-width: 100%;
    height: auto;
	display: block;
}

.image .caption {
    display: block;
    font-size: 80%;
	color: rgb(0 0 0 / 80%);
	font-weight: 400;
	padding: 10px 0 0;
}


/* ВОПРОСЫ И ОТВЕТЫ */

.qa .question {
	text-align: left;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
	padding-top: 18px;
	padding-bottom: 20px;
	margin: 0
}

.qa .question:first-child {
	padding-top: 0;
}

.qa .question:last-child {
    border-bottom: none;
	padding-bottom: 0;
}

.qa .question .name {
	position: relative;
	display: block;
	cursor: pointer;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	padding-right: 25px;
	margin-bottom: 0;
}

.qa .question:not(.show) .name:hover {
	color: #ff6d2d;
}

.qa .question.show .name {
	cursor: default;
}

.qa .question .name:after {
	content: "";
	position: absolute;
	top: 7px;
	right: 0;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	background-position: -40px -20px;
	width: 20px;
	height: 20px;
	display: block;
	opacity: .6;
}

.qa .question.show .name:after {
	background-position: -60px -20px;
}

.qa .question .answer {
	display: none;
	margin: 20px 0 0;
}

.qa .question.show .answer {
	display: block;
}


/* КНОПКИ СОЦИАЛЬНЫХ СЕТЕЙ */

.social {
	text-align: center;
	margin-bottom: 50px;
}

.social .item {
	position: relative;
	width: 40px;
	height: 40px;
	display: inline-block;
	cursor: pointer;
    text-indent: -9999px;
	border: none;
	outline: none;
	border-radius: 8px;
	margin: 4px;
}

.social .item:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	width: 20px;
	height: 20px;
	display: block;
}

.social .item.vk {
	background-color: #4c75a3;
}

.social .item.vk:after {
	background-position: -60px 0;
}

.social .item.fb {
	background-color: #3b5998;
}

.social .item.fb:after {
	background-position: -80px 0;
}

.social .item.x {
	background-color: #00abf1;
}

.social .item.x:after {
	background-position: -100px 0;
}

.social .item.telegram {
	background-color: #64a9dc;
}

.social .item.telegram:after {
	background-position: -120px 0;
}

.social .item.whatsapp {
	background-color: #65bc54;
}

.social .item.whatsapp:after {
	background-position: -140px 0;
}


/* ПАГИНАЦИЯ */

.pagination {
    text-align: center;
    margin: 45px auto;
}

.pagination a,
.pagination span {
	background-color: #d2d7df;
	width: 46px;
	height: 46px;
	display: inline-block;
	color: #000;
    font-size: 15px;
	font-weight: 500;
	line-height: 46px;
	border: none;
	outline: none;
	border-radius: 13px;
	margin: 4px;
}

.pagination a:hover {
	background-color: #f2f2f2;
}

.pagination .current {
	background-color: #ff6d2d;
    color: #fff;
}


/* КАРТА САЙТА */

.sitemap-children {
    list-style: none;
    padding-left: 0;
    margin-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.sitemap-item {
    margin-bottom: 10px;
}

.sitemap-item-level-1 {
    margin-left: 20px;
}

.sitemap-item-level-2 {
    margin-left: 40px;
}

.sitemap-item-level-3 {
    margin-left: 60px;
}

.sitemap-link {
    color: #333;
}

.sitemap-link:hover {
    color: #ff2d2d;
}


/* POPUP */

.popup .popup-image {
	z-index: 1;
	position: fixed;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: 95vw;
	max-height: 95vh;
	display: block;
	transform: translate(-50%, -50%);
}

.popup .popup-close {
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgb(0 0 0 / 20%);
	width: 44px;
	height: 44px;
	display: block;
	cursor: pointer;
	border: none;
	outline: none;
}

.popup .popup-close:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	background-position: -80px -20px;
	width: 20px;
	height: 20px;
	display: block;
}

.popup .popup-prev,
.popup .popup-next {
	z-index: 2;
	position: absolute;
	top: calc(50% - 22px);
	background-color: rgb(0 0 0 / 20%);
	width: 44px;
	height: 44px;
	display: block;
	cursor: pointer;
	border: none;
	outline: none;
}

.popup .popup-prev {
	left: 0;
}

.popup .popup-next {
	right: 0;
}

.popup .popup-prev:after,
.popup .popup-next:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	background-image: url(images/icons/sprite.png);
    background-repeat: no-repeat;
    background-size: 160px;
	width: 20px;
	height: 20px;
	display: block;
}

.popup .popup-prev:after {
	background-position: -100px -20px;
}

.popup .popup-next:after {
	background-position: -120px -20px;
}

.popup .popup-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border: 2px solid rgb(255 255 255 / 30%);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* ПОДВАЛ */

.footer {
	background-color: #1e1f20;
	width: 100%;
	flex: 0 0 auto;
	color: #fff;
	font-size: 15px;
    padding-top: 30px;
}

.footer li {
    display: inline-block;
}

.footer li a {
	color: #fff;
}

.footer li a:hover {
	opacity: .8;
}

.footer .top,
.footer .middle,
.footer .bottom {
    padding-top: 20px;
	padding-bottom: 20px;
}

.footer .top .menu {
	margin-bottom: 10px;
}

.footer .top .menu li {
	margin-bottom: 10px;
}

.footer .middle {
	color: rgb(255 255 255 / 50%);
	font-size: 14px;
}

.footer .middle .gambleaware-logo {
	display: block;
	margin-top: 40px;
}

.footer .bottom {
	border-top: 1px solid #242729;
	margin-top: 20px;
}

.footer .bottom .language-switcher li {
	margin-bottom: 10px;
}

.footer .bottom .language-switcher li.is_current {
	opacity: .6;
}

.footer .bottom .language-switcher li:before,
.footer .bottom .language-switcher li span,
.footer .bottom .language-switcher li a {
	display: inline-block;
	vertical-align: middle;
}


/* NOTICE */

.notice-container {
	z-index: 10003;
	position: fixed;
	right: 15px;
	bottom: 15px;
	max-width: 290px;
}

.notice-container .notice {
	position: relative;
	overflow: hidden;
	color: #fff;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
	border-radius: 8px;
	padding: 15px 20px;
	margin-bottom: 10px;
}

.notice-container .notice:last-child {
	margin-bottom: 0;
}

.notice-container .notice.info {
	background-color: #0050d8;
}

.notice-container .notice.warning {
	background-color: #fecc2f;
}

.notice-container .notice.success {
	background-color: #028357;
}

.notice-container .notice.error {
	background-color: #e51045;
}

.notice-container .notice output {
	z-index: 2;
	position: relative;
    display: block;
}

.notice-container .notice .notice-progress {
	z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
	background-color: rgb(255 255 255 / 70%);
	width: 100%;
    height: 3px;
    transition: width 0.1s linear; 
}


/* COOKIES */

.cookies {
	z-index: 10000;
	position: fixed;
    left: 50%;
	right: auto;
	bottom: 10px;
	background-color: #424242;
    width: 300px;
	display: none;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	line-height: 1.2;
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgb(0 0 0 / 10%);
	transform: translate(-50%,0);
    padding: 8px 8px 8px 20px;
}

.cookies.show {
	display: flex;
}

.cookies small {
	width: calc(100% - 46px);
	width: -moz-calc(100% - 46px);
	width: -webkit-calc(100% - 46px);
	display: inline-block;
	font-size: 13px;
}

.cookies button {
	background-color: #ff6d2d;
	width: 36px;
	height: 36px;
	cursor: pointer;
	font-family: inherit;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	outline: none;
	border: none;
	border-radius: 12px;
	margin-left: 10px;
}

.cookies button:hover {
	background-color: #d93449;
	color: #fff;
}


/* OVERLAY */

.overlay {
	z-index: 10001;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0 0 0 / 80%);
	width: 100%;
	height: 100%;
}


/* АВТОЗАПОЛНЕНИЕ */

.autocomplete {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
    background-color: #fff;
	height: auto;
	border-radius: 13px;
	padding: 6px;
}

.autocomplete li {
	display: block;
}

.autocomplete li.no-results,
.autocomplete li a {
	display: block;
	color: #000;
	font-size: 15px;
	line-height: 1.5;
	border-radius: 13px;
	padding: 5px 10px;
}

.autocomplete li a:hover {
	background-color: #d2d7df;
}

.autocomplete li.focused a {
	background-color: #1e1f20;
	color: #fff;
}


/* АДАПТИВ */

@media screen and (min-width: 980px)  {
	
	h1 {
		font-size: 38px;
	}
	
	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 21px;
	}
	
	.container {
		position: relative;
		width: 100%;
		max-width: 1280px;
		min-width: 980px;
		padding-right: 20px;
		padding-left: 20px;
		margin-right: auto;
		margin-left: auto;
	}
	
	.action-buttons {
		gap: 15px;
	}
	
	.action-buttons .button {
		text-align: left;		
	}
	
	.sticky-footer {
		display: none !important;
	}
	
	.header {
		margin-bottom: 15px;
	}
	
	.header .logotype {
		margin-right: 60px;
	}
	
	.header .navigation {
		width: calc(100% - 330px);
		width: -moz-calc(100% - 330px);
		width: -webkit-calc(100% - 330px);
		margin-right: auto;
	}

	.header .navigation li {
		z-index: 1;
		position: relative;
		display: inline-block;
		vertical-align: middle;
		border-radius: 13px;
		padding: 6px 12px 8px;
	}
	
	.header .navigation li a {
		font-size: 14px;
	}
	
	.header .navigation li:hover {
		z-index: 2;
		background-color: #d2d7df;
	}
	
	.header .navigation li.dropdown {
		border-radius: 13px 13px 0 0;
	}		
	
	.header .navigation li.dropdown:after {
		content: "▼";
		display: inline-block;
		vertical-align: middle;
		font-size: 6px;
	}
	
	.header .navigation li a {
		display: inline-block;
	}
	
	.header .navigation .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #d2d7df;
		min-width: 320px;
		display: none;
		opacity: 0;
		transition: .5s linear;
		border-radius: 0 13px 13px 13px;
		padding: 10px 0;
	}
	
	.header .navigation li:hover > .sub-menu {
		display: block;
		opacity: 1;
	}
	
	.header .navigation li .sub-menu li {
		display: block;
		border-radius: 0;
	}
	
	.header .navigation li .sub-menu li:hover {
		background-color: #000;
	}
	
	.header .navigation li .sub-menu li a {
		display: block;
	}
	
	.header .navigation li .sub-menu li:hover a {
		color: #fff;
	}
	
	.header .search {
		right: 15px;
	}
	
	.header .navigation-toggle {
		display: none;
	}
	
	.block {
		padding: 30px;
	}
	
	.title {
		text-align: left;
	}
	
	.hero .hero-image .mobile {
		display: none;
	}
	
	.hero .hero-content {
		display: flex;
		align-items: center;
		text-align: left;
		padding: 16px 30px 25px;
	}
	
	.hero .hero-title {
		max-width: 450px;
		margin-right: 50px;
	}
	
	.hero .hero-title h1 {
		line-height: 1.3;
	}
	
	.hero .hero-content .hero-title span {
		margin-left: 2px;
	}
	
	.hero .hero-info {
		margin-right: 50px;
	}
	
	.hero .hero-info dl {
		padding-right: 44px;
	}

	.hero .hero-info dl:after {
		right: 22px;
	}
	
	.hero .hero-info dl dt {
		font-size: 14px;
	}

	.hero .hero-info dl dd {
		font-size: 16px;
	}
	
	.hero .action-buttons {
		margin-top: 0;
		margin-left: auto;
	}
	
	.gallery {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
	}
	
	.demo .demo-wrapper .fullscreen-button {
		top: 15px;
		right: 15px;
	}
	
	.game-table table tr td:first-child {
		width: 38%;
		padding-right: 30px;
	}

	.game-table table tr td:last-child {
		width: 62%;
	}
	
	.listing {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 20px;
	}
	
	.listing .card .card-content .name {
		font-size: 18px;
	}
	
	.qa .question {
		padding-left: 30px;
		padding-right: 30px;
		margin-left: -30px;
		margin-right: -30px;
	}
	
	.footer .top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.footer .top .menu li {
		margin-right: 30px;
	}
	
	.footer .top .menu {
		margin-right: auto;
	}

	.footer .top .social {
		margin-left: auto;
	}
	
	.footer .bottom {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
    .footer .bottom .copyright {
        margin-right: auto;
    }
	
    .footer .bottom .language-switcher {
        margin-left: auto;
    }
	
	.footer .bottom .language-switcher li {
		margin-left: 30px;
		margin-bottom: 10px;
	}
	
}


@media screen and (max-width: 979px) {
	
	h1 {
		font-size: 32px;
		text-align: center;
	}
	
	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 20px;
	}
	
	.container {
		position: relative;
		width: 100%;
		max-width: 768px;
		padding-right: 15px;
		padding-left: 15px;
		margin: 0 auto;
	}
	
	.action-buttons {
		gap: 10px;
	}
	
	.header {
		margin-bottom: 15px;
	}
	
	.header .logotype {
		margin-right: auto;
	}
	
	.header .navigation {
		z-index: 1000;
		position: fixed;
		top: 0;
		right: -100%;
		bottom: 0;
		background-color: #fff;
		width: 300px;
		overflow: scroll;
		overflow-x: hidden;
		overflow-y: auto;
		transition: all .5s;
		padding: 80px 0 40px;
	}

	.header .navigation.show {
		right: 0;
		-webkit-box-shadow: -10px 5px 18px 0 rgba(0, 0, 0, .05);
		-moz-box-shadow: -10px 5px 18px 0 rgba(0, 0, 0, .05);
		box-shadow: -10px 5px 18px 0 rgba(0, 0, 0, .05);
	}
	
	.header .navigation::-webkit-scrollbar { 
		width: 0;
		height: 0; 
	}
	
	.header .navigation li a {
		display: block;
		font-size: 18px;
		padding-top: 10px;
		padding-left: 40px;
		padding-right: 40px;
		padding-bottom: 10px;
	}
	
	.header .navigation li.dropdown .sub-menu a {
		padding-left: 60px;
	}
		
	.header .navigation li a:hover {
		background-color: #000;
		color: #fff;
	}
	
	.header .navigation-toggle { 
		z-index: 1001;
		position: relative;
		background-color: #d2d7df;
		width: 48px;
		height: 48px;
		cursor: pointer;
		border: none;
		outline: none;
		border-radius: 13px;
	}

	.header .navigation-toggle:after {
		content: "";
		position: absolute;
		top: 14px;
		left: 14px;
		background-image: url(images/icons/sprite.png);
		background-repeat: no-repeat;
		background-size: 160px;
		background-position: -20px 0;
		width: 20px;
		height: 20px;
		display: block;
	}
	
	.header .navigation-toggle.close:after {
		background-position: -40px 0;
	}
	
	.header .search {
		right: 65px;
	}
	
	.sticky-footer {
		display: block;
	}
	
	.block {
		padding: 30px;
	}
	
	.title,
	.breadcrumbs {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero .hero-image .desktop {
		display: none;
	}
	
	.hero .hero-content {
		padding: 20px 20px 20px;
	}
	
	.hero .hero-content .hero-title {
		margin-bottom: 15px;
	}
	
	.hero .hero-content .hero-title .rating {
		justify-content: center;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.hero .hero-info dl {
		padding-right: 30px;
	}

	.hero .hero-info dl:after {
		right: 15px;
	}
	
	.hero .hero-info dl dt {
		font-size: 13px;
	}

	.hero .hero-info dl dd {
		font-size: 15px;
	}
	
	.gallery {
		display: flex;
		flex-wrap: nowrap;
		gap: 15px;
	}
	
	.gallery .gallery-item {
        width: 236px;
        height: auto;
        display: flex;
        flex-direction: column;
        flex: 0 0 auto;
	}
	
	.gallery.gallery-count-2 .gallery-item {
        width: calc(50% - 7px);
	}
	
	.gallery .gallery-item.placeholder {
		display: none;
	}
	
	.demo .demo-wrapper .fullscreen-button {
		top: 15px;
		right: 15px;
	}
	
	.game-table table tr td:first-child {
		padding-right: 30px;
	}
	
	.listing {
		grid-template-columns: repeat(auto-fill, minmax(166px, 1fr));
		gap: 15px;
	}
	
	.listing .card .card-content .name {
		font-size: 16px;
	}
	
	.qa .question {
		padding-left: 30px;
		padding-right: 30px;
		margin-left: -30px;
		margin-right: -30px;
	}

	.footer {
		padding-bottom: 60px;
	}
	
	.footer .top .menu li {
		margin-right: 25px;
	}
	
	.footer .bottom .language-switcher {
		margin-top: 30px;
	}
	
	.footer .bottom .language-switcher li {
		margin-right: 25px;
	}

	.footer .bottom .language-switcher li:last-child {
		margin-right: 0;
	}
	
	.sticky-footer.is-visible + .latest-wins {
		bottom: 100px;
	}
	
}


@media screen and (max-width: 640px) {
	
	.gallery .gallery-item {
        width: 193px;
        height: auto;
	}
	
	.demo .demo-wrapper .fullscreen-button {
		top: 10px;
		right: 10px;
	}
	
}


@media screen and (max-width: 480px) {
	
	h1 {
		font-size: 28px;
		line-height: 1.2;
	}
	
	.block {
		padding: 20px;
	}
	
	.gallery .gallery-item {
        width: 140px;
    }
	
	.listing .card {
		gap: 15px;
	}
	
	.qa .question {
		padding-left: 20px;
		padding-right: 20px;
		margin-left: -20px;
		margin-right: -20px;
	}
	
}


@media screen and (max-width: 420px) {
	
	h1 {
		font-size: 26px;
	}
	
	.container {
		padding-right: 10px;
		padding-left: 10px;
	}

	.demo .demo-wrapper .fullscreen-button {
		top: 7px;
		right: 7px;
	}
	
	.bonus-list {
		gap: 15px;
	}
	
	.bonus-info .button {
		width: 100%;
		display: block;
	}
	
	.listing {
		gap: 8px;
	}
	
	.listing .card .card-content {
		padding: 10px 10px 12px;
	}
	
}


@media screen and (max-width: 360px) {
	
	h1 {
		font-size: 26px;
	}
	
	.hero .hero-info dl {
		padding-right: 24px;
	}

	.hero .hero-info dl:after {
		right: 12px;
	}
	
}


@media 	only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-resolution: 1.5dppx),
only screen and (min-resolution: 144dpi) {
	
	.sticky-footer .sticky-footer-close:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.header .logotype {
		background-image: url(images/logo@2x.png);
	}
	
	.header .search-toggle:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.header .navigation-toggle:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.rating-star {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.demo .demo-wrapper .fullscreen-button:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.bonus-list .bonus-item::before {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.qa .question .name:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.social .item:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.popup .popup-close:after {
		background-image: url(images/icons/sprite@2x.png);
	}

	.popup .popup-prev:after,
	.popup .popup-next:after {
		background-image: url(images/icons/sprite@2x.png);
	}
	
	.footer .bottom .language-switcher li:before {
		background-image: url(images/icons/sprite@2x.png);
	}
	
}