@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --default-color: #ab6700;
	
	--link-hover: #e50539;
	
	/*Hero*/
	--hero-bg1: #ab6700;
	--hero-bg2: #030e1e;
	/*end Hero*/
	
    --default-lighten-color: #0c77e6;
    --default-catifsh-color: rgb(0, 0, 0);
    --default-header-color: #0e1013;
    --default-footer-color: #04386e;
    --btn-text: #fff;
}


*,
*::before,
*::after {
	box-sizing: border-box;
}
::selection {
	background-color: #ffffff;
	color: #d90647;
}
html {
	height: 100%;
}
body {
	margin: 0;
	font: 16px/1.75 'Roboto', sans-serif;
	background-color: #fff;
	color: #333;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
h1, h2, h3, h4, h5, h6, p, ol, ul {
	margin-top: 0;
	margin-bottom: 0;
}
ul, ol {
	padding: 0;
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
button {
	border-radius: 0;
}
input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	outline: 0;
}
button,
select {
	text-transform: none;
}
[role=button] {
	cursor: pointer;
}
select {
	word-wrap: normal;
}
select:disabled {
	opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
	display: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
	cursor: pointer;
}
::-moz-focus-inner {
	padding: 0;
	border-style: none;
}
textarea {
	resize: vertical;
}

/* page */
.page__main {
	flex-shrink: 0;
	overflow:hidden;
}
.page__footer {
	margin-top: auto;
}

/* container */
.container {
	max-width: 1276px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 12px;
	padding-right: 12px;
}
@media (min-width: 768px) {
	.container {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/* icons */
.icon {
	display: block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

/* grid */
.grid {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols, 1), minmax(0, 1fr));
	gap: var(--gap-y, 32px) var(--gap-x, 32px)
}
.gap-24 {
	--gap-x: 24px;
	--gap-y: 24px;
}
@media (min-width: 480px) {
	.sm\:grid_cols_2 {
		--grid-cols: 2;
	}
}
@media (min-width: 992px) {
	.lg\:grid_cols_3 {
		--grid-cols: 3;
	}
}

/* btn */
.btn {
	color: #363636;
	font-weight: 900;
	font-size: 16px;
	line-height: 1.4;
	padding: 16px 30px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	transition: transform .3s;
	user-select: none;
	font-size: 30px;
	border: none;
	text-align: center;
	column-gap: .3em;
}
.btn:disabled {
	opacity: .65;
}
.btn_size_sm {
	padding-top: 8px;
	padding-bottom: 8px;
}
.btn_theme_white {
	background-color: #fff;
}
.btn_theme_primary {
	background-image: linear-gradient(to bottom, #d90647 37%, #eb402c 98%);
	color: #fff;
}
.btn:not(:disabled):hover {
	transform: scale(1.03);
}
.btn_theme_white .btn__label {
    background-image: linear-gradient(to bottom, #373869 10%, #010118 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn__icon {
	flex-shrink: 0;
}
@media (min-width: 576px) {
	.btn {
		font-size: 18px;
		padding: 15px 40px;
	}
	.btn_size_sm {
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

/* bs-input */
.bs-input {
	padding: 6px 12px;
	border: 1px solid;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.bs-input_theme_white {
	background-color: #fff;
	border: none;
	color: #495057;
}
.bs-input_theme_white::placeholder {
	opacity: 1;
}

/* bs-btn */
.bs-btn {
	border-radius: 4px;
	border: none;
	transition: filter .3s;
	user-select: none;
}
.bs-btn_theme_burgundy {
	background-color: #880505;
	color: #fff;
}
.bs-btn_theme_primary {
	background-image: linear-gradient(to bottom, #d90647 37%, #eb402c 98%);
	color: #fff;
}
@media (hover: hover) {
	.bs-btn:hover {
		filter: brightness(120%);
	}
}

/* headings */
h1 {
	font-size: calc(17.3518px + 4.43951vw);
	font-weight: 900;
	line-height: 1.1;
}
h2 {
	font-size: calc(17.5139px + 3.32963vw);
	font-weight: 900;
	line-height: 1.1;
	color: #363636;
}
@media (min-width: 1276px) {
	h1 {
		font-size: 70px;
	}
	h2 {
		font-size: 60px;
	}
	
	h3 {
		font-size: 40px;
	}
}

/* hero */
.hero {
background-image: linear-gradient(to bottom, #ff7f06 37%, var(--hero-bg2) 88%);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero__text {
	text-align: center;
	padding: 40px 30px;
	position: relative;
	z-index: 2;
}
.hero__title {
	margin-bottom: 0.27em;
	color: #fff;
	position: relative;
	z-index: 2;
}
.hero__descr {
	font-size: calc(12.1832px + 1.01781vw);
	margin-bottom: 30px;
	color: #ffffff;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 2;
}
.hero__actions {
	margin-top: 40px;
	position: relative;
	z-index: 2;
}
.hero__btn {
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
	position: relative;
	z-index: 2;
	background: linear-gradient(to bottom, #ffcc00, #ff9900);
	color: #fff;
	font-weight: bold;
	border-radius: 8px;
	padding: 12px 24px;
	border: 2px solid #ffcc00;
	transition: all 0.3s ease;
}

.hero__btn:hover {
	transform: scale(1.05);
	box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
	background: linear-gradient(to bottom, #ffdd33, #ffaa33);
}

.hero__btn:active {
	transform: scale(0.98);
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.hero__img-wrapper {
	display: none;
}
@media (min-width: 768px) {
	.hero {
		padding-bottom: 70px;
	}
	.hero__content {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
		align-items: center;
		position: relative;
		z-index: 2;
		padding: 30px;
	}
	.hero__text {
		text-align: left;
		padding: 30px;
	}
	.hero__descr {
		font-size: calc(14.2353px + 0.490196vw);
	}
	.hero__img-wrapper {
		display: block;
		position: relative;
	}
	.hero__img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 280px;
		border-radius: 10px;
        box-shadow: -1px -1px 13px 17px rgba(34, 60, 80, 0.2)
	}
	.hero__lottie {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: calc(280px - 4%);
	}
}
@media (min-width: 1276px) {
	.hero__descr {
		font-size: 18px;
	}
}

/* nav-toggle */
.nav-toggle {
	padding: 0;
	border: none;
	background-color: transparent;
	color: inherit;
}
@media (min-width: 1200px) {
	.nav-toggle {
		display: none;
	}
}

/* hamburger */
.hamburger {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	position: relative;
	border-radius: 4px;
	background-image: linear-gradient(to bottom, var(--hero-bg1) 37%, var(--hero-bg2) 98%);
	color: #fff;
}
.hamburger_active {
	background-image: none;
}
.hamburger__box {
	display: block;
	position: relative;
	width: 26px;
	height: 14px;
	margin-inline: auto;
}
.hamburger__inner, .hamburger__inner::after, .hamburger__inner::before {
	position: absolute;
	width: 100%;
	height: 2px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform;
	background-color: currentColor;
}
.hamburger__inner {
	top: 0;
	display: block;
}
.hamburger__inner::before {
	top: 6px;
	transition-timing-function: ease;
	transition-duration: .15s;
	transition-property: transform,opacity;
}
.hamburger__inner::after, .hamburger__inner::before {
	display: block;
	content: "";
}
.hamburger__inner::after {
	top: 12px;
}
.hamburger_active .hamburger__inner {
	transform: translate3d(0,6px,0) rotate(45deg);
}
.hamburger_active .hamburger__inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px,-6px,0);
	opacity: 0;
}
.hamburger_active .hamburger__inner::after {
	transform: translate3d(0,-12px,0) rotate(-90deg);
}

/* nav */
.nav {
	line-height: 1.4;
}
.nav__list {
	column-gap: 2.22em;
}
.nav__link_accent {
	font-weight: 700;
}
.subnav__link,
.nav__link {
	color: inherit;
	text-decoration: none;
	display: block;
}
.subnav {
	display: none;
}
.subnav__link {
	padding: 10px 15px;
}
@media (max-width: 1199.98px) {
	.nav-scroll-lock {
		overflow: hidden;
	}
	.nav__list {
		margin-inline: calc(var(--header-pd-inline) * -1);
	}
	.nav__link {
		display: flex;
		align-items: center;
		column-gap: 8px;
		padding: 15px var(--header-pd-inline);
	}
	.nav__link_accent {
		font-size: 1.2em;
        background-color: #fff;
        color: #d90647;
        width: max-content;
        border-radius: 10px;
        margin-left: 11px;
	}
	.subnav {
		width: 100%;
	}
	.nav__dropdown_expanded > .subnav {
		display: block;
	}
	.nav__dropdown {
		display: flex;
		flex-wrap: wrap;
	}
	.nav__dropdown > .nav__link,
	.nav__dropdown > .subnav__link {
		width: calc(100% - 26px);
	}
	.subnav__link {
		padding-left: 40px;
	}
	.subnav .subnav .subnav__link {
		padding-left: 60px;
	}
	.nav__btn {
		width: 26px;
		border: none;
		padding: 0;
		position: relative;
		background-color: transparent;
		color: inherit;
	}
	.nav__btn::before,
	.nav__btn::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50%;
		height: 2px;
		background-color: currentColor;
		transition: transform .2s;
	}
	.nav__btn:not(.nav__btn_active)::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}
}
@media (min-width: 1200px) {
	.nav {
		font-size: 18px;
	}
	.nav__list {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.nav__link {
		padding-top: 25px;
		padding-bottom: 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 100%;
	}
	.nav__link-icon {
		display: none;
	}
	.nav__link_accent {
		border: 1px solid var(--default-color);
        padding: 5px 15px;
        border-radius: 10px;
	}
	.nav__item:hover .nav__link {
		color: var(--link-hover);
	}
	.subnav {
		position: absolute;
		z-index: 100;
		background-color: #fff;
		width: 260px;
		box-shadow: 0 0 15px rgba(34,52,67,.3);
		font-size: 15px;
	}
	.nav__item > .subnav {
		left: 0;
		top: 100%;
	}
	.subnav .subnav {
		top: 0;
		left: 100%;
	}
	.nav__dropdown > .nav__link,
	.nav__dropdown > .subnav__link {
		position: relative;
	}
	.nav__btn {
		display: none;
	}
	@media (hover:hover) {
		.nav__dropdown {
			position: relative;
		}
		.nav__dropdown > .nav__link::after,
		.nav__dropdown > .subnav__link::after {
			content: '';
			position: absolute;
			border-color: transparent;
			border-style: solid;
		}
		.nav__dropdown > .nav__link::after {
			border-width: 4px 3px 0 3px;
			border-top-color: rgba(0,0,0,.7);
			bottom: 4px;
			left: 50%;
			margin-left: -2px;
		}
		.nav__dropdown > .subnav__link::after {
			top: 50%;
			right: 4px;
			margin-top: -2px 0 0;
			border-width: 3px 0 3px 5px;
			border-left-color: rgba(0,0,0,.7);
		}
		.nav__dropdown:hover > .subnav {
			display: block;
		}
		.subnav__link:hover {
			color: #d90647;
		}
	}
}

/* languages */
.languages {
	position: relative;
}
.languages__toggle-btn {
	display:flex;
	padding: 0;
	background-color: transparent;
	/*display: block;*/
	border: none;
}
.languages__list {
	display: none;
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0px 1px 8px 0 rgb(0, 0, 0, .58);
	padding: 8px;
	border-radius: 5px;
	min-width: 100%;
	background-color: #fff;
}
.languages_open .languages__list {
	display: block;
}
.languages__item:not(:last-child) {
	margin-bottom: 10px;
}
.languages__link {
	display: flex;
	text-decoration: none;
	color: inherit;
	width: max-content;
}
.languages__flag {
	display: block;
	border: solid 1px;
	max-width: none;
	width: 20px;
	height: 14px;
	object-fit: cover;
	margin-right: 8px;
    margin-top: 6px;
}
@media (min-width: 1200px) {
	.languages__flag {
		width: 20px;
		height: 14px;
	}
}

/* languages-links */
.languages-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.languages-links__item:not(:last-child)::after {
	content: '|';
	margin-right: .25em;
}
.languages-links__link {
	color: #fff;
}
.languages-links__link:hover {
	text-decoration: none;
}

/* flags-list */
.flags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.flags-list__link {
	text-decoration: none;
	color: inherit;
	display: block;
}
.flags-list__flag {
	width: 38px;
	height: 26px;
	display: block;
	border: solid 1px;
	object-fit: cover;
	max-width: none;
}

/* header */
.header {
	--header-pd-inline: 12px;
	position: sticky;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.header__inner {
	background-color: #fff;
	display: flex;
	align-items: center;
	column-gap: 16px;
	position: relative;
	padding: 8px var(--header-pd-inline);
}
.header__logo {
	line-height: 1;
	font-size: 28px;
	font-weight: 900;
	color: #d90647;
	text-decoration: none;
	white-space: nowrap;
	margin-right: auto;
	max-width: 160px;
}

body > header > div > a > img {
	height: 100px;
}

.header_open .header__logo {
	color: inherit;
}
.header__languages {
	flex-shrink: 0;
	margin-left:25px;
}
@media (min-width: 768px) {
	.header {
		--header-pd-inline: 50px;
	}
	.header__inner {
		column-gap: 24px;
	}
	.header__logo {
		max-width: 160px;
	}
}
@media (max-width: 1199.98px) {
	.header_open .header__content,
	.header_open .header__inner {
		background-color: var(--hero-bg1);
		color: #fff;
	}
	.header:not(.header_open) .header__content {
		display: none;
	}
	.header__content {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #fff;
		padding: 0 var(--header-pd-inline) 30px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		z-index: -1;
		overflow-y: auto;
	}
	.header__flags {
		margin-top: 20px;
	}
}
@media (min-width: 1200px) {
	.header__inner {
		padding-block: 12px;
	}
	.header__content {
		display: flex;
		align-items: center;
		column-gap: 40px;
	}
	.header__nav {
		margin-top: -12px;
		margin-bottom: -12px;
	}
	.header__flags {
		display: none;
	}
}

/* social */
.social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.social__link {
	color: inherit;
	text-decoration: none;
	transition: color .2s;
}
.social__link:hover {
	color: var(--social-hover-color);
}

/* about */
.about {
	padding-top: 50px;
	padding-bottom: 50px;
}
.about_content_trainer {
	padding-top: min(50px, 1.05882px + 6.37255vw);
}
.about__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.about__img-wrapper {
	text-align: center;
}
.about__title {
	margin-bottom: .5em;
}
.about_content_trainer .about__title  {
	margin-bottom: .3em;
}
.about__descr {
	font-size: 18px;
	line-height: 2;
}
.about_content_trainer .about__descr  {
	font-size: 16px;
	line-height: inherit;
}
.about__descr a:not([class]) {
	color: #000;
}
.about__descr a:hover {
	text-decoration: none;
}
.about__form {
	max-width: 350px;
}
.about__form,
.about__btn {
	margin-top: 30px;
}
@media (min-width: 768px) {
	.about__inner {
		grid-template-columns: 300px minmax(0, 572px);
	}
	.about_revers .about__inner {
		grid-template-columns: minmax(0, 572px) 300px;
	}
	.about__img-wrapper {
		text-align: left;
	}
	.about_revers .about__img-wrapper {
		order: 1;
		text-align: right;
	}
}

/* section */
.section {
	padding-top: calc(37.5139px + 3.32963vw);
	padding-bottom: calc(37.5139px + 3.32963vw);
}
@media (min-width: 1276px) {
	.section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

/* sites */
.sites {
	text-align: center;
	color: #1b354c;
}
.sites__item {
	display:flex;
	flex-wrap: wrap;
	position: relative;
	padding: 5px 10px 10px;
	border: 1px solid #dcdede;
	border-radius: 2px;
	background-color: #fff;
}
.sites__item:not(:last-child) {
	margin-bottom: 10px;
}
.sites__logo-col {
	flex: 0 0 130px;
}
.sites__logo-link {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0 auto;
	max-width: 130px;
}
.sites__logotype {
	height: 60px;
	object-fit: contain;
}
.sites__num {
	position: absolute;
	width: 24px;
	height: 30px;
	top: -5px;
	left: -10px;
	font-size: 15px;
	line-height: 2;
	font-weight: 700;
}
.sites__bonus-col {
	max-width: calc(100% - 150px);
	flex-basis: 100%;
	line-height: 1.1;
	font-size: 13px;
	align-self: center;
}
.sites__bonus {
	font-size: 18px;
	display: block;
	font-weight: 900;
}
.sites__info-col {
	flex: 0 0 33.333333%;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
	line-height: 1.1;
}
.sites__icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
	position: relative;
	display: inline-block;
	top: -1px;
	vertical-align: middle;
	margin: 0 4px 0 0;
}
.sites__icon_type_games::before {
	background-image: url('../images/other-games.png');
}
.sites__icon_type_mobile::before {
	background-image: url('../images/mobile.png');
}
.sites__icon_type_live::before {
	background-image: url('../images/live.png');
}
.sites__actions-col {
	flex: 0 0 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}
.sites__btn {
	text-decoration: none;
	display: block;
}
.sites__btn_theme_primary::before {
	background-color: #479905;
}
.sites__btn_theme_secondary::before {
	background-color: #129ece;
}
.sites__btn::before {
	content: attr(data-text-before);
	padding: 12px 10px;
	color: #fff;
	text-transform: uppercase;
	border-radius: 6px;
	display: block;
	font-size: 20px;
	line-height: 1.2;
	transition: filter .3s;
}
.sites__btn:hover::before {
	filter: brightness(120%);
}
.sites__rating-col {
	isolation: isolate;
}
@media (min-width: 500px) and (max-width: 767.98px) {
	.sites__logo-col,
	.sites__bonus-col,
	.sites__actions-col {
		max-width: calc((100% - 130px) / 2);
	}
	.sites__actions-col {
		padding-right: 40px;
	}
}
@media (max-width: 767.98px) {
	.sites__header {
		display: none;
	}
	.sites__logo-col {
		position: relative;
	}
	.sites__logo-col::after {
		content: '';
		position: absolute;
		width: 1px;
		height: 34px;
		top: 50%;
		right: 0;
		margin-top: -17px;
		background-color: #dddedf;
	}
	.sites__info-col {
		order: 2;
		margin-top: 10px;
		background-color: #f6f6f7;
		color: #4f6375;
	}
	.sites__info-col::before {
		content: attr(data-title);
		display: block;
		width: 100%;
		margin-bottom: 3px;
		font-size: 11px;
		line-height: 1.1;
		color: #545454;
	}
	.sites__btn-label {
		display: none;
	}
}
@media (min-width: 768px) {
	.sites__header {
		display: flex;
		align-items: center;
		background-color: #d4d7db;
		padding-right: 25px;
		padding-left: 37px;
	}
	.sites__item {
		 padding: 17px 25px 17px 35px;
		 align-items: center;
	}
	.sites__col-name {
		padding: 5px 10px;
		font-size: 12px;
		line-height: 1.08;
		color: #667583;
		text-transform: capitalize;
	}
	.sites__info-col {
		font-weight: 700;
		color: #1b354c;
	}
	.sites__num {
		display: flex;
		width: 24px;
		height: 100%;
		top: 0;
		left: 0;
		justify-content: center;
		align-items: center;
		border-right: 1px solid #d6d8d9;
		font-size: 15px;
		color: #fff;
		text-align: center;
		background-color: #1b354c;
	}
	.sites__btn-label {
		font-size: 11px;
		color: #003d89;
	}
	.sites__icon::before {
		width: 25px;
		height: 25px;
	}
}
@media (min-width: 768px) and (max-width: 1023.98px) {
	.w-t-11 {
		flex: 0 0 11%;
	}
	.w-t-13 {
		flex: 0 0 13%;
	}
	.w-t-14 {
		flex: 0 0 14%;
	}
	.w-t-15 {
		flex: 0 0 15%;
	}
	.w-t-21 {
		flex: 0 0 21%;
	}
}
@media (min-width: 1024px) {
	.w-d-11 {
		flex: 0 0 11%;
	}
	.w-d-15 {
		flex: 0 0 15%;
	}
	.w-d-16 {
		flex: 0 0 16%;
	}
	.w-d-17 {
		flex: 0 0 17%;
	}
	.w-d-19 {
		flex: 0 0 19%;
	}
	.sites__bonus {
		font-size: 27px;
	}
	.sites__icon::before {
		width: 30px;
		height: 30px;
	}
}

/* site-rating */
@media (max-width: 767.98px) {
	.site-rating {
		position: absolute;
		width: 42px;
		height: 42px;
		top: 0;
		right: 0;
		overflow: hidden;
		padding-left: 5px;
	}
	.site-rating::before {
		content: '';
		position: absolute;
		width: 84px;
		height: 84px;
		bottom: 0;
		left: 0;
		border-radius: 50%;
		background: #1b354c;
		z-index: -1;
	}
	.site-rating__val {
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		padding: 3px 0 12px;
		background: url('../images/star-rating.png') center bottom / 14px 14px no-repeat;
		line-height: 1.25;
	}
	.site-rating__stars {
		display: none;
	}
}
@media (min-width: 768px) {
	.site-rating {
		position: relative;
		width: 52px;
		padding: 10px 5px;
		margin: 0 auto;
		border: 1px solid #dfe0e1;
		border-radius: 2px;
		text-align: center;
	}
	.site-rating__val {
		font-size: 20px;
		line-height: 1;
		font-weight: 400;
		color: #1b354c;
	}
	.site-rating__stars {
		font-size: 0;
		width: 22px;
		height: 18px;
		margin: 5px auto 0;
		background: url('../images/rating-star-tablet-grey.png') 0 0 / auto 100% repeat-x;
	}
	.site-rating__stars::before {
		content: '';
		display: block;
		height: 100%;
		background: url('../images/rating-star-tablet.png') repeat-x 0 0 / auto 100%;
		width: var(--site-rating);
	}
}
@media (min-width: 1024px) {
	.site-rating {
		width: 122px;
		padding: 12px 5px;
	}
	.site-rating__val {
		font-size: 38px;
	}
	.site-rating__stars {
		width: 107px;
	}
}

/* step */
.step {
	color: #fff;
	background-image: linear-gradient(to bottom, #d90647 37%, #eb402c 98%);
}
.step__title {
	margin-bottom: 0.27em;
	text-align: center;
}
.step__descr {
	font-size: calc(12.1832px + 1.01781vw);
	text-align: center;
	margin-bottom: 30px;
}
.step__actions {
	margin-top: 40px;
	text-align: center;
}
.step__descr + .step__actions {
	margin-top: 10px;
}
.step__btn {
	box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
}
.step__tab:not(._active) {
	display: none;
}
@media (max-width: 767.98px) {
	.step {
		display: flex;
		flex-direction: column;
	}
	.step_single_col {
		justify-content: center;
	}
	.step__text {
		display: contents;
	}
	.step__actions {
		order: 1;
	}
	.step__img-wrapper {
		width: 300px;
		max-width: 100%;
		margin: 0 auto 30px;
	}
	.step__video {
		margin-bottom: 30px;
	}
	.step__form {
		margin-bottom: 30px;
	}
}
@media (min-width: 768px) {
	.step {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
		align-items: center;
		min-height: 80vh;
	}
	.step__title {
		text-align: left;
	}
	.step__descr {
		text-align: left;
		font-size: calc(14.2353px + 0.490196vw);
	}
	.step__img-wrapper {
		display: block;
		position: relative;
	}
	.step__img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 280px;
	}
	.step__lottie {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: calc(280px - 4%);
	}
	.step__actions {
		text-align: left;
	}
}
@media (min-width: 1276px) {
	.step__descr {
		font-size: 20px;
	}
}

/* step-form */
.step-form__group {
	display: flex;
	flex-wrap: wrap;
	column-gap: 5px;
	position: relative;
}
.step-form__group:not(:last-child) {
	margin-bottom: 15px;
}
.step-form__controll {
	flex-grow: 1;
	flex-basis: 0;
	min-width: 0;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .4);
}
.step-form_placement_hero .step-form__btn {
	box-shadow: 2px 2px 0px rgba(30, 30, 30, 0.7);
}
.step-form__error {
	width: 100%;
	display: none;
	position: relative;
	padding-left: 1.5em;
	line-height: 1.2;
	margin-top: .3em;
}
.step-form_placement_content .step-form__error {
	color: #f00;
}
.step-form__error a {
	color: inherit;
}
._invalid ~ .step-form__error {
	display: block;
}
.step-form__error > .icon {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* step-info */
.step-info {
	text-align: center;
}
.step-info p:not(:last-child) {
	margin-bottom: 25px;
}
@media (min-width: 576px) {
	.step-info {
		font-size: 18px;
	}
}

/* screen-live */
.screen-live {
	margin-top: 30px;
	border-top: 1px solid #e0e0e0;
}
.screen-live__title {
	text-align: center;
	margin-bottom: 1em;
}

/* screenshot */
.screenshot__figure {
	margin: 0;
}
.screenshot__figcaption {
	background-image: linear-gradient(to bottom, #d90647 10%, #eb402c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	font-size: 18px;
}

/* howto */
.howto {
	text-align: center;
}
.howto__bg {
	background-image: linear-gradient(to bottom, #d90647 37%, #eb402c 98%);
	padding-top: 50px;
	padding-bottom: 50px;
}
.howto__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 32px;
	color: #fff;
}
.howto__item:not(:last-child) {
	margin-bottom: 20px;
}
.howto__title {
	font-size: 24px;
	line-height: 1.2;
	font-weight: 900;
	margin-bottom: .2em;
}
.howto__img {
	width: 271px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.howto {
		padding-top: 56px;
		padding-bottom: 56px;
	}
	.howto__inner {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.howto {
		text-align: left;
	}
	.howto__col:first-child {
		text-align: right;
	}
	.howto__img {
		display: block;
		
		margin-top: -106px;
		margin-bottom: -106px;
	}
}

/* onewin */
.onewin__logo {
	display: block;
	width: 100%;
	max-height: 150px;
	object-fit: contain;
	background-color: #000;
}
.onewin__descr {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	padding: 20px;
	text-align: center;
}

/* instruction */
.instruction {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}
.instruction__actions {
	margin-top: 30px;
}

@media (min-width: 992px) {
	.instruction {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.instruction__img {
		order: 1;
	}
}

/* download */
.download {
	text-align: center;
}
.download__inner > *:not(:last-child) {
	margin-bottom: 30px;
}
.download__btn {
	display: inline-block;
	vertical-align: middle;
	background-color: #141313;
	color: #d90647;
	font-weight: 900;
	box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
	text-decoration: none;
	font-size: 18px;
	border-radius: 50px;
	padding: 10px 40px;
	transition: color .3s, background-color .3s, transform .3s;
}
.download__btn:hover {
	transform: scale(1.03);
	background-color: #d90647;
	color: #ffff;
}

/* download-languages */
.download-languages {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.download-languages__item:not(:last-child):after {
	content: '|';
	margin-right: .25em;
}
.download-languages__link {
	background-color: #141313;
	color: #fff;
	text-decoration: none;
	padding: 2px;
}

/* footer */
.footer {
	background-color: var(--hero-bg1);
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left:15px;
}
.footer__descr {
	color: #777;
	margin-bottom: 60px;
	text-align: center;
}
.footer__descr a {
	color: #fff;
	text-decoration: none;
}
.footer__descr a:hover {
	text-decoration: underline;
}
.footer__languages {
	margin-bottom: 60px;
	color: #777;
}
.footer__partners {
	margin-bottom: 30px;
}
.footer__copyright {
	color: #c8c8c8;
	font-size: 15px;
	text-align: center;
}
.footer__copyright a {
	color: inherit;
	text-decoration: none;
}
.footer__copyright a:hover {
	text-decoration: underline;
}
.footer__social {
	--social-hover-color: #fff;
	color: #777;
	margin-bottom: 5px;
	font-size: 20px;
}

.footer-logo {
    max-width: 160px;
}


/* footer menu */
.footer__nav {
    text-align: center;
    margin: 16px 0;
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__menu li { margin: 0; }
.footer__menu a { color: #fff; text-decoration: none; }
.footer__menu a:hover { text-decoration: underline; }


/* partners */
.partners {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	gap: 32px;
}
.partners__img {
	max-height: 60px;
	opacity: .2;
}

/* scroll-top */
.scroll-top {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-image: linear-gradient( to bottom, #426500 37%, var(--hero-bg2) 98% );
	color: #fff;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	transition: transform 0.3s, opacity 1s, visibily 1s;
	opacity: 0;
	visibility: hidden;
	text-decoration: none;
}
.scroll-top_visible {
	opacity: 1;
	visibility: visible;
}
@media (hover: hover) {
	.scroll-top:hover {
		transform: scale(1.1);
	}
}

/* blockquote */
.blockquote {
	font-size: 20px;
}
.blockquote__footer {
	font-size: 80%;
	color: #6c757d;
}
.blockquote__footer::before {
	content: "\2014\00A0";
}

/* share */
.share {
	background-color: #0e0e0e;
	padding: 0 10px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.share__links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.share__link {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	transition: filter .3s;
}
.share__link_whatsapp {
	background: linear-gradient(to bottom, #5ad166, #27b23d);
	color: #fff;
}
.share__link_messenger {
	background: #fff;
}
.share__link_telegram {
	background: #009eeb;
	color: #fff;
}
.share__copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	border: 2px solid #fff;
	background-color: transparent;
	color: #fff;
	border-radius: 15px;
	padding: 10px 15px;
	font-size: 16px;
	transition-property: color, background-color;
	transition-duration: .1s;
}
.share__copy-btn .icon {
	font-size: 1.4em;
}
@media (hover: hover) {
	.share__link:hover {
		filter: brightness(120%);
	}
	.share__copy-btn:not(:disabled):hover {
		background-color: #fff;
		color: #000
	}
}

/*WP STYLE*/
/*POST*/
.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry p {
    font-size: 18px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px
}




.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%
}

.post-entry table tr:first-child {
    background: #2d314d;
}

.post-entry table tr:first-child td {
    color: #fff;
    font-weight: 700
}

.post-entry table tr:nth-child(odd) {
    background: #426500
}

.post-entry table tr td {
    padding: 16px 12px
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
	border-radius:15px;
    margin: 0 auto;
}


.post-entry ol,
.post-entry ul{
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li,
.post-entry ul li{
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before {
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry ul li:before{
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: "✔";
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry .btn {
	margin-bottom: 5px;
}

.post-entry .btn a {
	color: #fff;
}

blockquote {
    margin-bottom:1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding:40px;
    padding-left:80px;
    position: relative;
        border-radius: 8px;
}
blockquote::before{
    position: absolute;
    left:20px;
    top:20px;
    width:40px;
    height:40px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

/*FAQ*/
.faq-block {
    margin-bottom: 32px;
    margin-top: 32px
}

.faq-block .faq-block--title {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px
}

.faq-block .faq-block--subtitle {
    color: #000;
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: -4px
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: #f7f7f7;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    position: relative
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 80%;
    width: 80%
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: var(--default-color) url(../img/icon-arrow-b.svg) no-repeat 50%;
    background-size: 14px;
    border-radius: 4px;
    content: "";
    height: 42px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 42px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    display: none
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
    background: var(--default-color);
    color: #fff
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header:after {
    background: var(--default-color) url(../img/icon-arrow-b.svg) no-repeat 50%;
    background-size: 14px;
    transform: translateY(-50%) rotate(-90deg)
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 20px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content p:not(:last-child) {
    margin-bottom: 8px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a {
    color: #0855cc
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #0b4e35
}

.contact {
	color: #fff;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

/*Footer*/
.leng-links {
	display: flex;
    justify-content: center;
	margin-top:25px;
}
.lengs-list {
	display: flex;
    gap: 25px;
}
.lengs-list__link {
	color: #fff;
}
.lengs-list__link:hover {
	color:var(--link-hover)
}

@media (max-width: 768px) {
	.lengs-list {
		flex-wrap: wrap;
	}

}

tbody > tr:nth-child(1), .post-entry table tr:nth-child(odd) {
	color: #fff;
}


/*SLOTS STYLE*/
.game-title {
    font-size: 34px;
    margin: 15px 0 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
}
.game-title span {
    color: #4caf50;
}
.game__code {
    width: 100%;
    flex-grow: 1;
    height: 100%;
    position: relative;
}
.star-rating {
    position: relative;
    width: 95px;
}
.star-rating--inner,
.star-rating--outer {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
}
.star-rating--outer {
    overflow: hidden;
}
.screen-reader-text {
    display: inline-block;
    margin-left: 5px;
    height: 18px;
    font-size: 18px;
    line-height: 21px;
    font-weight: normal !important;
    color: #faab00;
}
.game-rating {
    display: flex;
    flex-wrap: wrap;
    top: 15px;
    left: 15px;
    position: absolute;
    z-index: 1;
}
.game-rating-title {
    width: 100%;
}
.box__game-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 65vh;
}
.slotogamemain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.body__fullscreen .wrapper__container {
    z-index: 30;
}
.body__fullscreen .box__game-main {
    z-index: 10;
}
.body__fullscreen .header {
    display: none !important;
}
.box__game {
    position: relative;
}
.box__game-main:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(29, 38, 45, 0.7);
    width: 100%;
    height: 100%;
}
.box__game {
    background: #000;
    border-radius: 7px;
}
.box__game-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
    z-index: 2;
}
.share-text {
    margin-right: 15px;
}
.share-text span {
    display: block;
    font-size: 15px;
    line-height: 18px;
}
.share-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.share__toggle {
    flex-shrink: 0;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    background-color: #2f8f41;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m19.823 8.666-7.348-6.874c-.088-.083-.171-.13-.291-.125-.23.01-.521.172-.521.417V5.53a.222.222 0 0 1-.187.213C4.17 6.864 1.092 12.332.004 18.008c-.042.224.26.432.4.255 2.667-3.359 5.911-5.551 11.04-5.593.115 0 .219.136.219.25v3.385c0 .364.484.526.755.276l7.4-6.994A.575.575 0 0 0 20 9.15c-.005-.167-.047-.36-.177-.484Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    border-radius: 4px;
    cursor: pointer;
}
.share__toggle:hover {
    background-color: #39833c;
}
.share__content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    margin-right: calc(-50% - -14px);
    padding: 10px 3px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 5;
}
.share__content:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.share__content--visible {
    display: block;
    -webkit-animation: fadein 0.2s;
    -moz-animation: fadein 0.2s;
    -ms-animation: fadein 0.2s;
    -o-animation: fadein 0.2s;
    animation: fadein 0.2s;
}
.report-problem,
.expand-wrap {
    display: flex;
    cursor: pointer;
    font-size: 15px;
}
.actions-btns .favorites-button,
.actions-btns .report-problem,
.actions-btns .expand-wrap {
    margin: 0 0 0 5px;
}
.report-problem:hover,
.expand-wrap:hover {
    opacity: 0.8;
}
.report-problem:before,
.expand-wrap:before {
    content: "";
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.report-problem:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMTIgMjJjNS41IDAgMTAtNC41IDEwLTEwUzE3LjUgMiAxMiAyIDIgNi41IDIgMTJzNC41IDEwIDEwIDEwWk0xMiA4djUiLz48cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNMTEuOTk1IDE2aC4wMDkiLz48L3N2Zz4=);
}
.expand-wrap:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNOSAyMmg2YzUgMCA3LTIgNy03VjljMC01LTItNy03LTdIOUM0IDIgMiA0IDIgOXY2YzAgNSAyIDcgNyA3Wk0xOCA2IDYgMTgiLz48cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0xOCAxMFY2aC00TTYgMTR2NGg0TTYgNmwxMiAxMk02IDEwVjZoNE0xOCAxNHY0aC00Ii8+PC9zdmc+);
}
.expand-wrap svg {
    margin-right: 10px;
}
.actions-btns {
    display: flex;
    flex-direction: row;
}
.play-btn {
    width: 128px;
    height: 128px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin-left: -64px;
    margin-top: -64px;
    cursor: pointer;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 455 455'%3E%3Cpath d='M227.5 0C101.855 0 0 101.855 0 227.5S101.855 455 227.5 455 455 353.145 455 227.5 353.145 0 227.5 0zm-61.438 321.575v-188.15L328.938 227.5l-162.876 94.075z' fill='%23ffffff' /%3E%3C/svg%3E");
}
.play-btn:hover {
    opacity: 0.8;
}
.box__game-iframe {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
}
.box__game-iframe.fullscreen {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    background: #000;
    overflow: visible; /* чтобы кнопка не обрезалась */
}
/* exit fullscreen button */
.box__game-iframe .exit__fullscreen { display: none; }
.box__game-iframe.fullscreen .exit__fullscreen {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; /* поверх iframe и других элементов */
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.box__game-iframe.fullscreen .exit__fullscreen svg {
    stroke: #fff !important;
}
.game__info {
    float: right;
    clear: right;
    width: 340px;
}
.list__dotted {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}
.list__dotted li {
    border-bottom: 1px dashed #475158;
    position: relative;
    padding: 0;
    margin-bottom: 18px;
    line-height: normal;
}
.list__dotted li span {
    background-color: #000;
    margin: 0;
}
.list__dotted li span.list-label,
.list__dotted li span.list-value {
    bottom: -5px;
    font-size: 18px;
    line-height: 16px;
}
.list__dotted span.list-label {
    position: relative;
    margin-right: 7em;
    padding-right: 2px;
}
.list__dotted span.list-value {
    position: absolute;
    right: 0;
    padding-left: 2px;
}
.list__dotted a {
    color: #fff;
}
.item__header .heading__section {
    color: #fff;
}
.list-rhombus {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-rhombus li {
    padding-left: 20px;
    position: relative;
}
.list-rhombus li + li {
    margin-top: 10px;
}
.list-rhombus li:not(.nostyle):before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: #fff;
    position: absolute;
    left: 0;
    top: 9px;
}
.list-rhombus a {
    color: #fff;
}
.table-contents {
    padding: 20px 15px;
    border: solid 1px #e0e0e0;
    background: #fff;
}
.table-contents p {
    margin: 0;
}
.exit__fullscreen {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    fill: #fff;
    padding: 0;
    display: none;
    cursor: pointer;
    z-index: 1;
}
.exit__fullscreen svg {
    width: 32px;
    height: 32px;
}
.box__game-iframe.fullscreen .exit__fullscreen {
    display: block;
}
@media (min-width: 576px) {
    .actions-btns .favorites-button,
    .actions-btns .report-problem,
    .actions-btns .expand-wrap {
        margin: 0 0 0 13px;
    }
    .actions-btns .expand-wrap:before {
        margin-right: 10px;
    }
}
@media (min-width: 1140px) {
    .item__header {
        margin-left: -30px;
        margin-right: 30px;
        width: calc(100% + 60px);
    }
}
@media (max-width: 1140px) {
    .box__game-main {
        height: 30vh;
    }
}
@media (min-width: 768px) and (max-width: 1140px) {
    .item__header {
        margin-left: -15px;
        margin-right: 15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
    .game__code {
        max-width: 100%;
    }
    .box__game-main img {
        width: 100%;
        object-fit: cover;
    }
    .game__info {
        float: right;
        clear: right;
        width: 100%;
        margin: 30px 0;
    }
    .game__info .btn-red,
    .game__info .btn-yellow,
    .game__info .btn-green {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767.8px) {
    .item__header {
        margin-left: -15px;
        margin-right: 15px;
        width: calc(100% + 30px);
        border-radius: 0;
        padding: 0 15px 30px;
    }
    .game__code {
        max-width: 100%;
    }
    .game__info {
        float: right;
        clear: right;
        width: 100%;
        margin: 30px 0;
    }
    .game__info .btn-red,
    .game__info .btn-yellow,
    .game__info .btn-green {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .play-btn {
        width: 64px;
        height: 64px;
        margin-left: -32px;
        margin-top: -32px;
    }
    .play-btn svg {
        width: 64px;
        height: 64px;
    }
    .game-title {
        font-size: 25px;
    }
    .list__dotted span.list-label {
        white-space: nowrap;
    }
    .game__code {
        height: inherit;
    }
    .box__game-iframe {
        padding-top: 56.25%;
    }
    .box__game-iframe iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}
.game__died {
    position: absolute;
    background: rgba(36, 37, 38, 0.85);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}
.game__died-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 22px;
}
.game__died-text:before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQ0NjFfMjgxNTg0KSI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMTIiIGZpbGw9IiNmZmYiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTS4wMDIgMTEuOTljMCA2LjU0NyA1LjM2NCAxMS45OSAxMS45ODkgMTEuOTkgNi41NDYgMCAxMS45ODktNS40NDMgMTEuOTg5LTExLjk5QzIzLjk4IDUuMzY3IDE4LjUzNy4wMDMgMTEuOTkuMDAzIDUuMzY3LjAwMi4wMDMgNS4zNjYuMDAzIDExLjk5MVptMTYuMTY5IDYuNjI2LTQuMTgtNC4xOC00LjE4IDQuMTgtMi40NDYtMi40NDUgNC4xMDItNC4xOC00LjEwMi00LjE4TDcuODEgNS4yODdsNC4xOCA0LjE4IDQuMTAyLTQuMTggMi41MjQgMi41MjQtNC4xOCA0LjE4IDQuMTggNC4xOC0yLjQ0NSAyLjQ0NVoiIGZpbGw9IiNEODIxM0YiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwMF80NDYxXzI4MTU4NCI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iMTIiIGZpbGw9IiNmZmYiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
}
@media (min-width: 768px) {
    .game__died-text {
        font-size: 34px;
        line-height: 36px;
        font-weight: bold;
    }
    .game__died-text:before {
        width: 32px;
        height: 32px;
    }
}
.box__subpage {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: -30px;
}
.page-list {
    list-style: none;
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
}
.page-list li a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    width: 170px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #3f4143;
    background: #e3e4e5;
    border-right: 1px solid #b2b7ba;
    border-bottom: 1px solid #b2b7ba;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    white-space: nowrap;
}
.page-list li a:hover {
    background: #cccdce;
}
.page-list li.active a {
    height: 41px;
    background: #fff;
    color: #4caf50;
    border-top: 3px solid #4caf50;
    border-left: 1px solid #4caf50;
    border-right: 1px solid #4caf50;
    border-bottom: 0;
}
@media (max-width: 768px) {
    .page-list {
        overflow-x: scroll;
    }
    .page-list li a {
        width: auto;
        padding: 0 30px;
    }
    .page-list::-webkit-scrollbar {
        height: 5px;
        margin-top: 1px;
        background: #fff;
    }
    .page-list::-webkit-scrollbar-track {
        background: #fff;
        height: 5px;
    }
    .page-list::-webkit-scrollbar-thumb {
        border-radius: 2px;
        height: 5px;
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
        background: rgba(0, 0, 0, 0.3);
    }
}

/* === Casino List Styles === */
.casino-list-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.casino-list-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
    padding: 28px 32px;
    gap: 24px;
    position: relative;
}
.casino-list-logo-badge-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-bottom: 0;
}
.casino-list-logo {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden; /* гарантируем обрезку содержимого под круг */
    aspect-ratio: 1 / 1;
}
.casino-list-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Вариант для логотипов с большими пустыми полями вокруг: заполнять круг полностью */
.casino-list-logo--cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}
.casino-list-badge {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    padding: 6px 18px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}
.casino-list-info {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.casino-list-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.casino-list-desc {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0;
}
.casino-list-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    background: #181c2b;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 24px;
    padding: 16px 24px;
}
.casino-list-bonus .bonus-label {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}
.casino-list-bonus .bonus-value {
    font-size: 2rem;
    color: #ff2250;
    font-weight: 800;
}
.casino-list-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}
.casino-list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.casino-list-btn--play {
    background: #ff2250;
    color: #fff;
}
.casino-list-btn--play:hover {
    background: #d90c3a;
}
.casino-list-btn--download {
    background: #f5f5f7;
    color: #181c2b;
    border: 1px solid #e5e7eb;
}
.casino-list-btn--download:hover {
    background: #e5e7eb;
}

/* === Мобильная адаптация === */
@media (max-width: 900px) {
    .casino-list-item {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 8px;
        gap: 16px;
    }
    .casino-list-logo-badge-row {
        justify-content: center;
        margin-bottom: 8px;
    }
    .casino-list-logo {
        width: 150px;
        height: 150px;
        min-width: 150px;
        border-radius: 50%;
    }
    .casino-list-badge {
        font-size: 14px;
        padding: 5px 14px;
    }
    .casino-list-info {
        align-items: center;
        text-align: center;
    }
    .casino-list-bonus {
        margin: 16px 0;
        min-width: 0;
        width: 100%;
    }
    .casino-list-actions {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .casino-list-item {
        padding: 10px 2px;
        gap: 8px;
    }
    .casino-list-logo {
        width: 150px;
        height: 150px;
        min-width: 150px;
        border-radius: 50%;
    }
    .casino-list-badge {
        font-size: 13px;
        padding: 4px 10px;
    }
    .casino-list-title {
        font-size: 1rem;
    }
    .casino-list-bonus {
        font-size: 1rem;
        padding: 10px 8px;
    }
    .casino-list-btn {
        font-size: 0.95rem;
        padding: 10px 10px;
    }
}

/* === ПК-стили для casino-list-item: всё в одну строку через flex === */
@media (min-width: 901px) {
  .casino-list-item {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 120px;
    padding: 20px 32px;
    gap: 32px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
    margin-bottom: 24px;
  }
  .casino-list-logo-badge-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    min-width: 120px;
  }
  .casino-list-logo {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    margin: 0;
  }
  .casino-list-badge {
    margin: 0;
    font-size: 14px;
    padding: 4px 14px;
    white-space: nowrap;
  }
  .casino-list-info {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 6px;
    min-width: 180px;
    max-width: 340px;
  }
  .casino-list-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .casino-list-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
  }
  .casino-list-bonus {
    min-width: 160px;
    width: 160px;
    padding: 12px 0;
    margin: 0 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    background: #181c2b;
    display: flex;
    flex-direction: column;
  }
  .casino-list-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    min-width: 140px;
  }
  .casino-list-btn {
    width: 100%;
    min-width: 120px;
    justify-content: center;
  }
}

/* === ПК-стили для casino-list-inner: всё в одну строку через flex === */
@media (min-width: 901px) {
  .casino-list-inner {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 120px;
    padding: 20px 32px;
    gap: 32px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
    margin-bottom: 24px;
  }
  .casino-list-logo-badge-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    min-width: 120px;
  }
  .casino-list-logo {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    margin: 0;
  }
  .casino-list-badge {
    margin: 0;
    font-size: 14px;
    padding: 4px 14px;
    white-space: nowrap;
  }
  .casino-list-info {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    min-width: 180px;
    max-width: 340px;
  }
  .casino-list-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .casino-list-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
  }
  .casino-list-bonus {
    min-width: 160px;
    width: 160px;
    padding: 12px 0;
    margin: 0 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    background: #181c2b;
    display: flex;
    flex-direction: column;
  }
  .casino-list-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    min-width: 140px;
  }
  .casino-list-btn {
    width: 100%;
    min-width: 120px;
    justify-content: center;
  }
}

@media (min-width: 901px) {
  .casino-list-item {
    padding: 0;
    background: none;
    box-shadow: none;
    margin-bottom: 32px;
  }
  .casino-list-inner {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-height: 140px;
    padding: 32px 40px;
    gap: 32px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
    margin-bottom: 0;
  }
  .casino-list-logo-badge-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    min-width: 120px;
  }
  .casino-list-logo {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    margin: 0;
  }
  .casino-list-badge {
    margin: 0;
    font-size: 14px;
    padding: 4px 14px;
    white-space: nowrap;
  }
  .casino-list-info {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 6px;
    min-width: 180px;
    max-width: 340px;
    justify-content: center;
  }
  .casino-list-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .casino-list-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
  }
  .casino-list-bonus {
    min-width: 220px;
    padding: 18px 0 18px 0;
    margin: 0 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    background: #181c2b;
    display: flex;
    flex-direction: column;
  }
  .casino-list-bonus .bonus-label {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
  }
  .casino-list-bonus .bonus-value { 
    color: #ff2250;
    font-weight: 800;
    padding: 8px 0 0 0;
    letter-spacing: 1px;
  }
  .casino-list-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    min-width: 140px;
	width: 300px;
  }
  .casino-list-btn {
    width: 100%;
    min-width: 120px;
    justify-content: center;
  }
}

/*AUTHOR*/
.author-block {
    grid-gap: 30px;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .078);
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-bottom: 32px;
    padding: 32px
}

@media (max-width:768px) {
    .author-block {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 16px
    }
}

.author-block .author-block__photo img {
    border-radius: 50%;
    height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 168px
}

.author-block .author-block__top-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .author-block .author-block__top-grid {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }
}

.author-block .author-block__line {
    color: #828282;
    font-size: 18px
}

.author-block .author-block__name {
    font-size: 24px;
    font-weight: 700
}

.author-block .author-block__socials {
    display: flex;
    gap: 10px
}

.author-block .author-block__socials .author-block__socials__item {
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    height: 32px;
    overflow: hidden;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item:hover {
    opacity: .86
}

.author-block .author-block__socials .author-block__socials__item i {
    display: inline-block;
    height: 32px;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item i.icon-fb {
    background: url(../assets/img/icon-fb.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-tw {
    background: url(../assets/img/icon-tw.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-email {
    background: url(../assets/img/icon-email.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__text {
    font-size: 18px
}

.author-block .author-block__text p:not(:last-child) {
    margin-bottom: 20px
}

.author-block__img {
  display: block;
  margin: 0 auto;
  border-radius: 50% !important;
  object-fit: cover;
  object-position: center;
  width: 120px;
  height: 120px;
}
