@charset "UTF-8";
html {
	background-color: var(--bg-body);
}
.wp-block-image img {
	max-width: 100%;
	border-radius: 40px !important;
	overflow: hidden;
}
body {
	margin: 0;
	font-size: var(--b-font-size);
	font-family: SFUIText, sans-serif;
	color: var(--text-body-color);
	overflow-y: scroll;
	overflow-x: hidden;
	background: #1e0917;
}
body .tag-block {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	max-width: 100vw !important;
}
body .tag-block .tag-block {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
body .tag-block__btn-more {
	padding: 10px 36px 9px;
	margin: 27px auto;
	display: table;
}
body .with-sidebar .tag-block,
body.wp-admin .tag-block {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
body .container,
body .no-sidebar .page-content > *,
body .with-sidebar .page-content {
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
}
body .left-right .container {
	padding-left: 10px;
	padding-right: 10px;
}
body .top-bottom .container {
	padding-top: 10px;
	padding-bottom: 10px;
}
body ol {
	counter-reset: myCounter;
	padding-left: 0;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}
body ol li {
	list-style: none;
}
body ol li:before {
	counter-increment: myCounter;
	content: counter(myCounter);
	color: #fff;
	background: var(--main-accent-color);
	display: inline-block;
	text-align: center;
	margin: 5px 10px 5px 0;
	line-height: 19px;
	min-width: 19px;
	width: 19px;
	height: 19px;
	border-radius: 4px;
}
body .wp-block-image figcaption {
	border-bottom: 1px solid var(--main-accent-color);
	display: inline-block;
	font-size: 1.1rem;
}
body .wp-block-image img {
	height: auto;
}
body .wp-block-image .aligncenter {
	text-align: center;
}
body .wp-block-image .aligncenter figcaption {
	display: inline-block;
}
body .wp-block-media-text__media img {
	width: auto;
	max-width: 100%;
	height: auto;
}
body .wp-block-quote {
	border-left: 4px solid var(--main-accent-color);
	margin-left: 0;
	padding-left: 20px;
}
body .wp-block-quote cite {
	font-weight: 600;
}
body .sub-title {
	font-weight: 700;
	font-size: 19px;
	line-height: 142.69%;
	margin-bottom: 13px;
	margin-top: 0;
}
body p {
	line-height: 17.5px;
	font-size: 14px;
}
body h2 {
	font-weight: 600;
	font-size: 1.7rem;
	position: relative;
}
body h2::after {
	content: '';
	border-bottom: unset;
	width: 10%;
	position: absolute;
	bottom: -13px;
	height: 5px;
	border-radius: 4px;
	left: 0;
	background: #ffae00;
}
.wp-admin body h2::after,
.wp-toolbar body h2::after {
	content: none;
}
body h3 {
	font-weight: 700;
	font-size: 1.3rem;
}
body .dark-bg:before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.7490196078);
}
body .transition {
	transition: none !important;
	-webkit-transition: none !important;
}
a {
	color: var(--link_color);
}
a:hover {
	color: var(--link_hover);
}
.wp-block-table td,
.wp-block-table th {
	border: 0 solid;
}
.wp-block-table {
	border-radius: 24px;
}
.wp-block-table.is-style-stripes table {
	border-collapse: inherit;
}
.wp-block-table table {
	width: 99.6%;
	border-collapse: collapse;
	margin-left: 1px;
	background-color: #190311;
}
.wp-block-table table thead {
	color: var(--h_navigation_color);
	font-size: 19px;
	background-color: #25334f;
	border-bottom: 0 solid;
}
.wp-block-table table thead th {
	padding: 10px;
	text-align: center;
}
.wp-block-table table thead th:first-child {
	border-left: none;
}
.wp-block-table table tbody tr {
	border-bottom: 0 solid #25334f;
}
.wp-block-table table tbody tr td:last-child {
	padding-left: 70px;
}
.wp-block-table table tbody tr td:first-child {
	padding-right: 70px;
}
.wp-block-table table tbody tr:last-child,
.wp-block-table table tbody tr:last-child td {
	border-bottom: none;
}
.wp-block-table table tbody td {
	width: 50%;
	padding: 10px;
	font-size: 16px;
	line-height: 19px;
	border: 0.9px solid #2a3752;
}
.wp-block-table table tbody td:last-child {
	border-right: none;
}
.go-to-top {
	-webkit-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
	position: fixed;
	bottom: 80px;
	right: 5%;
	cursor: pointer;
	width: 2rem;
	height: 2rem;
	z-index: 11;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' class='iconify iconify--emojione-monotone' fill='white' viewBox='0 0 64 64'%3E%3Cpath d='M32 2a30 30 0 1 0 0 60 30 30 0 0 0 0-60zm5.1 28.3V49H27V30.3H16L32 15l16 15.3H37.1z'/%3E%3C/svg%3E");
	visibility: hidden;
	opacity: 0;
}
.go-to-top--show {
	visibility: visible;
	opacity: 0.6;
}
.go-to-top:hover {
	opacity: 1;
}
.mobile-version {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility 0.25s, opacity 0.25s;
	transition: visibility 0.25s, opacity 0.25s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 420px;
	margin: 0 auto;
	padding-inline: 10px;
}
.mobile-version--show {
	visibility: visible;
	opacity: 1;
}
.mobile-version * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.mobile-version > .app-download {
	margin-inline: 0 !important;
}
.mobile-version .app-download__button {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mobile-version .app-download__button > .btn {
	min-height: 40px;
}
.app-download {
	max-width: 100%;
	margin: 10px;
	border-radius: 10px;
}
.app-download__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 45px auto 120px;
	grid-template-columns: 45px auto 120px;
	-ms-grid-rows: 1fr auto;
	grid-template-rows: 1fr auto;
	padding: 8px;
	gap: 8px;
}
.app-download__logo {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/3;
	border-radius: 10px;
	overflow: hidden;
	-ms-grid-column: 1;
	grid-column: 1/1;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.app-download__logo img {
	width: 85%;
	height: auto;
}
.app-download__title {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}
.app-download__bonus {
	-ms-grid-row: 2;
	grid-row: 2;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/3;
}
.app-download__button {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/3;
	-ms-grid-column: 3;
	grid-column: 3/3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.app-download__button a,
.app-download__button button {
	width: 100%;
}
.custom-scroll-x {
	overflow-x: auto;
}
.custom-scroll-x::-webkit-scrollbar {
	height: 4px;
}
.custom-scroll-x::-webkit-scrollbar-track {
	background: #190311;
	border-radius: 4px;
}
.custom-scroll-x::-webkit-scrollbar-thumb {
	background: linear-gradient(91.27deg, #108de7 0, #0855c4 100%);
	border-radius: 4px;
}
@-moz-document url-prefix() {
	.custom-scroll-x {
		scrollbar-width: thin;
		scrollbar-color: #108de7 #190311;
	}
}
.btn,
.btn-loadmore,
.cards__btn-more,
body .tag-block__btn-more {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-width: 1px;
	border-radius: var(--border-radius);
	border-style: solid;
	font-weight: 500;
	font-style: normal;
	font-family: SFUIText, sans-serif;
	font-size: 14px;
	outline: 0;
	cursor: pointer;
	text-decoration: none;
}
.btn *,
.btn-loadmore *,
.cards__btn-more *,
body .tag-block__btn-more * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-loadmore,
.btn-with-back {
	background-size: 300% 100%;
	background-image: var(--button-gradient);
	font-weight: 700;
	color: var(--button-gradient-text);
	border: unset;
	border-radius: 32px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.btn-loadmore:hover,
.btn-with-back:hover {
	background-position: 100% 0;
}
.btn-loadmore :before,
.btn-with-back :before {
	content: '';
	position: absolute;
	height: 100%;
	width: 20%;
	background-color: hsla(0, 0%, 100%, 0.2);
	left: -25%;
	-webkit-transform: skewX(-20deg);
	transform: skewX(-20deg);
}
.btn-with-back--custom-bg {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#e83059),
		to(#7155ed)
	);
	background: linear-gradient(90deg, #e83059 0, #7155ed 100%);
}
.btn-without-back-white {
	background-color: unset;
	border-color: var(--btn-border-color);
	color: var(--btn-border-color);
	border-width: 2px;
	font-weight: 400;
}
.btn-without-back-white:hover {
	border-color: var(--btn-border-hover-color);
	background-color: var(--btn-border-hover-color);
	color: var(--btn-border-hover-text-color);
}
.cards__btn-more,
body .tag-block__btn-more {
	background-color: unset;
	border-color: var(--main-accent-color);
	color: var(--text-body-color);
}
.cards__btn-more:hover,
body .tag-block__btn-more:hover {
	border-color: var(--text-body-color);
	color: var(--main-accent-color);
}
.btn-big-text,
.btn-loadmore,
.cards__btn-more,
body .tag-block__btn-more {
	text-transform: uppercase;
	font-size: 16px;
}
.btn-loadmore {
	margin: 40px auto;
	display: table;
	padding: 10px 40px;
}
.content-button {
	margin: 20px;
}
.content-button__control {
	display: table;
	padding: 10px 55px 9px;
	font-size: 1.3rem;
}
.align-center .content-button__control {
	margin: auto;
}
.align-right .content-button__control {
	margin: 0 0 0 auto;
}
.align-left .content-button__control {
	margin: 0 auto 0 0;
}
.btn-with-caption {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr auto;
	grid-template-columns: 1fr auto;
	-ms-grid-rows: 20px 20px;
	grid-template-rows: 20px 20px;
	background-size: 300% 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: var(--button-gradient);
	font-weight: 700;
	background: linear-gradient(180deg, #eda155 0%, #8c3600 100%);

	color: var(--button-gradient-text);
	border: unset;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	border-radius: 100px !important;
}
.btn-with-caption--sm {
	padding: 8px 16px;
	border-radius: 10px;
}
.btn-with-caption--md {
	padding: 8px 24px;
	border-radius: 32px;
	max-width: 400px;
	margin-inline: auto;
	width: 100%;
}
.btn-with-caption__title {
	text-align: left;
	font-weight: 700;
	font-size: 18px;
	line-height: 14px;
}
.btn-with-caption__caption {
	-ms-grid-column: 1;
	grid-column: 1;
	font-weight: 300;
	font-size: 10px;
	line-height: 10px;
	text-align: left;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.btn-with-caption__caption span:nth-child(1) {
	margin-right: 5px;
}
.btn-with-caption__img {
	-ms-grid-column: 2;
	grid-column: 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/3;
}
.btn-with-caption__img img {
	height: 100%;
	width: auto;
	margin-left: 5px;
}
.link_for_mobile_logo_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: none;
	background: 0 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	height: 100%;
}
.link_for_mobile_logo_btn img {
	vertical-align: middle;
}
.header__mobile-navbar .menu-item button {
	width: 100%;
}
.cta-block__app-btn,
.cta-block__promocode-btn,
.demo-predictor-app__btn,
.deposite-block__additional-btn,
.features__button,
.game-block__additional-btn {
	border: none;
	outline: 0;
	margin-inline: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px;
	max-width: 260px;
	width: 100%;
	min-height: 45px;
	border-radius: 32px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	color: #fff;
	text-decoration: none;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}
.list-IL__link::after {
	width: 27px;
	height: 18px;
	background: url(/assets/images/icon_sprites.png) -40px -1325px;
}
.header__mobile-navbar nav > ul > li.menu-item-has-children::after {
	width: 10px;
	height: 6px;
	background: url(/assets/images/icon_sprites.png) -40px -40px;
}
.pc-cards > div > div ul.cons li,
.site__pros-cons ul.cons li {
	background: url(/assets/images/icon_sprites.png) -40px -568px no-repeat;
}
.pc-cards > div > div ul.pros li,
.site__pros-cons ul.pros li {
	background: url(/assets/images/icon_sprites.png) -40px -477px no-repeat;
}
.slider-arrow {
	background: url(/assets/images/icon_sprites.png) -29px -202px
		var(--main-accent-color);
}
.site__rating p::before {
	width: 25px;
	height: 23px;
	background: url(/assets/images/icon_sprites.png) -40px -1520px;
}
.info-about-site__title,
body .tag-block__title {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
.info-about-site__title::before,
body .tag-block__title::before {
	content: '';
	position: absolute;
	background-color: var(--main-accent-color);
	height: 3px;
	left: 0;
	right: 0;
	top: 39px;
	z-index: -1;
}
.info-about-site__title > *,
body .tag-block__title > * {
	background-color: var(--bg-body);
	padding: 0 17px;
	font-weight: 500;
	font-size: 24px;
	color: var(--text-body-color);
	line-height: 142.69%;
	-webkit-margin-before: 1em;
	margin-block-start: 1em;
	-webkit-margin-after: 1em;
	margin-block-end: 1em;
}
.info-about-site__title > ::after,
body .tag-block__title > ::after {
	content: none;
}
.header {
	background-color: var(--h_background_color);
	margin: auto;
}
.header__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	height: 100px;
}
.header__navbar nav ul,
.header__second-navbar nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px;
}
.header__navbar nav li,
.header__second-navbar nav li {
	list-style-type: none;
	margin: 0 6px;
	position: relative;
	background-color: #190311;
	padding: 10px 15px;
	border-radius: 24px;
}
.header__navbar nav li.menu-item-has-children,
.header__second-navbar nav li.menu-item-has-children {
	padding-right: 30px;
}
.header__navbar nav li.menu-item-has-children > a:after,
.header__second-navbar nav li.menu-item-has-children > a:after {
	width: 13px;
	height: 23px;
	content: '‹';
	position: absolute;
	right: -22px;
	font-size: 26px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	line-height: 13px;
	color: var(--h_navigation_color);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__navbar nav li:last-child,
.header__second-navbar nav li:last-child {
	margin-right: 0;
}
.header__navbar nav li .sub-menu,
.header__second-navbar nav li .sub-menu {
	position: absolute;
	z-index: 4;
	left: 50%;
	top: 100%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 180px;
	padding: 10px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: var(--h_background_color);
}
.header__navbar nav li .sub-menu li,
.header__second-navbar nav li .sub-menu li {
	margin: 5px 15px;
}
.header__navbar nav li .sub-menu a,
.header__second-navbar nav li .sub-menu a {
	font-size: 1rem;
	font-weight: 400;
}
.header__navbar nav li:hover .sub-menu,
.header__second-navbar nav li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.header__navbar nav a,
.header__second-navbar nav a {
	color: var(--h_navigation_color);
	text-decoration: none;
	font-style: normal;
	font-size: 1rem;
	font-weight: 500;
	position: relative;
	display: inline-block;
}
.header__navbar nav a img,
.header__second-navbar nav a img {
	width: auto;
	height: 1rem;
	max-height: 1rem;
	margin-left: 5px;
}
.header__navbar nav a:hover,
.header__second-navbar nav a:hover {
	text-shadow: 0.1px 0 #fff;
}
.header__navbar nav a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__navbar li:hover {
	background-color: #531717;
}
.header__second-navbar {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	max-width: 100vw !important;
	background-color: var(--main-accent-color);
}
.header__second-navbar nav > ul {
	padding: 5px 20px 7px;
	margin-bottom: 0;
}
.header__second-navbar nav > ul > li:first-child {
	margin-left: 0;
}
.header__second-navbar nav ul {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 0;
}
.header__second-navbar nav ul a,
.header__second-navbar nav ul li .sub-menu a {
	font-size: 0.9rem;
}
.header__mobile-navbar {
	display: none;
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}
.header__mobile-navbar nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: fixed;
	padding: 9px 0 15px;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	top: 110px;
	right: -100%;
	-webkit-transition: right 0.25s;
	transition: right 0.25s;
	z-index: 2;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background: 0 0;
}
.header__mobile-navbar nav p {
	color: #fff;
	padding: 0 19px;
	margin: 0;
}
.header__mobile-navbar nav > ul {
	margin: 0;
	padding: 0 20px;
	list-style-type: none;
	overflow: scroll;
}
.header__mobile-navbar nav > ul a {
	color: #fff;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__mobile-navbar nav > ul a img {
	width: auto;
	height: 1rem;
	max-height: 1rem;
	margin-left: 10px;
}
.header__mobile-navbar nav > ul > li {
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	padding: 9px 0;
	position: relative;
}
.header__mobile-navbar nav > ul > li ul {
	opacity: 0;
	position: absolute;
	padding-left: 20px;
	padding-top: 10px;
}
.header__mobile-navbar nav > ul > li ul a {
	font-weight: 300;
	font-size: 14px;
	line-height: 16px;
	padding: 4px 0;
	display: block;
}
.header__mobile-navbar nav > ul > li ul a.active {
	font-weight: 700;
	color: var(--main-accent-color);
}
.header__mobile-navbar nav > ul > li.menu-item-has-children::after {
	content: '';
	position: absolute;
	right: 0;
	top: 16px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__mobile-navbar nav > ul > li.open::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.header__mobile-navbar nav > ul > li.open ul {
	position: relative;
	opacity: 1;
}
.header__mobile-navbar > input {
	display: none;
}
.header__mobile-navbar > input:checked ~ label > span {
	-webkit-transition: rotate 0.25s 0.3s, opacity 0.25s, top 125ms;
	transition: rotate 0.25s 0.3s, opacity 0.25s, top 125ms;
}
.header__mobile-navbar > input:checked ~ label > span:nth-child(1),
.header__mobile-navbar > input:checked ~ label > span:nth-child(3) {
	top: 50%;
}
.header__mobile-navbar > input:checked ~ label > span:nth-child(1) {
	rotate: -45deg;
}
.header__mobile-navbar > input:checked ~ label > span:nth-child(2) {
	rotate: 45deg;
}
.header__mobile-navbar > input:checked ~ label > span:nth-child(3) {
	opacity: 0;
}
.header__mobile-navbar > input:checked ~ nav {
	right: 0;
	left: auto;
}
.header__mobile-navbar > label {
	position: relative;
	width: 27px;
	height: 25px;
	display: block;
	z-index: 3;
}
.header__mobile-navbar > label > span {
	display: block;
	position: absolute;
	width: 25px;
	border-bottom: 3px solid var(--h_navigation_color);
	border-radius: 3px;
	-webkit-transition: rotate 0.25s, opacity 0.25s 0.25s, top 125ms 0.3s;
	transition: rotate 0.25s, opacity 0.25s 0.25s, top 125ms 0.3s;
}
.header__mobile-navbar > label > span:nth-child(1) {
	top: 3px;
}
.header__mobile-navbar > label > span:nth-child(2) {
	top: 50%;
}
.header__mobile-navbar > label > span:nth-child(3) {
	top: calc(100% - 3px);
}
.header__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px 10px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}
.header__buttons > :nth-child(2) {
	background: linear-gradient(180deg, #bcba31 0%, #565516 100%);
}
.header__buttons > :nth-child(2):hover {
	opacity: 0.9;
}
.list-IL ul {
	padding: 0;
	margin: 10px 0;
}
.list-IL__item {
	list-style-type: none;
	background-color: var(--h_navigation_color);
	border-radius: 8px;
	margin-bottom: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 8px 8px 15px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
	border: 1px solid var(--main-accent-color);
}
.list-IL__item:last-child {
	margin-bottom: 0;
}
.list-IL__item span {
	line-height: 142.69%;
	font-weight: 600;
	color: var(--text-body-color);
	font-size: 0.9rem;
}
.list-IL__item img {
	margin-right: 11px;
	border-radius: 8px;
	max-height: 50px;
	width: auto;
}
.list-IL__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	position: relative;
	width: 100%;
}
.list-IL__link span {
	max-width: 65%;
}
.list-IL__link::after {
	content: '';
	position: absolute;
	right: 20px;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}
.list-IL__link:hover::after {
	right: 17px;
}
.cards__list {
	margin: 0 0 20px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.cards__item {
	width: 100%;
	max-width: 172px;
	height: 172px;
	list-style-type: none;
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	margin-top: 30px;
	padding: 0 5px;
}
.cards__item:hover {
	background: #f8f8f8;
}
.cards__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-decoration: none;
	height: 100%;
}
.cards__item a img {
	padding-top: 26px;
}
.cards__item a span {
	font-weight: 700;
	font-size: 16px;
	line-height: 142.69%;
	text-transform: uppercase;
	color: var(--text-body-color);
	padding-bottom: 16px;
}
.cards__btn-more {
	padding: 10px 36px 9px;
	margin: 27px auto;
	display: table;
}
.full {
	width: 100%;
}
.medium {
	width: 50%;
	display: inline-block;
}
.small {
	width: 30%;
	display: inline-block;
}
.full-list {
	width: 100%;
}
.medium-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.medium-list ul li {
	width: 47%;
}
.medium-list ul li:last-child {
	margin-bottom: 16px;
}
.small-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.small-list ul li {
	width: 30%;
}
.small-list ul li:last-child {
	margin-bottom: 16px;
}
.best-sites {
	margin: 20px 0 35px;
}
.site {
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	border: 1px solid #eee;
	margin-bottom: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}
.site__logo-and-rating {
	max-width: 240px;
	min-width: 240px;
	min-height: 196px;
	background-color: var(--ft_background_color);
	background-image: url(/assets/images/back-sites.png);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.site__logo-and-rating img {
	max-width: 200px;
	height: auto;
}
.site__logo {
	margin: 30px 0 0;
}
.site__rating {
	color: #fff;
	font-weight: 700;
	font-size: 21px;
	line-height: 130.19%;
}
.site__rating p {
	margin: 10px 0;
	position: relative;
	padding-left: 30px;
}
.site__rating p::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
}
.site__link-review {
	padding: 3px 9px;
	margin: 10px 0;
}
.site__link {
	padding: 7px 55px 6px;
	display: inline-block;
	margin-top: 5px;
}
.site__offer {
	margin: auto 5px auto 15px;
	text-align: left;
	min-width: 260px;
	width: 260px;
}
.site__pros-cons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 5px 20px 5px 35px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.site__pros-cons ul {
	list-style-type: none;
	margin: 5px 0;
	padding: 0;
}
.site__pros-cons ul li {
	font-weight: 500;
	font-size: 0.9rem;
	line-height: 142.69%;
	padding-left: 25px;
	padding-bottom: 10px;
	background-repeat: no-repeat;
	background-position: 0 2px;
}
.site__pros-cons ul li:last-child {
	padding-bottom: 0;
}
.site__pros-cons ul.cons li {
	padding-left: 22px;
}
.site__pm {
	max-width: 215px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.site__pm ul {
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
	margin: 5px 0;
}
.site__pm ul li {
	margin: 2px;
	background-color: #f8f8fa;
	padding: 2px;
	vertical-align: middle;
	height: 30px;
	width: 55px;
	border-radius: 2px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #e5e5e5;
}
.site__pm ul img {
	max-width: 50px;
	height: auto;
	max-height: 30px;
}
.site__pm ul svg {
	border-radius: 5px;
	margin-left: 10px;
	width: 27px;
	height: 27px;
}
.site__pm ul svg path {
	fill: var(--main-accent-color);
}
.offer__welcome-offer {
	font-size: 23px;
	font-weight: 700;
	color: var(--main-accent-color);
	margin: 0 0 10px;
	line-height: 118%;
}
.offer__welcome-offer span {
	display: block;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-body-color);
}
.with-sidebar .site__pros-cons ul {
	margin: 5px;
}
.block-posts {
	margin: 20px 0 35px;
}
.block-posts__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}
.with-sidebar .block-posts__second {
	display: none;
}
.block-posts__second {
	width: 464px;
}
.block-posts__second .post {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: unset;
	height: 195px;
	margin-bottom: 15px;
}
.block-posts__second .post:last-child {
	margin-bottom: 0;
}
.block-posts__second .post__image {
	background-color: #dbdbdb;
	text-align: center;
}
.block-posts__second .post__image img {
	clip: rect(0 202px 195px 0);
	position: absolute;
}
.block-posts__second .post__content {
	margin-left: 202px;
}
.block-posts__second .post__title {
	margin: 15px 20px;
}
.block-posts__second .post__description {
	margin: 10px 20px 17px;
}
.post {
	max-width: 343px;
	min-width: 320px;
	background-image: linear-gradient(180deg, #2f0809 0%, #531a95 100%);
	border-radius: 25px;
	border: 1px solid var(--main-accent-color);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	position: relative;
	overflow: hidden;
}
.post a {
	text-decoration: none;
}
.post__read-more {
	text-decoration: none;
	padding: 10px 36px;
	background-color: #190311;
	color: #ffae00;
	border-radius: 100px !important;
}
.post__read-more:hover {
	color: #ffae00;
}
.post__date {
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	color: #fff;
	position: absolute;
	left: 0;
	top: 15px;
	background-image: linear-gradient(180deg, #2f0809 0%, #531a95 100%);
	padding: 6px 13px 5px;
	z-index: 1;
}
.post__image {
	text-align: center;
	min-height: 60px;
	max-height: 195px;
	display: block;
	overflow: hidden;
}
.post__image img {
	width: inherit;
	max-width: 100%;
	height: auto;
}
.post__title {
	font-size: 19px;
	font-weight: 700;
	line-height: 142.69%;
	border-bottom: 1px solid #efefef;
	margin: 15px 20px 20px;
	padding-bottom: 7px;
	color: var(--text-body-color);
}
.post__description {
	margin: 10px 20px 40px;
	line-height: 142.69%;
	color: var(--text-body-color);
}
.post__description span {
	padding: 3px 15px;
}
.slider {
	margin: 20px 0;
	position: relative;
	height: 295px;
	overflow: hidden;
}
.slider__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	left: 0;
	-webkit-transition: left 0.3s;
	transition: left 0.3s;
	padding: 10px 6px;
}
.slider::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 20px;
	background: linear-gradient(
		271deg,
		var(--bg-body) 50%,
		rgba(255, 255, 255, 0.0509803922) 120%
	);
	z-index: 1;
}
.slider__item {
	max-width: 227px;
	width: 227px;
	padding: 17px 19px;
	margin-right: 30px;
	background: var(--bg-body);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
	border: 1px solid var(--main-accent-color);
}
.slider__item span {
	line-height: 142.69%;
}
.slider__item-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 142.69%;
	border-bottom: 1px solid #e3e2e2;
	padding-bottom: 6px;
	margin-bottom: 12px;
	margin-top: 0;
}
.slider__arrow .count {
	width: 39px;
	height: 30px;
	position: absolute;
	bottom: -3px;
	left: 46px;
	font-size: 17px;
	font-weight: 600;
	color: gray;
	display: none;
}
.slider-arrow {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.0705882353);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.0705882353);
	border-radius: 6px;
	width: 39px;
	height: 30px;
	position: absolute;
	bottom: 0;
	background-repeat: no-repeat;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	cursor: pointer;
}
.next {
	left: 60px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.faq {
	margin-top: 45px;
	overflow: hidden;
}
.faq details {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ffffff80 !important;
	border-radius: var(--border-radius);
	padding: 31px 42px 31px 53px;
	margin-bottom: 15px;
	position: relative;
	line-height: 142%;
	background: #ffffff1a;
	border: unset;
}
.faq details p {
	padding: 20px 10px;
	border-radius: 20px;
}
.faq summary {
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	line-height: 142.69%;
	outline: 0;
	cursor: pointer;
	display: block;
	margin-right: -10px;
}
.faq summary::-webkit-details-marker,
.faq summary::marker {
	display: none;
	content: '';
}
.faq summary::after {
	content: '›';
	position: absolute;
	top: 24px;
	right: 30px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	font-size: 3rem;
	color: var(--text-body-color);
	width: 12px;
	height: 40px;
}
.faq details[open] summary::after {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}
.q_and_a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.q_and_a details {
	width: 48.5%;
	height: 273px;
	position: relative;
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.0705882353);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.0705882353);
	margin-bottom: 30px;
	min-width: 470px;
}
.q_and_a details summary {
	font-weight: 700;
	font-size: 25px;
	line-height: 142.69%;
	padding: 100px 20px 50px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.q_and_a details summary::-webkit-details-marker,
.q_and_a details summary::marker {
	display: none;
	content: '';
}
.q_and_a details summary svg {
	width: 70px;
	min-width: 70px;
	fill: var(--main-accent-color);
	padding-right: 30px;
}
.q_and_a details[open]:hover div {
	opacity: 1;
}
.q_and_a details[open] div {
	background-color: var(--main-accent-color);
	background-image: url(/assets/images/back-qr.png);
	background-position: 50%;
	background-size: 110%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: 0;
	padding: 25px 40px;
	color: #fff;
	line-height: 142%;
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fill-available;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.q_and_a details[open] a {
	display: inline-block;
	color: #fff;
	outline: 0;
}
.q_and_a details[open] p {
	margin: 2px 0;
}
.bonuses {
	margin-bottom: 35px;
}
.bonuses__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.bonus {
	background: var(--bg-body);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	border: 1px solid #eee;
	margin-bottom: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 286px;
}
.bonus__logo {
	background-color: var(--ft_background_color);
	min-height: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.bonus__description {
	padding: 15px 22px 5px;
}
.bonus__description p {
	font-weight: 700;
	font-size: 20px;
	line-height: 142.69%;
	margin: 0;
}
.bonus__group-btn {
	padding: 16px;
	margin: 11px 16px;
	border: 2px dotted var(--main-accent-color);
	text-align: center;
}
.bonus__visit-casino {
	display: table;
	padding: 9px 22px 8px;
	margin: 0 auto 4px;
}
.bonus__read-review {
	text-transform: capitalize;
	font-weight: 500;
	font-size: 14px;
	line-height: 142.69%;
	color: var(--bg-color);
}
.rating {
	padding: 0 22px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.rating__star {
	width: 160px;
	height: 14px;
	position: relative;
}
.rating__star .empty {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-b-star-1.png);
}
.rating__star .full {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-b-star-2.png);
	position: absolute;
}
.rating__number {
	font-weight: 700;
	font-size: 21px;
	line-height: 130.19%;
}
footer .footer {
	padding: 36px 0;
	color: var(--ft_text_color);
	background-color: var(--ft_background_color);
}
footer .footer__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer .footer__social-link {
	max-width: 230px;
	color: var(--ft_text_color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
footer .footer .footer-widget {
	color: var(--ft_text_color);
	font-size: 14px;
}
footer .footer .footer-widget__title {
	font-weight: 700;
	font-size: 22px;
	line-height: 142.69%;
	color: var(--main-accent-color);
	margin-bottom: 0;
}
footer .footer .footer-widget ul {
	padding: 0;
}
footer .footer .footer-widget ul li {
	list-style-type: none;
	margin-bottom: 16px;
}
footer .footer .footer-widget a {
	color: var(--ft_text_color);
	font-weight: 500;
	font-size: 14px;
	line-height: 142.69%;
	text-decoration: none;
}
.site-info {
	border-top: 2px solid var(--site_info_b_color);
	padding: 10px 0;
	background-color: var(--ft_background_color);
}
.site-info > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 66px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.site-info a,
.site-info p {
	color: var(--ft_text_color);
	text-decoration: none;
	font-size: 16px;
	margin: 0 10px;
}
.breadcrumb ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style-type: none;
	padding: 16px 0;
	margin: 0;
}
.breadcrumb ul li {
	text-transform: uppercase;
	font-size: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
}
.breadcrumb ul li a {
	text-decoration: underline;
	color: var(--text-body-color);
	font-weight: 400;
	padding-right: 30px;
	position: relative;
}
.breadcrumb ul li a:after {
	content: ' ';
	background-image: url(/assets/images/arrow.svg);
	position: absolute;
	top: 0;
	right: 13px;
	font-size: 20px;
	color: var(--main-accent-color);
	font-weight: 600;
	background-repeat: no-repeat;
	width: 8px;
	height: 14px;
	background-position: center;
	background-size: 100%;
}
.about-page {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-color: var(--h_background_color);
	background-position: 50%;
	min-width: 100%;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	max-width: 100vw !important;
}
.about-page__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	min-height: 320px;
	margin: 20px 0;
}
.about-page__wrap > :nth-child(2) {
	max-width: 40%;
}
.about-page__title {
	font-weight: 700;
	font-size: 51px;
	line-height: 124.69%;
	padding-bottom: 10px;
	position: relative;
	margin: 0 0 20px;
}
.about-page__title::before {
	width: 113px;
	height: 6px;
	content: '';
	position: absolute;
	border-radius: 9px;
	bottom: 0;
	background: #ffae00;
}
.about-page__description {
	max-width: 500px;
	margin: 0;
}
.about-page__description p {
	margin: 0;
}
.list-anchor {
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 30px !important;
}
.list-anchor__title {
	font-weight: 700;
	font-size: 32px;
	line-height: 38px;
	padding-right: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.list-anchor__title::after {
	content: none;
}
.list-anchor__title img {
	padding: 8px;
	background: linear-gradient(180deg, #2f0809 0%, #531a95 100%);
	border-radius: 50%;
	-webkit-transform: rotateZ(90deg);
	transform: rotateZ(90deg);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.list-anchor ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px;
	border-radius: 15px;
}
.list-anchor ul li {
	border-radius: 60px;
	border: 1px solid #eda155;
	padding: 10px 24px;
	margin: 5px;
	color: #fff;
}
.list-anchor ul li:hover {
	background-color: #531717;
	border-color: #531717;
}
.list-anchor ul li:hover a {
	text-decoration: none;
	color: #fff;
}
.list-anchor ul a {
	text-decoration: none;
	font-size: 14px;
	line-height: 142.69%;
	font-weight: 700;
	color: #fff;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 12px;
	grid-template-columns: 1fr 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	grid-gap: 5px;
}
.list-anchor ul a:hover {
	text-decoration: underline;
	color: var(--main-accent-color);
}
.promocode-block {
	max-width: 400px;
	width: 100%;
	border: 1px solid var(--main-accent-color);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	position: relative;
	border-radius: 15px;
	border: unset;
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
	background-color: transparent;
	margin: 0 auto;
}
.promocode-block-ref {
	display: none;
}
.promocode-block__title {
	color: #fff;
	text-align: center;
}
.promocode-block__title p {
	font-weight: 700;
	font-size: 26px;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}
.promocode-block input {
	border: 2px dashed #09101e;
	background: var(--button-gradient);
	-webkit-box-shadow: inset 0 0 20px 32px #09101e;
	box-shadow: inset 0 0 20px 32px #09101e;
	border-radius: 66px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 142.69%;
	text-transform: uppercase;
	max-width: 400px;
	width: 100%;
	padding: 10px 0;
	margin-top: 20px;
	outline: 0;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.promocode-block input:hover {
	cursor: pointer;
	-webkit-box-shadow: inset 0 0 30px 32px #09101e;
	box-shadow: inset 0 0 30px 32px #09101e;
}
.promocode-block__valid-text {
	padding: 5px 21px;
	border-radius: 30px;
	border: 2px solid transparent;
	background: var(--button-gradient);
	-webkit-box-shadow: inset 0 0 0 100vw #09101e;
	box-shadow: inset 0 0 0 100vw #09101e;
	font-weight: 900;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.promocode-block__valid-text .light {
	width: 3px;
	height: 3px;
	background-color: #25d04b;
	border-radius: 50%;
	padding: 3px;
	margin: 5px;
	-webkit-box-shadow: 0 0 10px #25d04b;
	box-shadow: 0 0 10px #25d04b;
	position: relative;
}
.promocode-block__valid-text .light:after {
	content: ' ';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	border-radius: 50%;
	left: 0;
	-webkit-box-shadow: 0 0 5px #25d04b;
	box-shadow: 0 0 5px #25d04b;
}
.promocode-block__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	margin-top: 10px;
	width: 100%;
	max-width: 350px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-inline: auto;
}
.promocode-block__header p {
	display: inline;
	padding-left: 20px;
	margin: 0;
}
.promocode-block__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.promocode-block a,
.promocode-block button {
	font-weight: 300;
	font-size: 14px;
	line-height: 125%;
	border: unset;
	color: #fff;
	background-image: none;
	background-color: transparent;
	text-transform: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 15px;
}
.promo-inner--styles {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	max-width: 260px;
	margin-inline: auto;
}
.promo-inner--styles input {
	border: 1px solid #003b90;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 12px 0 0 12px;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	width: 100%;
	padding: 7px 20px 6px;
	outline: 0;
	-webkit-box-shadow: 0 14px 25px rgba(1, 60, 160, 0.44);
	box-shadow: 0 14px 25px rgba(1, 60, 160, 0.44);
	background-color: #fff;
	height: 40px;
}
.promo-inner--styles a,
.promo-inner--styles button {
	background-image: linear-gradient(180deg, #2f0809 0%, #531a95 100%);
	border: unset;
	border-radius: 0 12px 11px 0;
	min-width: 97px;
	height: 40px;
	-webkit-box-shadow: 0 0 50px #2a8047;
	box-shadow: 0 0 50px #2a8047;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.promo-inner--styles a:hover,
.promo-inner--styles button:hover {
	cursor: pointer;
	background: #8d53e9;
	border: unset;
	border-radius: 0 12px 11px 0;
	width: 30%;
	-webkit-box-shadow: 0 0 50px #2a8047;
	box-shadow: 0 0 50px #2a8047;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}
.info-about-site {
	margin-bottom: 35px;
}
.info-about-site__title {
	text-transform: uppercase;
}
.info-about-site__warp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.info-about-site__warp > div {
	width: 49%;
}
.non-recommend {
	margin-bottom: 35px;
}
.non-recommend__warning {
	background: #ffe9e9;
	border: 1px solid #c5a1a1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: var(--border-radius);
	padding: 22px 35px;
	margin-bottom: 30px;
}
.non-recommend .site {
	padding-left: 71px;
}
.non-recommend .site__logo-and-rating {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.non-recommend .site__logo {
	margin: 5px 0 15px;
}
.non-recommend .site::after {
	content: none;
}
.non-recommend .site::before {
	content: 'X';
	position: absolute;
	height: 100%;
	width: 71px;
	top: 0;
	left: 0;
	background-color: #e03131;
	color: #fff;
	font-weight: 400;
	font-size: 37px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.non-recommend .site__description {
	width: 65%;
	padding: 20px 40px;
	line-height: 142.69%;
}
.non-recommend .site__title {
	font-weight: 700;
	font-size: 19px;
	margin-top: 0;
}
.author {
	margin-bottom: 35px;
}
.author h2 {
	margin-top: 0;
}
.author__wrap {
	background: #fff;
	border: 1px solid var(--main-accent-color);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: var(--border-radius);
	padding: 50px 55px;
}
.author__description {
	margin-bottom: 15px;
}
.author__description h2 {
	display: inline-block;
	margin-right: 20px;
}
.author__description img {
	max-width: 100%;
	height: auto;
}
.author__cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.author__img-name {
	text-align: center;
	margin-right: 38px;
}
.author__img-name img {
	border-bottom: 5px solid var(--main-accent-color);
}
.author__img-name h3 {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 142.69%;
	margin: 0;
}
.author__rating {
	font-weight: 700;
	font-size: 19px;
	line-height: 142.69%;
	border: 1px solid var(--main-accent-color);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 14px 26px;
	margin-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.author__rating > span {
	width: 110px;
	height: 19px;
	position: relative;
	margin-left: 1rem;
	display: inline-block;
}
.author__rating > span .empty {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-big-star-1.png);
}
.author__rating > span .full {
	width: 100%;
	height: 100%;
	background-image: url(/assets/images/icon-big-star-2.png);
	position: absolute;
	background-size: 22px;
	top: 0;
}
.author .label-comment {
	color: var(--link_color);
	text-decoration: underline;
	cursor: pointer;
	font-weight: 600;
}
.author .label-comment:hover {
	color: var(--link_hover);
}
.author__date,
.author__email {
	font-size: 19px;
	line-height: 142.69%;
	color: #dbd1d1;
	font-weight: 300;
}
.author__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.author__social > div {
	margin-right: 20px;
	margin-bottom: 20px;
}
.author__social .social-links {
	padding-top: 10px;
	padding-left: 10px;
	border-radius: var(--border-radius);
	border: 1px solid var(--main-accent-color);
	margin-top: 0;
}
.author-page .author__img-name h1 {
	margin: 0;
}
.author-page {
	margin-top: 20px;
}
body.author {
	margin-bottom: 0;
}
.social-links {
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
}
.social-links li {
	margin-right: 10px;
	margin-bottom: 10px;
}
.social-links li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 60px;
	height: 36px;
	background-color: var(--color_bg_soc_icons);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 7px;
}
.social-links li a.twitter {
	background: linear-gradient(240.2deg, #0fb1d6, #08c 61.34%);
	-webkit-box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3);
	box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3);
}
.social-links li a.twitter svg {
	fill: #fff;
}
.social-links li a.instagram {
	background: linear-gradient(
		214.99deg,
		#7e2bf4 7.65%,
		#ed146e 51.93%,
		#ffc90c 95.29%
	);
	-webkit-box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3);
	box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3);
}
.social-links li a.instagram svg {
	fill: #fff;
}
.social-links li a.pinterest {
	background: #ed146e;
	-webkit-box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3);
	box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3);
}
.social-links li a.pinterest svg {
	fill: #fff;
}
.social-links li a.facebook {
	background: linear-gradient(108.65deg, #91b8ef 2.63%, #4288ed 101.05%);
	-webkit-box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3);
	box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3);
}
.social-links li a.facebook svg {
	fill: #fff;
}
.social-links li a svg {
	fill: var(--color_soc_icons);
}
.social-links li a:hover {
	background-color: var(--color_soc_icons);
}
.social-links li a:hover svg {
	fill: var(--color_bg_soc_icons);
}
@font-face {
	font-family: SFUIText;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(''), url(/assets/fonts/SFUITextRegular.woff2) format('woff2'),
		url(/assets/fonts/SFUITextRegular.woff) format('woff');
}
@font-face {
	font-family: SFUIText;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local(''), url(/assets/fonts/SFUITextBold.woff2) format('woff2'),
		url(/assets/fonts/SFUITextBold.woff) format('woff');
}
.with-sidebar > .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.with-sidebar .sidebar {
	width: 25%;
	padding-left: 20px;
}
.with-sidebar .page-content {
	width: 100%;
}
.sidebar__title {
	font-weight: 700;
	font-size: 22px;
	line-height: 142.69%;
	margin-bottom: 10px;
}
.sidebar__wrap img {
	max-width: 100%;
}
.sidebar__wrap .calendar_wrap table {
	margin: auto;
}
.review-page {
	background-color: var(--review-bg-color);
	color: var(--review-text);
	display: flow-root;
	margin-bottom: 35px;
	background-size: cover;
	position: relative;
}
.review-page h1 {
	font-size: 40px;
	margin: 40px 0;
	font-weight: 700;
	line-height: 124.69%;
	position: relative;
}
.review-page__wrap {
	margin-bottom: 60px;
	z-index: 1;
	position: relative;
}
.review-page__wrap > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.review-page__wrap > div > div {
	margin-bottom: 15px;
}
.review-page__logo div {
	border-radius: 15px;
	border: 1px solid var(--review-progress-bar);
	margin-top: 13px;
	margin-right: 25px;
	width: 240px;
	height: 140px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-size: cover;
}
.review-page__logo div img {
	max-width: 200px;
	height: auto;
}
.review-page__rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mobile-app .review-page__rating {
	margin: 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.mobile-app .review-page__rating div {
	margin-bottom: 30px;
}
.mobile-app .review-page__rating div:after {
	content: none;
}
.review-page__rating div {
	position: relative;
}
.review-page__rating div:after {
	position: absolute;
	height: 130px;
	width: 130px;
	left: 0;
	top: 0;
	content: attr(data-pct) '%';
	line-height: 132px;
	text-align: center;
	font-weight: 600;
	font-size: 26px;
	text-shadow: 0 0 15px var(--review-progress-bar);
}
.review-page__rating p {
	font-weight: 700;
	font-size: 16px;
	line-height: 130.19%;
	text-align: center;
	margin-top: -10px;
}
.review-page__rating svg {
	height: 130px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	width: 130px;
}
.review-page__rating .progress-bar__background {
	fill: none;
	stroke: rgba(255, 255, 255, 0.15);
	stroke-width: 1;
}
.review-page__rating .progress-bar__progress {
	fill: none;
	stroke: var(--review-progress-bar);
	stroke-dasharray: 80 80;
	stroke-dashoffset: 80;
	stroke-linecap: round;
	stroke-width: 1;
	-webkit-transition: stroke-dashoffset 1s ease-in-out;
	transition: stroke-dashoffset 1s ease-in-out;
	-webkit-filter: drop-shadow(0 0 1px var(--review-progress-bar));
	filter: drop-shadow(0 0 1px var(--review-progress-bar));
}
body .review-page__overall-rating:after {
	height: 180px;
	width: 185px;
	content: attr(data-pct) '% OVERALL';
	line-height: 34px;
	font-size: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 7px;
}
body .review-page__overall-rating svg {
	height: 200px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	width: 200px;
}
body .review-page__overall-rating .progress-bar__progress {
	stroke-dasharray: 90 90;
	stroke-dashoffset: 90;
}
.review-page__link-bonus {
	padding: 10px 10px 9px;
	min-width: 220px;
	text-align: center;
	margin-right: 25px;
	display: block;
}
.review-page__link-bonus.link-button {
	min-width: 242px;
}
.mobile-app .review-page__link-bonus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mobile-app .review-page__link-bonus svg {
	border-radius: 5px;
	margin-right: 10px;
	width: 21px;
	height: 21px;
}
.mobile-app .review-page__link-bonus svg path {
	fill: var(--review-text);
}
.review-page__bonus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--review-progress-bar);
	padding: 10px;
	border-radius: var(--border-radius);
	margin-right: 20px;
}
.review-page__bonus p {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	margin: 0;
}
.review-page__mobile {
	padding: 6px 10px;
	border: 1px solid var(--review-progress-bar);
	border-radius: var(--border-radius);
}
.review-page__mobile p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	line-height: 19px;
	margin: 0;
}
.review-page__mobile p svg {
	border-radius: 5px;
	margin-left: 10px;
	width: 27px;
	height: 27px;
}
.review-page__mobile p svg path {
	fill: var(--review-text);
}
.pc-cards {
	margin-top: -140px;
	margin-bottom: 35px;
	position: relative;
	z-index: 1;
}
.pc-cards > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.pc-cards > div > div {
	background-color: #fff;
	border: 1px solid var(--main-accent-color);
	border-radius: var(--border-radius);
	padding: 25px;
	max-width: 218px;
	width: 218px;
	margin-bottom: 10px;
}
.pc-cards > div > div span {
	font-weight: 600;
	font-size: 19px;
	line-height: 142.69%;
	text-align: center;
	display: block;
}
.pc-cards > div > div img {
	margin: auto auto 10px;
	display: block;
}
.pc-cards > div > div ul {
	list-style-type: none;
	margin: 25px 0;
	padding: 0;
}
.pc-cards > div > div ul li {
	font-weight: 500;
	font-size: 13px;
	line-height: 142.69%;
	padding-left: 25px;
	padding-bottom: 10px;
	background-repeat: no-repeat;
	background-position: 0 2px;
}
.pc-cards > div > div ul li:last-child {
	padding-bottom: 0;
}
.pc-cards > div > div ul.cons li {
	padding-left: 22px;
}
.mobile-app .rating__star {
	width: 151px;
	height: 24px;
	position: relative;
}
.mobile-app .rating__star .empty {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-big-star-1.svg);
	background-size: 30px;
}
.mobile-app .rating__star .full {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-big-star-1.svg);
	position: absolute;
	background-size: 30px;
}
.mobile-page {
	color: var(--review-text);
	display: flow-root;
	margin-bottom: 35px;
	background-size: cover;
	position: relative;
}
.mobile-page h1 {
	font-style: normal;
	font-weight: 300;
	font-size: 42px;
	line-height: 50px;
	color: #fff;
}
.mobile-page__wrap {
	z-index: 1;
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 40% 60%;
	grid-template-columns: 40% 60%;
	-ms-grid-rows: auto 1fr auto;
	grid-template-rows: auto 1fr auto;
	max-width: 800px;
	margin: 40px auto;
}
.mobile-page__title {
	-ms-grid-row: 1;
	grid-row: 1;
	-ms-grid-column: 2;
	grid-column: 2;
}
.mobile-page__title h1 {
	margin-top: 10px;
	margin-bottom: 0;
	font-weight: 300;
}
.mobile-page__buttons {
	-ms-grid-row: 3;
	grid-row: 3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-column: 1/3;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}
.mobile-page__rating-number {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	padding-left: 20px;
}
.mobile-page__lastupd {
	width: 100%;
}
.mobile-page__logo {
	-ms-grid-column: 1;
	grid-column: 1;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	grid-row: 1/3;
}
.mobile-page__logo div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 100%;
}
.mobile-page__logo div img {
	max-width: 200px;
	height: auto;
}
.mobile-page__rating {
	-ms-grid-column: 2;
	grid-column: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.mobile-page__rating p {
	font-weight: 700;
	font-size: 16px;
	line-height: 130.19%;
}
.mobile-page__mobile {
	padding: 6px 10px;
	border: 1px solid var(--review-progress-bar);
	border-radius: var(--border-radius);
}
.mobile-page__mobile p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	line-height: 19px;
	margin: 0;
}
.mobile-page__mobile p svg {
	border-radius: 5px;
	margin-left: 10px;
	width: 27px;
	height: 27px;
}
.mobile-page__mobile p svg path {
	fill: var(--review-text);
}
.posts-archive__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.posts-archive__wrap .post {
	margin: 0 25px 30px;
	min-width: 343px;
}
.error-404 > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.error-404__error-number {
	color: var(--main-accent-color);
	font-weight: 100;
	font-size: 196px;
	border-right: 3px solid #ece1e1;
	margin: 50px 0;
	padding: 0 20px;
}
.error-404__text {
	font-size: 21px;
	font-weight: 600;
	padding: 0 20px;
}
.error-404__text span {
	font-size: 74px;
	text-transform: uppercase;
	line-height: 80px;
}
.howto2 {
	background-color: var(--bg-body);
	border-radius: var(--border-radius);
	padding: 20px;
	margin: 35px 50px;
	border: 5px solid #fff;
}
.howto2__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px;
	position: relative;
}
.howto__title {
	margin-bottom: 0;
	margin-top: 10px;
	font-weight: 600;
	font-size: 1.7rem;
	position: relative;
	text-align: center;
}
.howto__title::after {
	content: none;
}
.howto__description {
	padding: 0 0 20px;
	text-align: center;
}
.howto__block {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 5em;
	margin-bottom: 40px;
}
.step {
	padding: 16px;
	border-radius: 24px;
	background: #190311;
}
.step .with-image h3,
.step .with-image p {
	text-align: center;
}
.step__image {
	margin: 16px 0;
}
.step__image img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	overflow: hidden;
}
.step__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	margin-top: 0;
	text-align: left;
}
.step2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-left: 100px;
	position: relative;
	border-bottom: 1px solid #ece7e7;
	margin-bottom: 10px;
	width: 100%;
}
.step2::before {
	content: '';
	position: absolute;
	width: 2px;
	height: 120%;
	background-color: #ece7e7;
	left: -56px;
	top: 0;
}
.step2:last-child::before {
	background-color: var(--bg-body);
	height: 50%;
}
.step2__body span {
	color: #fff;
	background-image: linear-gradient(180deg, #2f0809 0%, #531a95 100%);
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	left: -80px;
	top: 0;
	font-size: 2rem;
	font-weight: 700;
	outline: #fff double 2px;
	outline-offset: -5px;
}
.step2__body.with-image {
	max-width: 45%;
	min-width: 45%;
}
.step2__image {
	margin-left: 25px;
	min-width: 50%;
	max-width: 65%;
}
.step2__image img {
	max-width: 100%;
	height: auto;
}
.step2__title {
	color: var(--main-accent-color);
	margin: 0;
	font-weight: 600;
	font-size: 1.3rem;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-line-pack: center;
	align-content: center;
}
.review-table__wrap {
	margin: 20px 0;
}
.review-table__wrap ol {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	margin: 0;
}
.review-table__wrap ol li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--main-accent-color);
	border-top: none;
}
.review-table__wrap ol li:nth-child(1) {
	border: 2px solid var(--site_info_b_color);
}
.review-table__wrap ol li img {
	max-width: 60px;
	margin: 0 10px;
	border-radius: var(--border-radius);
}
.review-table__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: var(--main-accent-color);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 8px 10px;
}
.review-table__header div:nth-child(1) {
	width: 40px;
}
.review-table__header div:nth-child(2) {
	width: 205px;
}
.review-table__header div:nth-child(3) {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.review-table__header div:nth-child(4) {
	width: 111px;
}
.review-table__header div:nth-child(5) {
	width: 170px;
}
.review-table__bookmaker {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 214px;
}
.review-table__b-link {
	padding: 8px 0;
	margin-left: 20px;
	white-space: nowrap;
	width: 150px;
	display: block;
	text-align: center;
}
.review-table__name {
	padding: 0 10px;
	width: 120px;
}
.review-table__bonus {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-weight: 600;
	font-size: 18px;
	margin: 0;
}
.review-table__rating p {
	width: 111px;
	height: 20px;
	position: relative;
}
.review-table__rating span {
	background-image: url(/assets/images/icon-big-star-1.png);
	display: block;
	width: 100%;
	height: 20px;
	background-repeat: repeat-x;
}
.review-table__rating span.full {
	background-image: url(/assets/images/icon-big-star-2.png);
	position: absolute;
	top: 0;
	background-size: 22px;
}
.comments-area {
	margin: 35px 0;
}
.comments-area .comment-respond .comment-reply-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 5px;
	-moz-column-gap: 5px;
	column-gap: 5px;
}
.comments-area .comment-respond .comment-reply-title a {
	font-size: 14px;
	margin-top: 15px;
	float: right;
}
.comments-area .comment-respond p {
	margin: 0;
}
.comments-area .comment-respond .logged-in-as {
	margin-bottom: 5px;
}
.comments-area .comment-respond form {
	display: flow-root;
}
.comments-area .comment-respond .comment-form-comment {
	width: 75%;
	float: left;
}
.comments-area .comment-respond .comment-form-comment textarea {
	width: 99%;
	border: 1px solid var(--main-accent-color);
	border-radius: var(--border-radius);
	outline: 0;
	padding: 20px;
}
.comments-area .comment-respond .comment-form-author,
.comments-area .comment-respond .comment-form-email {
	float: right;
	width: 20%;
	margin-bottom: 8px;
}
.comments-area .comment-respond .comment-form-author input,
.comments-area .comment-respond .comment-form-email input {
	border: 1px solid var(--main-accent-color);
	border-radius: var(--border-radius);
	padding: 10px;
	outline: 0;
	width: 91%;
}
.comments-area .comment-respond .form-submit {
	float: right;
	width: 20%;
}
.comments-area .comment-respond .form-submit input {
	width: 100%;
	text-align: center;
	padding: 8px 5px;
}
.comments-area li.comment {
	border-bottom: 1px solid #e0e3e0;
	padding-bottom: 20px;
	margin: 35px 0;
}
.comments-area li.comment li {
	border-bottom: none;
}
.comments-area .comment {
	list-style-type: none;
	padding: 10px;
	margin: 50px 0 0;
	border-radius: var(--border-radius);
	background: #ffffff1a;
	border: 1px solid #ffffff80 !important;
}
.comments-area .comment > article ~ .comment {
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 10px;
}
.comments-area .comment__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 5px;
}
.comments-area .comment__body h3 {
	margin: 0;
}
.comments-area .comment__author {
	font-weight: 600;
	font-size: 1.1rem;
}
.comments-area .comment__author-answer {
	font-size: 1rem;
	opacity: 0.7;
}
.comments-area .comment__author p {
	margin: 0;
}
.comments-area .comment__meta {
	color: #c4c4c4;
}
.comments-area .comment__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.comments-area .comment__text .com-text {
	max-width: 85%;
}
.comments-area .comment__text .com-rating {
	width: 110px;
	height: 19px;
	position: relative;
	margin-top: 1rem;
	margin-left: 1rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.comments-area .comment__text .com-rating .empty {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-big-star-1.png);
}
.comments-area .comment__text .com-rating .full {
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(/assets/images/icon-big-star-2.png);
	position: absolute;
	background-size: 22px;
	top: 0;
}
.comments-area .comment.parent > div {
	margin-bottom: 10px;
}
.comments-area .comment .children {
	border-left: 1px solid var(--main-accent-color);
}
.rating-container label {
	background-image: url(/assets/images/icon-big-star-2.png);
	background-repeat: no-repeat;
	background-position: 100% 0;
	width: 23px;
	height: 23px;
	display: inline-block;
	color: #acacac;
}
.rating-container label:hover {
	background-image: url(/assets/images/icon-big-star-2.png);
	background-size: 23px;
	cursor: pointer;
}
.rating-container input {
	display: none;
}
.rating-container input:checked ~ label {
	background-image: url(/assets/images/icon-big-star-1.png);
}
.captcha-1 {
	float: right;
}
.sliderFull {
	position: relative;
	height: 400px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	overflow: hidden;
	background-size: cover;
}
.sliderFull__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	left: 0;
	-webkit-transition: left 0.3s;
	transition: left 0.3s;
	height: 100%;
}
.sliderFull__arrow {
	position: absolute;
	font-size: 3rem;
	font-weight: 600;
	bottom: 0;
	cursor: pointer;
	padding: 0 20px;
}
.sliderFull__arrow.next {
	left: 100px;
}
.sliderFull__arrow.prev {
	left: 0;
	right: unset;
}
.sliderFull__navigation {
	position: relative;
	height: 65px !important;
	width: 100%;
}
.sliderFull__count {
	color: var(--h_navigation_color);
	font-size: 1.5rem;
	font-style: italic;
	position: absolute;
	bottom: 13px;
	left: 52px;
	margin: 0;
}
.sl-item {
	width: 1526px;
	background-color: var(--h_background_color);
	color: var(--h_navigation_color);
}
.sl-item > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	background-repeat: no-repeat;
	background-position: 100%;
	background-size: contain;
}
.sl-item > div > div {
	max-width: 55%;
	padding: 25px;
	margin-bottom: 40px;
	position: relative;
	z-index: 0;
}
.sl-item > div > div:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	top: 0;
	left: 0;
	z-index: -1;
}
.sl-item__title {
	margin: 0 0 20px;
	font-size: 2rem;
	text-transform: capitalize;
}
.sl-item__description {
	font-size: 1.2rem;
}
.sl-item__link {
	padding: 7px 40px;
	text-transform: capitalize;
	font-size: 1.2rem;
	display: inline-block;
}
.bk-point {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.bk-point > div {
	width: 39%;
	border-width: 1px;
	border-style: solid;
	border-radius: var(--border-radius);
	padding: 40px 50px;
	position: relative;
	margin: 30px 0;
}
.bk-point > div ul {
	margin: 0;
	padding: 0 0 0 16px;
}
.bk-point > div ul li {
	line-height: 35px;
}
.bk-point > div::before {
	content: url(/assets/images/hand-like.png);
	position: absolute;
	width: 65px;
	min-width: 65px;
	height: 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 30px;
	top: -25px;
	left: -25px;
}
.bk-point__pros {
	border-color: var(--pros_colors);
	background-color: #ecf4e7;
}
.bk-point__pros::before {
	background-color: var(--pros_colors);
}
.bk-point__cons {
	border-color: var(--cons_colors);
	background-color: #f6e9e9;
}
.bk-point__cons::before {
	background-color: var(--cons_colors);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.payment-methods {
	border: 1px solid var(--btn-back-color);
	border-radius: var(--border-radius);
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}
.payment-methods__title {
	background-color: var(--btn-back-color);
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	margin: -3px -1px;
	padding: 13px 35px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--btn-back-text-color);
}
.payment-methods__list {
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px 0 20px;
}
.payment-methods__list li {
	margin: 5px 30px;
}
.video {
	max-width: 650px;
}
.video.align-center {
	margin: 0 auto;
}
.video.align-right {
	margin-left: auto;
}
.video__wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-color: #000;
	margin: 40px 0;
}
.video__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: 0 0;
	border: none;
}
.video__play-shape {
	fill: #212121;
	fill-opacity: 0.8;
}
.video__play-icon {
	fill: #fff;
}
.video__play:focus {
	outline: 0;
}
.video__play:focus .video__play-shape,
.video__play:hover .video__play-shape {
	fill: red;
	fill-opacity: 1;
}
.video__play:hover {
	cursor: pointer;
}
.video__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.num-blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.num-blocks__item {
	width: 20%;
	border: 1px solid var(--main-accent-color);
	padding: 20px;
	position: relative;
	margin: 20px 0;
}
.num-blocks__count {
	background-color: var(--main-accent-color);
	color: #fff;
	width: 30px;
	height: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.2rem;
}
.num-blocks__img img {
	margin: auto;
	display: block;
	max-width: 100%;
	height: auto;
}
.deposite-block {
	position: relative;
	margin-top: 40px;
}
.deposite-block img {
	max-width: 380px;
	width: 100%;
	border-radius: 20px;
}
.deposite-block__header {
	color: #ffe352;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 10px;
	line-height: 1;
}
.deposite-block__amount {
	font-size: 50px;
	color: #24cc5f;
	font-weight: 700;
	text-shadow: 1px 0 1px #ffdf39, 0 1px 1px #ffdf39, -1px 0 1px #ffdf39,
		0 -1px 1px #ffdf39;
	text-align: center;
}
.deposite-block__wrap {
	position: relative;
	padding: 15px 0;
	z-index: 2;
	border: 2px solid #1b1912;
	border-radius: 25px;
	background-color: #2f0809;
	background-size: cover;
	min-width: 300px;
	-webkit-box-shadow: 1px 0 1px #473e12, 0 1px 1px #39ffa4, -1px 0 1px #473e12,
		0 -1px 1px #ffdf39;
	box-shadow: 1px 0 1px #473e12, 0 1px 1px #39ffa4, -1px 0 1px #473e12,
		0 -1px 1px #ffdf39;
}
.deposite-block__wrap:after {
	position: absolute;
	width: 83px;
	height: 101px;
	background-size: contain;
	top: 14px;
	left: -17px;
	background-repeat: no-repeat;
}
.deposite-block__arrow-img {
	-webkit-animation: 2s steps(2) infinite stopsignal;
	animation: 2s steps(2) infinite stopsignal;
}
.deposite-block__arrow {
	position: relative;
	height: 50px;
}
.deposite-block__arrow img:nth-child(2) {
	width: 40px;
	position: absolute;
	top: 0;
	right: calc(50% - 20px);
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.deposite-block__arrow img:nth-child(1) {
	width: 88px;
	position: absolute;
	top: 0;
	right: calc(50% - 44px);
}
.deposite-block__text {
	line-height: 1;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 15px;
}
.deposite-block__additional-btn {
	background: linear-gradient(263.7deg, #00b7ff 0, #8d53e9 100%);
	margin-block: 16px;
}
@-webkit-keyframes stopsignal {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes stopsignal {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.countdown {
	text-align: center;
	margin-top: 15px;
	color: #ffe352;
	font-weight: 700;
}
.fast-links-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 16px;
	margin-top: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fast-links-block button {
	padding: 0 0 0 1rem;
}
.fast-links-block__item {
	-webkit-box-shadow: -5px 4px 10px rgba(0, 0, 0, 0.09);
	box-shadow: -5px 4px 10px rgba(0, 0, 0, 0.09);
	background: var(--fs_background);
	height: 75px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	border: none;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	margin: 10px 5px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 280px;
	text-align: left;
	cursor: pointer;
	padding-left: 20px;
}
.fast-links-block__item.active {
	background-color: var(--fs_background_hover);
	color: #fff;
	padding: 10px 25px;
}
.fast-links-block__item.active span {
	color: #fff;
}
.fast-links-block__item span {
	color: #fff;
	font-size: 10px;
	text-align: left;
	margin: 0;
}
.fast-links-block__item strong {
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	display: block;
}
.fast-links-block__item img {
	width: auto;
	height: 40px;
	margin-left: 10px;
	margin-right: 10px;
}
.fast-links-block__item a {
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 25px;
}
.fast-links-block__item:hover {
	background: var(--fs_background_hover);
}
.fast-links-block__item:hover a,
.fast-links-block__item:hover span {
	color: #fff;
}
.fast-links-block a {
	text-decoration: none;
}
.icon-arrow {
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='9' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_305)'%3E%3Cline x1='7.33334' y1='1.16667' x2='7.33334' y2='7.83333' stroke='white' stroke-width='1.33333' stroke-linecap='round'/%3E%3Cline x1='7.33333' y1='7.83329' x2='0.666666' y2='7.83329' stroke='white' stroke-width='1.33333' stroke-linecap='round'/%3E%3Cpath d='M7.19527 8.63803C7.45562 8.89838 7.87773 8.89838 8.13808 8.63803C8.39843 8.37768 8.39843 7.95557 8.13808 7.69522L7.19527 8.63803ZM1.13808 0.695197C0.877728 0.434847 0.455618 0.434846 0.195268 0.695195C-0.065082 0.955544 -0.0650825 1.37765 0.195267 1.638L1.13808 0.695197ZM8.13808 7.69522L1.13808 0.695197L0.195267 1.638L7.19527 8.63803L8.13808 7.69522Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_305'%3E%3Crect width='8' height='8' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	width: 1rem;
	height: 1rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.5rem;
}
.icon-home {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23fff' d='M23.503 11.803 12.6.263a.844.844 0 0 0-.275-.195.805.805 0 0 0-.922.195L.498 11.803A1.853 1.853 0 0 0 0 13.073c0 .99.76 1.795 1.694 1.795h1.15v8.235c0 .496.378.897.846.897h6.616v-6.28h2.965V24h7.04c.468 0 .847-.4.847-.897v-8.235h1.149c.45 0 .881-.188 1.199-.527.66-.701.66-1.837-.003-2.538Z'/%3E%3C/svg%3E");
	width: 20px;
	height: 14px;
	display: block;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.subscribe {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto 1fr 180px;
	grid-template-columns: auto 1fr 180px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.subscribe__wrap {
	padding: 45px 0;
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#8d53e9),
		color-stop(163.71%, #5ad1ff)
	);
	background: linear-gradient(90deg, #8d53e9 0, #5ad1ff 163.71%);
	width: 100%;
	max-width: 100% !important;
}
.subscribe__img img {
	width: 100%;
	height: auto;
}
.subscribe__body .wpcf7-email {
	border-top: unset;
	border-right: unset;
	border-left: unset;
	border-bottom: 1px solid #fff;
	background: 0 0;
	color: #fff;
	width: 100%;
	font-size: 20px;
}
.subscribe__body .wpcf7-email::-webkit-input-placeholder {
	color: #fff;
	opacity: 0.5;
}
.subscribe__body .wpcf7-email::-moz-placeholder {
	color: #fff;
	opacity: 0.5;
}
.subscribe__body .wpcf7-email:-ms-input-placeholder {
	color: #fff;
	opacity: 0.5;
}
.subscribe__body .wpcf7-email::placeholder {
	color: #fff;
	opacity: 0.5;
}
.subscribe__body .wpcf7-email::-ms-input-placeholder {
	color: #fff;
	opacity: 0.5;
}
.subscribe__body .wpcf7-submit {
	padding: 13px 47px;
	background: -webkit-gradient(
			linear,
			left bottom,
			left top,
			from(#fff),
			to(#fff)
		),
		-webkit-gradient(linear, left top, right top, from(#8d53e9), color-stop(163.71%, #5ad1ff));
	background: linear-gradient(0deg, #fff, #fff),
		linear-gradient(90deg, #8d53e9 0, #5ad1ff 163.71%);
	-webkit-box-shadow: 0 12px 24px rgba(255, 255, 255, 0.25);
	box-shadow: 0 12px 24px rgba(255, 255, 255, 0.25);
	border: unset;
	font-weight: 700;
	font-size: 18px;
	border-radius: 10px;
}
.subscribe__body .wpcf7-spinner {
	position: absolute;
	right: 0;
}
.subscribe__body form p {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	grid-gap: 1em;
	justify-items: center;
}
.subscribe__title p.h2 {
	font-weight: 700;
	font-size: 53.6585px;
	margin: 0;
}
.subscribe__title p {
	font-weight: 400;
	font-size: 23.4756px;
	margin: 0;
}
.bonuses-slider-block {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
	text-align: center;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 10px;
}
.bonuses-slider-block__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
	text-align: center;
	color: #fff;
}
.bonuses-slider-block .bonus-slide {
	border-radius: 32px;
	padding: 20px;
	color: #fff;
	width: 360px;
	position: relative;
	max-width: 330px;
	border: none;
}
.bonuses-slider-block .bonus-slide .info-bonus-slide {
	position: relative;
	z-index: 2;
}
.bonuses-slider-block .bonus-slide .info-bonus-slide .title-bonus-slide {
	font-size: 20px;
	font-weight: 300;
	line-height: 24px;
	letter-spacing: 0;
	text-align: left;
}
.bonuses-slider-block .bonus-slide .info-bonus-slide .value-bonus-slide {
	font-size: 44px;
	font-weight: 800;
	line-height: 53px;
	letter-spacing: -0.03em;
	text-align: left;
}
.bonuses-slider-block .bonus-slide .info-bonus-slide .btn-bonus-slide {
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.bonuses-slider-block
	.bonus-slide
	.info-bonus-slide
	.btn-bonus-slide
	.valid-bonus-slide {
	font-size: 10px;
	font-weight: 700;
	line-height: 12px;
	text-align: left;
	opacity: 0.5;
	text-transform: uppercase;
}
.bonuses-slider-block
	.bonus-slide
	.info-bonus-slide
	.btn-bonus-slide
	.btn-flag {
	padding: 2px 10px;
	border-radius: 0 0 12px 12px;
	font-size: 6px;
	line-height: 7px;
	font-weight: 700;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: absolute;
	left: 25px;
	text-transform: uppercase;
}
.bonuses-slider-block .bonus-slide .info-bonus-slide .btn-bonus-slide .btn {
	color: var(--bg-body);
	background-color: var(--text-body-color);
	line-height: 21px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px;
	border-radius: 32px;
	gap: 5px;
	margin-top: 5px;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.bonuses-slider-block
	.bonus-slide
	.info-bonus-slide
	.btn-bonus-slide
	.btn
	.btn-with-caption__title {
	font-weight: 700;
	font-size: 18px;
}
.bonuses-slider-block .bonus-slide .image-bonus-slide img {
	position: absolute;
	right: 0;
	bottom: 0;
}
.bonuses-slider-block .slider .slider__dots {
	position: absolute;
	bottom: 35px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.bonuses-slider-block .slider .slider__dots .slider-dot {
	display: inline-block;
	width: 50px;
	height: 6px;
	margin-right: 6px;
	background: var(--btn-border-color);
	opacity: 0.1;
	border-radius: 5px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.bonuses-slider-block .slider .slider__dots .slider-dot.active,
.bonuses-slider-block .slider .slider__dots .slider-dot:hover {
	background: var(--button-gradient);
	opacity: 1;
}
.bonuses-slider-block .slider .slider__arrow {
	position: absolute;
	bottom: -30px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.bonuses-slider-block .slider .slider__arrow .count {
	display: none;
}
.bonuses-slider-block .slider .slider__arrow .slider-arrow {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17a1 1 0 0 1-.707-.293l-4-4a1 1 0 0 1 0-1.414l4-4a1 1 0 1 1 1.414 1.414L11.414 12l3.293 3.293A1 1 0 0 1 14 17z" style="fill:%23FFFFFF"/></svg>')
		var(--bg-color-blocks);
	position: initial;
	border-radius: 23px;
	width: 46px;
	height: 46px;
	display: inline-block;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.bonuses-slider-block .slider .slider__arrow .slider-arrow:hover {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17a1 1 0 0 1-.707-.293l-4-4a1 1 0 0 1 0-1.414l4-4a1 1 0 1 1 1.414 1.414L11.414 12l3.293 3.293A1 1 0 0 1 14 17z" style="fill:%2317233a"/></svg>')
		var(--btn-border-color);
}
.bonuses-slider-block .slider .slider__arrow .slider-arrow.next {
	margin-left: 10px;
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
.bonuses-slider-block .slider .slider__arrow .slider-arrow.prev {
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1);
}
.bonuses-slider-block .slider::after {
	background: 0 0;
}
.bonuses-slider-block .bonus-cards {
	margin: 20px 0;
}
.bonuses-slider-block .bonus-cards .slider__wrap {
	position: relative;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}
.bonuses-slider-block .bonus-cards .slider__wrap .bonus-slide {
	margin-right: 0;
}
.categories-cards-block {
	margin-top: 30px;
	margin-bottom: 30px;
}
.categories-cards-block__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
}
.categories-cards-block .categories_cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 30px;
	gap: 10px 5px;
}
.categories-cards-block .categories_cards .categories_card {
	border-radius: 44px;
	background: var(--bg-color-blocks);
	overflow: hidden;
}
.categories-cards-block .categories_cards .categories_card .image_card img {
	-webkit-box-shadow: 0 8px 24px 0 rgba(42, 8, 61, 0.7);
	box-shadow: 0 8px 24px 0 rgba(42, 8, 61, 0.7);
	width: 262px;
	height: 262px;
	border-radius: 44px;
}
.categories-cards-block .categories_cards .categories_card .title-card {
	text-align: center;
	margin-bottom: 15px;
	margin-top: 15px;
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	letter-spacing: 0;
}
.categories-cards-block
	.categories_cards
	.categories_card
	.title-card
	.title-card-button-bg {
	border-radius: 32px;
	margin: 10px 16px 0;
	height: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
.categories-cards-block
	.categories_cards
	.categories_card
	.title-card
	.title-card-button {
	text-decoration: none;
	color: #fff;
	background: 0 0;
	border: none;
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	letter-spacing: 0;
	cursor: pointer;
	padding: 15px 20px;
	border-radius: 32px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	-webkit-transition: 1.5s;
	transition: 1.5s;
}
.categories-cards-block
	.categories_cards
	.categories_card
	.categories-card-bottom-border {
	width: 78px;
	height: 4px;
	border-radius: 7.51px 7.51px 0 0;
	margin-left: auto;
	margin-right: auto;
}
.categories-cards-block
	.categories_cards
	.categories_card:hover
	.title-card-button-bg {
	height: 51px;
}
.categories-cards-block
	.categories_cards
	.categories_card:hover
	.title-card-button-bg
	.title-card-button {
	opacity: 1;
}
.rated-games-cards-block {
	text-align: center;
}
.rated-games-cards-block__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
	color: #fff;
	margin-bottom: 20px;
}
.rated-games-cards-block .rated_games_cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	padding-bottom: 15px;
}
.rated-games-cards-block .rated_games_cards .game_card {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 280px;
	flex: 0 0 280px;
	border-radius: 32px;
	background: var(--bg-color-blocks);
	overflow: hidden;
}
.rated-games-cards-block .rated_games_cards .game_card .image_card img {
	-webkit-box-shadow: 0 8px 24px 0 rgba(42, 8, 61, 0.7);
	box-shadow: 0 8px 24px 0 rgba(42, 8, 61, 0.7);
	width: 285px;
	height: 180px;
}
.rated-games-cards-block .rated_games_cards .game_card .game-name {
	font-size: 18px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: -0.06em;
	text-align: left;
	padding: 30px 20px 10px;
	-webkit-box-shadow: inset -25px -25px 13px 14px var(--bg-color-blocks);
	box-shadow: inset -25px -25px 13px 14px var(--bg-color-blocks);
	width: 100%;
	margin-top: -42px;
	position: relative;
}
.rated-games-cards-block
	.rated_games_cards
	.game_card
	.game-button
	.play-game-button {
	padding: 12px;
	width: -webkit-fill-available;
	border-radius: 32px;
	background: var(--button-gradient);
	color: var(--button-gradient-text);
	border: none;
	margin: 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
	letter-spacing: 0;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}
.rated-games-cards-block .load-more-button {
	cursor: pointer;
	width: 288px;
	padding: 12px 16px;
	border-radius: 32px;
	background: var(--bg-color-blocks);
	color: #fff;
	border: none;
	margin: 10px auto;
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
	letter-spacing: 0;
}
.bet-table__head {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
}
.bet-table__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	padding-bottom: 15px;
}
.bet-table__cards .bet-table_card {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 183px;
	border-radius: 32px;
	overflow: hidden;
	background-color: var(--bg-color-blocks);
	border: 2px solid var(--bg-color-blocks);
}
.bet-table__cards .bet-table_card .image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.bet-table__cards .bet-table_card.gold {
	border: 2px solid #f2a313;
}
.bet-table__cards .bet-table_card.gold .profit {
	color: #000;
	background: linear-gradient(
		80.18deg,
		#d47f0a -2.52%,
		#ffe161 20.76%,
		#f2a313 38.63%,
		#fbce5a 55.42%,
		#f2a313 89%,
		#ffeba6 105.79%
	);
}
.bet-table__cards .bet-table_card.silver {
	border: 2px solid #bababa;
}
.bet-table__cards .bet-table_card.silver .profit {
	color: #000;
	background: linear-gradient(
		80.18deg,
		#c2c2c2 -2.52%,
		#f3f3f3 8.85%,
		#c9c9c9 20.22%,
		#f7f9fd 29.43%,
		#ccd1d8 41.88%,
		#ecf2fb 52.72%,
		#ced1d6 63.55%,
		#fbfbfb 74.92%,
		#d4d8dd 85.75%,
		#f5f5f6 96.58%,
		#fff 105.79%
	);
}
.bet-table__cards .bet-table_card img {
	width: 100%;
	height: 120px;
	border-radius: 32px;
}
.bet-table__cards .bet-table_card .player {
	margin: 8px 7px;
}
.bet-table__cards .bet-table_card .profit {
	padding: 10px;
	border-radius: 32px;
	background: rgba(252, 250, 244, 0.1019607843);
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	margin: 8px 15px;
}
.bet-table__cards .bet-table_card .profit.green {
	background: rgba(32, 230, 123, 0.1019607843);
	color: #20e67b;
}
.bet-table__game {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px;
}
.bet-table__game .button-game {
	background: 0 0;
	border: none;
	background-color: var(--button-gradient-text);
	background-image: var(--button-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	text-align: left;
	cursor: pointer;
}
.bet-table__game .button-game span {
	color: #ffae00;
}
.bet-table__player {
	font-size: 14px;
	font-weight: 400;
	line-height: 13px;
	letter-spacing: -0.06em;
	color: #fff;
}
.bet-table__size img {
	vertical-align: middle;
}
.bet-table__profit {
	padding: 5px 10px;
	border-radius: 32px;
	background: rgba(252, 250, 244, 0.1019607843);
}
.bet-table__profit.green {
	background: rgba(32, 230, 123, 0.1019607843);
	color: #20e67b;
}
.bet-table .palyer-anonim {
	opacity: 0.5;
}
.bet-table .palyer-anonim::before {
	content: '_';
	color: transparent;
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 3px;
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" version="1.1"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23ffffff"><path d="M17.5,12 C19.9852814,12 22,14.0147186 22,16.5 C22,18.9852814 19.9852814,21 17.5,21 C15.3591076,21 13.5674006,19.5049595 13.1119514,17.5019509 L10.8880486,17.5019509 C10.4325994,19.5049595 8.64089238,21 6.5,21 C4.01471863,21 2,18.9852814 2,16.5 C2,14.0147186 4.01471863,12 6.5,12 C8.81637876,12 10.7239814,13.7501788 10.9725684,16.000297 L13.0274316,16.000297 C13.2760186,13.7501788 15.1836212,12 17.5,12 Z M6.5,13.5 C4.84314575,13.5 3.5,14.8431458 3.5,16.5 C3.5,18.1568542 4.84314575,19.5 6.5,19.5 C8.15685425,19.5 9.5,18.1568542 9.5,16.5 C9.5,14.8431458 8.15685425,13.5 6.5,13.5 Z M17.5,13.5 C15.8431458,13.5 14.5,14.8431458 14.5,16.5 C14.5,18.1568542 15.8431458,19.5 17.5,19.5 C19.1568542,19.5 20.5,18.1568542 20.5,16.5 C20.5,14.8431458 19.1568542,13.5 17.5,13.5 Z M12,9.25 C15.3893368,9.25 18.5301001,9.58954198 21.4217795,10.2699371 C21.8249821,10.3648083 22.0749341,10.7685769 21.9800629,11.1717795 C21.8851917,11.5749821 21.4814231,11.8249341 21.0782205,11.7300629 C18.3032332,11.0771247 15.2773298,10.75 12,10.75 C8.72267018,10.75 5.69676679,11.0771247 2.9217795,11.7300629 C2.51857691,11.8249341 2.11480832,11.5749821 2.01993712,11.1717795 C1.92506593,10.7685769 2.17501791,10.3648083 2.5782205,10.2699371 C5.46989988,9.58954198 8.61066315,9.25 12,9.25 Z M15.7002538,3.25 C16.7230952,3.25 17.6556413,3.81693564 18.1297937,4.71158956 L18.2132356,4.88311922 L19.6853587,8.19539615 C19.8535867,8.57390929 19.683117,9.0171306 19.3046038,9.18535866 C18.9576335,9.33956772 18.5562903,9.20917654 18.3622308,8.89482229 L18.3146413,8.80460385 L16.8425183,5.49232692 C16.6601304,5.08195418 16.2735894,4.80422037 15.8336777,4.75711483 L15.7002538,4.75 L8.29974618,4.75 C7.85066809,4.75 7.43988259,4.99042719 7.21817192,5.37329225 L7.15748174,5.49232692 L5.68535866,8.80460385 C5.5171306,9.18311699 5.07390929,9.35358672 4.69539615,9.18535866 C4.34842577,9.03114961 4.17626965,8.64586983 4.27956492,8.29117594 L4.31464134,8.19539615 L5.78676442,4.88311922 C6.20217965,3.94843495 7.09899484,3.32651789 8.10911143,3.25658537 L8.29974618,3.25 L15.7002538,3.25 Z"></path></svg>');
}
.bet-table .wp-block-table {
	border-radius: 32px;
}
.bet-table .wp-block-table thead td {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: -0.06em;
	text-align: left;
	color: #fcfaf4;
	opacity: 0.5;
	text-transform: uppercase;
	padding: 16px;
	background: #5f0c43;
}
.bet-table .wp-block-table tbody tr:nth-child(odd) {
	background: #190311;
}
.bet-table .wp-block-table tbody tr:nth-child(even) {
	background: #ffffff1a;
}
.bet-table .wp-block-table tbody tr td {
	width: 20%;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
}
.bet-table .wp-block-table tbody tr td:first-child {
	padding-right: 10px;
}
.bet-table .wp-block-table tbody tr td:last-child {
	padding-left: 10px;
}
.bet-table .wp-block-table tbody tr td .current {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	opacity: 0.5;
}
.button-whith-image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 24px;
	padding: 32px;
}
.button-whith-image .image-columt {
	text-align: center;
	min-width: 438px;
}
.button-whith-image .text-columt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.button-whith-image__status__active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}
.button-whith-image__status__active .active {
	font-weight: 900;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.button-whith-image__status__active .light {
	width: 3px;
	height: 3px;
	background-color: #25d04b;
	border-radius: 50%;
	padding: 3px;
	margin: 5px;
	-webkit-box-shadow: 0 0 8px 3px #25d04b;
	box-shadow: 0 0 8px 3px #25d04b;
	position: relative;
}
.button-whith-image__status__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}
.button-whith-image__status__date span {
	font-weight: 900;
	color: #fff;
}
.button-whith-image__info {
	border-radius: 23px;
	padding: 16px 24px;
	gap: 19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-shadow: 0 11.1829786301px 22.3659572601px 0
		rgba(0, 0, 0, 0.1019607843);
	box-shadow: 0 11.1829786301px 22.3659572601px 0 rgba(0, 0, 0, 0.1019607843);
	background: var(--bg-color-blocks);
	font-size: 20px;
	font-weight: 800;
	line-height: 26px;
	letter-spacing: -0.02em;
	text-align: center;
	color: #fff;
	position: relative;
	bottom: 5px;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.button-whith-image__image img {
	max-width: 397px;
	height: auto;
}
.button-whith-image__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
}
.button-whith-image__button .button-deposite {
	width: 200px;
	padding: 12px;
	border-radius: 32px;
	background: var(--button-gradient);
	color: var(--button-gradient-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
	letter-spacing: 0;
	text-decoration: none;
	display: block;
	text-align: center;
	cursor: pointer;
	border: none;
}
.game-block {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Inter, sans-serif;
	max-width: 308px !important;
	min-width: 280px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 16px;
	margin-block: 24px 15px;
	margin-inline: auto;
	background-color: #2f0809;
	border-radius: 24px;
	-webkit-box-shadow: 0 -1px 1px 0 #ffba39, -1px 0 1px 0 #473e12,
		0 1px 1px 0 #ff393c, 1px 0 1px 0 #473e12;
	box-shadow: 0 -1px 1px 0 #ffba39, -1px 0 1px 0 #473e12, 0 1px 1px 0 #ff393c,
		1px 0 1px 0 #473e12;
	position: relative;
	z-index: 0;
}
.game-block::before {
	content: '';
	display: block;
	position: absolute;
	top: 40%;
	left: 15px;
	width: 263px;
	height: 148px;
	background-color: var(--blur-color);
	border-radius: 50%;
	-webkit-filter: blur(5px);
	filter: blur(20px);
	z-index: -1;
	rotate: 8deg;
}
.game-block::after {
	content: '';
	display: block;
	width: 60px;
	height: 73px;
	position: absolute;
	top: 143px;
	left: -15px;
	background-image: url(/assets/images/coin.webp);
	background-size: contain;
	background-repeat: no-repeat;
}
.game-block * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.game-block__inner-wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 32px;
}
.game-block__inner-wrapper > * {
	width: 100%;
}
.game-block__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	position: relative;
}
.game-block__header::after {
	content: '';
	display: block;
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #4e2a3f;
}
.game-block__header-list {
	display: -ms-grid;
	display: grid;
	row-gap: 11px;
	list-style-type: none;
	margin-block: 0;
	padding-left: 0;
}
.game-block__header-item {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}
.game-block__header-item > span:nth-child(1) {
	font-weight: 400;
}
.game-block__header-item > span:nth-child(2) {
	font-weight: 700;
}
.game-block__logo {
	max-width: 104px;
	width: 100%;
}
.game-block__logo > img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}
.game-block__body {
	display: -ms-grid;
	display: grid;
	row-gap: 16px;
}
.game-block__offer {
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	position: relative;
	z-index: 1;
}
.game-block__additional-btn {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#7155ed),
		to(#6d50af)
	);
	background: linear-gradient(90deg, #7155ed 0, #6d50af 100%);
}
.demo-predictor-app {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Inter, sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 40px;
	margin-block: 32px;
}
.demo-predictor-app * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.demo-predictor-app__block {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 470px;
	flex: 1 1 470px;
	min-height: 171px;
	row-gap: 12px;
	padding: 16px;
	border-radius: 24px;
	overflow: hidden;
	background-color: #190311;
}
.demo-predictor-app__text {
	width: 100%;
	display: -ms-grid;
	display: grid;
	row-gap: 16px;
	color: #fff;
}
.demo-predictor-app__text--demo {
	max-width: 502px;
	width: 100%;
	padding-block: 9px;
}
.demo-predictor-app__text--app + .demo-predictor-app__app-buttons {
	margin-top: auto;
}
.demo-predictor-app__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	margin-block: 0;
}
.demo-predictor-app__title::after {
	content: unset;
}
.demo-predictor-app__description {
	font-size: 14px;
	font-weight: 400;
	line-height: 17.5px;
}
.demo-predictor-app__btn--gradient {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#7155ed),
		to(#6d50af)
	);
	background: linear-gradient(90deg, #7155ed 0, #6d50af 100%);
}
.demo-predictor-app__btn--default-bg {
	background-color: #232e44;
}
.demo-predictor-app__demo {
	min-height: 218px;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.demo-predictor-app__demo--dark {
	position: relative;
	z-index: 0;
}
.demo-predictor-app__demo--dark::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #190311;
	opacity: 0.5;
	z-index: -1;
}
.demo-predictor-app__demo-buttons {
	width: 100%;
	display: -ms-grid;
	display: grid;
	row-gap: 12px;
}
.demo-predictor-app__predictor {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 27px 32px;
}
.demo-predictor-app__predictor-img {
	width: 124px;
	height: 124px;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/3;
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	grid-row: 1/2;
	-ms-grid-row-align: start;
	align-self: start;
}
.demo-predictor-app__predictor-img > img {
	display: block;
	width: 100%;
	height: auto;
}
.demo-predictor-app__predictor-btn {
	margin-inline: 0;
	width: 100%;
	max-width: 748px;
	-ms-grid-column-span: 2;
	grid-column: span 2;
	margin-top: auto;
}
.demo-predictor-app__app {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	row-gap: 16px;
}
.demo-predictor-app__app-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px;
}
.demo-predictor-app__app-btn {
	min-height: 55px;
	padding: 5px 24px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 260px;
	flex: 1 1 260px;
	margin-inline: 0;
	max-width: none;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 3px;
	-moz-column-gap: 3px;
	column-gap: 3px;
	text-align: left;
}
.demo-predictor-app__app-btn-content {
	display: -ms-grid;
	display: grid;
	row-gap: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.demo-predictor-app__app-btn-title {
	font-size: 15.75px;
	font-weight: 700;
	line-height: 14px;
}
.demo-predictor-app__app-btn-subtitle {
	font-size: 9.84px;
	font-weight: 400;
	line-height: 10px;
}
.demo-predictor-app__app-btn-svg {
	width: 35px;
	height: 42px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.demo-predictor-app__app-btn-svg > svg {
	width: 100%;
	height: 100%;
}
.demo-predictor-app__app-btn-svg > svg * {
	fill: currentColor;
}
.features {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Inter, sans-serif;
}
.features * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.features__main-title {
	display: block;
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
	margin-block: 32px 20px;
}
.features__main-title::after {
	content: unset;
}
.features__main-title--left {
	text-align: left;
}
.features__main-title--center {
	text-align: center;
}
.features__main-title--right {
	text-align: right;
}
.features__cards {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 16px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.features__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 20px;
	padding: 32px 16px;
	border-radius: 24px;
}
.features__title {
	min-height: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 6px;
	-moz-column-gap: 6px;
	column-gap: 6px;
}
.features__title-text {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	margin-block: 0;
}
.features__title-text::after {
	content: unset;
}
.features__title-icon {
	width: 32px;
	height: 32px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.features__title-icon > img {
	display: block;
	width: 100%;
	height: auto;
}
.features__title-icon > svg {
	width: 100%;
	height: 100%;
}
.features__title-icon > svg > * {
	stroke: currentColor;
	fill: transparent;
}
.features__image {
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
}
.features__image > img {
	display: block;
	width: 100%;
	height: auto;
}
.features__description {
	font-size: 14px;
	font-weight: 400;
	line-height: 17.5px;
	text-align: center;
}
.features__button {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#7155ed),
		to(#6d50af)
	);
	background: linear-gradient(90deg, #7155ed 0, #6d50af 100%);
	max-width: none;
}
.cta-block {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Inter, sans-serif;
	margin-block: 24px;
}
.cta-block * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cta-block__inner-wrapper {
	max-width: 400px;
	margin-inline: auto;
}
.cta-block__inner-wrapper--left-img {
	position: relative;
}
.cta-block__inner-wrapper--left-img::after {
	content: '';
	display: block;
	width: 155px;
	height: 345px;
	position: absolute;
	bottom: -30px;
	left: -77px;
	background-image: url(/assets/images/cta-block-img-mob.webp);
	background-size: contain;
	background-repeat: no-repeat;
}
.cta-block__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px 20px;
	padding: 32px 15px 54px;
	border-radius: 32px;
	overflow: hidden;
}
.cta-block__apps {
	min-height: 337px;
}
.cta-block__promocode {
	min-height: 279px;
}
.cta-block__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 274px;
	text-align: center;
	z-index: 1;
}
.cta-block__text--apps,
.cta-block__text--promocode {
	row-gap: 16px;
}
.cta-block__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	margin-block: 0;
}
.cta-block__title::after {
	content: unset;
}
.cta-block__description--apps {
	font-size: 16px;
	font-weight: 400;
	line-height: 17.5px;
}
.cta-block__buttons {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	row-gap: 12px;
}
.cta-block__buttons--apps {
	-webkit-column-gap: 12px;
	-moz-column-gap: 12px;
	column-gap: 12px;
}
.cta-block__buttons--promocode {
	-webkit-column-gap: 16px;
	-moz-column-gap: 16px;
	column-gap: 16px;
}
.cta-block__buttons--promocode .cta-block__promocode-btn,
.cta-block__buttons--promocode .promocode-block {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 260px;
	flex: 1 1 260px;
}
.cta-block__buttons--promocode .cta-block__promocode-btn,
.cta-block__buttons--promocode .promocode-block,
.cta-block__buttons--promocode .promocode-block-input {
	max-width: none;
}
.cta-block__app-btn {
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#7155ed),
		to(#6d50af)
	);
	background: linear-gradient(90deg, #7155ed 0, #6d50af 100%);
	min-height: 55px;
	padding: 5px 24px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 267px;
	flex: 1 1 267px;
	margin-inline: 0;
	max-width: none;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 3px;
	-moz-column-gap: 3px;
	column-gap: 3px;
	text-align: left;
	z-index: 1;
}
.cta-block__app-btn--no-icon {
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.cta-block__app-btn-content {
	display: -ms-grid;
	display: grid;
	row-gap: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.cta-block__app-btn-title {
	font-size: 15.75px;
	font-weight: 700;
	line-height: 14px;
}
.cta-block__app-btn-subtitle {
	font-size: 9.84px;
	font-weight: 400;
	line-height: 10px;
}
.cta-block__app-btn-svg {
	width: 35px;
	height: 42px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.cta-block__app-btn-svg > svg {
	width: 100%;
	height: 100%;
}
.cta-block__app-btn-svg > svg * {
	fill: currentColor;
}
.cta-block .promocode-block {
	padding: 0;
	margin: 0;
}
.cta-block .promocode-block-input {
	min-height: 45px;
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	-webkit-box-shadow: 0 0 20px 13px #000 inset;
	box-shadow: 0 0 20px 13px #000 inset;
	background: linear-gradient(
		93.55deg,
		rgba(253, 198, 61, 0.45) 0,
		rgba(255, 152, 21, 0.45) 97.54%
	);
}
.cta-block__promocode-btn {
	background: linear-gradient(93.55deg, #fdc63d 0, #ff9815 97.54%);
	min-height: 45px;
}
.screenshot-carousel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
	overflow: hidden;
	border-radius: 10px;
	margin-block: 20px;
}
.screenshot-carousel__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	overflow-x: auto;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.screenshot-carousel__item {
	max-width: 310px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 20px;
	scroll-snap-align: start;
	padding: 20px;
	border-radius: 10px;
	background-color: var(--bg-color-blocks);
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.screenshot-carousel__caption {
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
	text-align: center;
}
.screenshot-carousel__caption--top {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}
.screenshot-carousel__caption--bottom {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
.screenshot-carousel__image {
	border-radius: 10px;
	overflow: hidden;
}
.screenshot-carousel__image > img {
	display: block;
	width: 100%;
	height: auto;
}
@media (min-width: 768px) {
	.header {
		padding: 10px 0;
	}
	.header__wrap {
		padding: 0 10px;
		border-radius: 10px;
	}
	.header__logo img {
		max-height: 30px;
		width: auto;
	}
}
@media screen and (min-width: 768px) {
	.list-anchor {
		background: #190311;
		padding: 0 20px;
	}
	.list-anchor__title img {
		display: none;
	}
}
@media (min-width: 769px) {
	.mobile-version {
		display: none;
	}
	.custom-scroll-x {
		overflow-x: visible;
	}
	.rated-games-cards-block .rated_games_cards {
		gap: 10px 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		padding-bottom: 0;
	}
	.rated-games-cards-block .rated_games_cards .game_card {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 285px;
		flex: 0 1 285px;
	}
	.bet-table__cards {
		-ms-flex-pack: distribute;
		justify-content: space-around;
		gap: 10px 5px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-bottom: 0;
	}
	.bet-table__cards .bet-table_card {
		-ms-flex-negative: 1;
		flex-shrink: 1;
	}
	.game-block {
		margin-block: 0;
	}
	.demo-predictor-app__demo-buttons {
		max-width: 280px;
	}
	.demo-predictor-app__predictor-img {
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		grid-row: 1/3;
	}
	.demo-predictor-app__predictor-btn {
		grid-column: auto;
	}
	.cta-block__inner-wrapper {
		max-width: 100%;
	}
	.cta-block__inner-wrapper--left-img::after {
		left: -70px;
		background-image: url(/assets/images/cta-block-img.webp);
		height: 173px;
	}
	.cta-block__block {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 46px;
	}
	.cta-block__apps {
		min-height: 164px;
	}
	.cta-block__promocode {
		min-height: 137px;
	}
	.cta-block__text {
		text-align: left;
	}
	.cta-block__text--apps {
		max-width: 428px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
	}
	.cta-block__text--promocode {
		max-width: 428px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.cta-block__title--promocode {
		padding-bottom: 7px;
	}
	.cta-block__buttons--apps {
		max-width: 580px;
	}
	.cta-block__buttons--promocode {
		max-width: 548px;
	}
}
@media (min-width: 1281px) {
	.features__cards {
		-webkit-column-gap: 70px;
		-moz-column-gap: 70px;
		column-gap: 70px;
	}
	.features__card {
		max-width: 354px;
	}
}
@media (max-width: 1210px) {
	body .container,
	body .page-content {
		padding-right: 10px;
		padding-left: 10px;
	}
}
@media (max-width: 991px) {
	.with-sidebar .sidebar {
		display: none;
	}
}
@media (max-width: 769px) {
	.review-page h1 {
		font-size: 30px;
		text-align: center;
		margin-bottom: 10px;
	}
	.review-page__wrap > div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.review-page__link-bonus.btn-big-text {
		min-width: 265px;
		margin-right: 0;
		font-size: 1.3rem;
	}
	.mobile-app .review-page__link-bonus.btn-big-text svg {
		width: 27px;
		height: 27px;
	}
	.review-page__bonus {
		margin-top: 25px;
		margin-right: 0;
	}
	.review-page__logo {
		margin-bottom: 20px;
	}
	.review-page__logo div {
		margin-right: 0;
	}
	.review-page__rating {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.mobile-app .review-page__rating {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.review-page__overall-rating {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.mobile-page h1 {
		font-size: 30px;
		text-align: center;
		margin-bottom: 10px;
	}
	.mobile-page__wrap > div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.mobile-page__link-bonus.btn-big-text {
		min-width: 265px;
		margin-right: 0;
		font-size: 1.3rem;
	}
	.mobile-app .mobile-page__link-bonus.btn-big-text svg {
		width: 27px;
		height: 27px;
	}
	.mobile-page__bonus {
		margin-top: 25px;
		margin-right: 0;
	}
	.mobile-page__logo div {
		margin-right: 0;
	}
	.mobile-page__rating {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.mobile-app .mobile-page__rating {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.bk-point {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.bk-point > div {
		width: 75%;
		padding: 40px 20px;
	}
	.bk-point > div ul li {
		line-height: 20px;
	}
	.button-whith-image .image-columt {
		min-width: -webkit-fill-available;
		width: 100%;
	}
	.button-whith-image__image img {
		width: 240px;
	}
	.button-whith-image {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px;
		padding: 15px;
	}
}
@media (max-width: 768px) {
	body ol {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.btn-big-text,
	.btn-loadmore,
	.cards__btn-more,
	body .tag-block__btn-more {
		font-size: 12px;
	}
	.content-button__control {
		font-size: 1.1rem;
	}
	.align-left .content-button__control,
	.align-right .content-button__control {
		margin: auto;
	}
	.info-about-site__title > *,
	body .tag-block__title > * {
		max-width: 77%;
	}
	.info-about-site__title::before,
	body .tag-block__title::before {
		top: 50%;
	}
	.header {
		margin: auto;
		position: fixed;
		z-index: 6;
		width: 100%;
	}
	.header__logo img {
		width: 80px;
		height: unset;
	}
	.header__wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.header__navbar,
	.header__second-navbar {
		display: none;
	}
	.header__mobile-navbar {
		display: block;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.header__mobile-navbar > label {
		width: 27px;
	}
	.header__buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		width: 100%;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.header__buttons button {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 165px;
		flex: 1 1 165px;
	}
	.header__buttons > :nth-child(2) {
		background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
	}
	.header__buttons > :nth-child(2):hover {
		opacity: 0.9;
	}
	.list-IL__list {
		width: 100%;
	}
	.list-IL__link span {
		padding-right: 50px;
	}
	.list-IL__link::after {
		right: 5px;
	}
	.medium {
		width: 100%;
	}
	.medium .cards__btn-more {
		margin: 27px auto !important;
	}
	.small {
		width: 100%;
	}
	.small .cards__btn-more {
		margin: 27px auto !important;
	}
	.medium-list ul li,
	.small-list ul li {
		width: 100%;
	}
	.site {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.site__logo-and-rating {
		max-width: 100%;
		width: 100%;
	}
	.site__offer {
		margin: 15px;
		min-width: 310px;
		width: 310px;
	}
	.site__pros-cons {
		margin: 20px 0 0;
	}
	.site__pros-cons ul {
		margin: 5px 15px;
	}
	.site__pm {
		max-width: 310px;
	}
	.site__link {
		font-size: 17px;
	}
	.block-posts__wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	.block-posts__second {
		display: none;
	}
	.post {
		margin-top: 20px;
		max-width: 320px;
	}
	.post__image img {
		max-width: 320px;
	}
	.faq details {
		padding: 25px 50px 25px 30px;
	}
	.faq summary:after {
		right: 20px;
		top: 20px;
		width: 5px;
		font-size: 2.8rem;
	}
	.q_and_a {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.q_and_a details {
		width: 100%;
		min-width: 289px;
	}
	.q_and_a details summary {
		padding: 100px 20px 50px 30px;
		text-align: center;
	}
	.q_and_a details summary svg {
		padding-right: 10px;
		min-width: 60px;
	}
	footer .footer__wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	footer .footer__logo {
		width: 100%;
		height: auto;
		text-align: center;
	}
	footer .footer__col {
		min-width: 170px;
		margin-left: 45px;
	}
	footer .footer__social-link {
		width: 100%;
		max-width: unset;
		text-align: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-top: 15px;
	}
	.breadcrumb {
		display: none;
	}
	.about-page {
		background-image: none !important;
		padding-top: 65px;
	}
	.about-page__wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.about-page__wrap > :nth-child(2) {
		max-width: 100%;
	}
	.about-page__title {
		font-size: 27px;
	}
	.list-anchor ul {
		padding: 0;
	}
	.list-anchor ul li {
		border-radius: 10px;
		padding: 5px 10px;
	}
	.list-anchor ul li a {
		font-size: 12px;
	}
	.promocode-block__title p {
		font-size: 25px;
	}
	.promocode-block input {
		font-size: 38px;
	}
	.promocode-block__header {
		margin-top: 5px;
	}
	.promocode-block__body {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.promocode-block a,
	.promocode-block button {
		font-size: 15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.info-about-site__warp {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.info-about-site__warp > div {
		width: auto;
	}
	.non-recommend .site {
		padding-left: 30px;
	}
	.non-recommend .site__logo-and-rating {
		min-height: 130px;
	}
	.non-recommend .site::before {
		width: 30px;
		font-size: 22px;
	}
	.non-recommend .site__description {
		width: unset;
		padding: 20px;
	}
	.author-page .author__cart {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.author__wrap {
		padding: 30px 25px;
	}
	.author__img-name {
		margin-right: 15px;
	}
	.author__recommended {
		min-width: unset;
		margin-top: 0;
		font-size: 15px;
		padding: 9px 15px;
	}
	.author__date {
		font-size: 14px;
	}
	.author__description .text {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.posts-archive__wrap {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.posts-archive__wrap .post {
		margin: 0 0 30px;
		width: 100%;
		min-width: 280px;
	}
	.error-404 > div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.error-404__error-number {
		border-right: unset;
		border-bottom: 3px solid #ece1e1;
		font-size: 144px;
	}
	.error-404__text {
		text-align: center;
	}
	.error-404__text span {
		font-size: 64px;
	}
	.howto2 {
		margin: 35px 0;
	}
	.step2 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.step2__body.with-image {
		width: 100%;
		min-width: 100%;
	}
	.step2__image {
		margin-left: 0;
		width: 100%;
	}
	.step2__image img {
		max-width: 100%;
		width: 100%;
		height: auto;
	}
	.review-table__header div:nth-child(2) {
		width: 167px;
	}
	.review-table__header div:nth-child(5) {
		width: 160px;
	}
	.review-table__b-link {
		margin-left: 0;
	}
	.review-table__name {
		width: 80px;
	}
	.comments-area .comment-respond .comment-form-author,
	.comments-area .comment-respond .comment-form-email,
	.comments-area .comment-respond .form-submit {
		width: 35%;
	}
	.comments-area .comment-respond .comment-form-comment {
		width: 55%;
	}
	.comments-area .comment__text {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.comments-area .comment__text .com-rating {
		margin-left: 0;
	}
	.comments-area .comment__text .com-text {
		max-width: 100%;
	}
	.sliderFull__arrow {
		font-size: 2rem;
	}
	.sliderFull__count {
		font-size: 1.2rem;
		bottom: 9px;
		left: 57px;
	}
	.sl-item > div {
		background-size: 50%;
	}
	.sl-item > div > div {
		max-width: 70%;
		padding: 0;
	}
	.sl-item__title {
		font-size: 1.5rem;
	}
	.sl-item__description {
		font-size: 0.8rem;
	}
	.fast-links-block button,
	.fast-links-block__item {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	main {
		padding-top: 30px;
	}
	.list-anchor.hide img {
		-webkit-transform: rotateZ(0);
		transform: rotateZ(0);
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}
	.list-anchor.hide ul {
		display: none;
	}
	.mobile-page__wrap {
		margin-bottom: 0;
		margin-top: 80px;
	}
	.mobile-page__title {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
		-ms-grid-row: 1;
		grid-row: 1;
	}
	.mobile-page__buttons {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
		-ms-grid-row: 4;
		grid-row: 4;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.mobile-page__logo {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
		-ms-grid-row: 3;
		grid-row: 3;
	}
	.mobile-page__rating {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
		-ms-grid-row: 2;
		grid-row: 2;
	}
	.mobile-page__rating p {
		text-align: center;
	}
	.subscribe {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
	.subscribe__wrap {
		margin-left: -10px !important;
		margin-right: -10px !important;
		padding-right: 10px !important;
		padding-left: 10px !important;
	}
	.subscribe__img {
		-ms-grid-column: 2;
		grid-column: 2;
		-ms-grid-row: 1;
		grid-row: 1;
	}
	.subscribe__body {
		-ms-grid-row: 2;
		grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
	}
	.subscribe__title {
		-ms-grid-column: 1;
		grid-column: 1;
	}
	.subscribe__title p.h2 {
		font-size: 32px;
	}
	.subscribe__title p {
		font-size: 18px;
	}
}
@media (max-width: 768px) and (max-width: 420px) {
	.header__logo img {
		width: 50px;
	}
}
@media (max-width: 650px) {
	.review-table__wrap ol li {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.review-table__wrap ol li img {
		margin: 0;
	}
	.review-table__header div:nth-child(4),
	.review-table__header div:nth-child(5) {
		display: none;
	}
	.review-table__header div:nth-child(2) {
		width: 45%;
	}
	.review-table__header div:nth-child(1) {
		width: 27px;
	}
	.review-table__bookmaker {
		width: 44%;
	}
	.review-table__bonus {
		max-width: 44%;
	}
	.review-table__rating {
		width: 47%;
		margin-left: 10px;
	}
	.review-table__name {
		width: 140px;
	}
	.review-table__b-link {
		width: 130px;
	}
}
@media (max-width: 600px) {
	.author__date {
		display: block;
	}
	.author__wrap {
		padding: 15px 10px;
	}
	.author__cart {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.author__social {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.author__social > div {
		margin-right: 0;
	}
	.author__rating {
		padding: 10px 15px;
		font-size: 17px;
	}
}
@media (max-width: 594px) {
	.site__offer {
		min-width: 270px;
		width: 270px;
		text-align: center;
	}
	.site__pm {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.site__pm ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.offer__welcome-offer {
		font-size: 25px;
	}
}
@media (max-width: 550px) {
	.comments-area .comment-respond .comment-form-author,
	.comments-area .comment-respond .comment-form-email,
	.comments-area .comment-respond .form-submit {
		width: 65%;
		float: none;
	}
	.comments-area .comment-respond .comment-form-comment {
		width: 89%;
		float: none;
	}
	.comments-area .comment-respond .comment-form-comment textarea {
		width: 97%;
	}
	.comments-area .comments__wrap {
		padding: 15px 20px;
	}
}
@media (max-width: 500px) {
	.slider__arrow .count {
		display: block;
	}
	.next {
		left: 90px;
	}
	.q_and_a details[open] div {
		display: block;
		overflow: scroll;
	}
}
@media (max-width: 450px) {
	.list-anchor {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.list-anchor__title {
		margin-bottom: 7px;
		text-align: center;
		padding-right: 0;
	}
	.list-anchor ul li {
		margin-bottom: 5px;
		padding-right: 10px;
	}
	.review-page__rating {
		max-width: 320px;
	}
	.step2 {
		margin-left: 35px;
	}
	.step2::before {
		left: -26px;
	}
	.step2__body span {
		left: -55px;
	}
	.review-table__bonus {
		max-width: 100%;
		text-align: center;
	}
}
@media (max-width: 425px) {
	.wp-block-image img {
		border-radius: 24px !important;
	}
	.wp-block-table table tbody tr td:last-child {
		padding-left: 20px;
	}
	.wp-block-table table tbody tr td:first-child {
		padding-right: 20px;
		text-align: left;
	}
	.wp-block-table table tbody td {
		font-size: 10px;
		line-height: 12px;
	}
	.howto__block {
		grid-gap: 1em;
		text-align: center;
	}
	.step__title {
		text-align: center;
	}
	.bonuses-slider-block .bonus-slide {
		width: 230px;
		margin-right: 15px;
	}
	.bonuses-slider-block .bonus-slide .info-bonus-slide .title-bonus-slide {
		font-size: 17px;
		line-height: 20px;
	}
	.bonuses-slider-block .bonus-slide .info-bonus-slide .value-bonus-slide {
		font-size: 39px;
		line-height: 46px;
	}
	.bonuses-slider-block .bonus-slide .info-bonus-slide .valid-bonus-slide {
		font-size: 8px;
		line-height: 9px;
	}
	.bonuses-slider-block .bonus-slide .info-bonus-slide .btn-bonus-slide {
		margin-top: -12px;
	}
	.bonuses-slider-block .bonus-slide .info-bonus-slide .btn-bonus-slide .btn {
		padding: 13px;
		gap: 2px;
		margin-top: 0;
	}
	.bonuses-slider-block .bonus-slide .info-bonus-slide .btn-bonus-slide span {
		line-height: normal;
		height: 13px;
	}
	.bonuses-slider-block
		.bonus-slide
		.info-bonus-slide
		.btn-bonus-slide
		.btn-with-caption__title {
		font-size: 14px;
		line-height: 14px;
	}
	.bonuses-slider-block .bonus-slide .image-bonus-slide img {
		width: 160px;
		height: 160px;
	}
	.bonuses-slider-block .slider .slider__dots .slider-dot {
		width: 37px;
	}
	.categories-cards-block .categories_cards .categories_card {
		border-radius: 24px;
	}
	.categories-cards-block .categories_cards .categories_card .image_card img {
		width: 136px;
		height: 136px;
		border-radius: 24px;
	}
	.categories-cards-block .categories_cards .categories_card .title-card {
		margin-bottom: 5px;
		margin-top: 5px;
		font-size: 12px;
		line-height: 15px;
	}
	.categories-cards-block
		.categories_cards
		.categories_card
		.title-card
		.title-card-button-bg {
		border-radius: 32px;
		margin: 8px 8px 0;
	}
	.categories-cards-block
		.categories_cards
		.categories_card
		.title-card
		.title-card-button {
		font-size: 12px;
		line-height: 15px;
		padding: 5px 10px;
	}
	.categories-cards-block
		.categories_cards
		.categories_card:hover
		.title-card-button-bg {
		height: 25px;
	}
	.bet-table__cards .bet-table_card img {
		width: 100%;
		height: 100px;
	}
	.bet-table__game {
		padding: 0;
	}
	.bet-table__game .button-game,
	.bet-table__player {
		font-size: 12px;
		line-height: 12px;
	}
	.bet-table__profit {
		padding: 2px 5px;
	}
	.bet-table .wp-block-table tbody tr td {
		font-size: 12px;
		line-height: 12px;
		padding: 5px;
	}
	.bet-table .wp-block-table .hide-column {
		display: none;
	}
	.button-whith-image__info {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.button-whith-image__button {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (max-width: 420px) {
	.btn-with-caption--sm {
		padding: 3px 8px;
	}
	.btn-with-caption--md {
		max-width: 100%;
	}
}
@media (max-width: 420px) {
	.promocode-block input {
		font-size: 29px;
	}
}
@media (max-width: 376px) {
	.bet-table__cards .bet-table_card .profit {
		font-size: 14px;
	}
}
@media screen and (max-width: 360px) {
	.app-download {
		margin: 10px;
	}
	.app-download__wrapper {
		grid-gap: 2px 8px;
	}
	.app-download__title {
		font-size: 13px;
	}
	.header__buttons .btn-with-caption__title {
		font-size: 12px;
		line-height: 1;
	}
	.header__buttons .btn-with-caption {
		-ms-grid-rows: 20px 14px;
		grid-template-rows: 20px 14px;
	}
	.header__buttons .btn-with-caption img {
		max-height: 30px;
	}
}
@media screen and (max-width: 320px) {
	.app-download {
		margin: 5px;
	}
	.app-download__wrapper {
		-ms-grid-columns: 45px auto 100px;
		grid-template-columns: 45px auto 100px;
	}
	.btn-with-caption--sm {
		padding: 1px 5px;
	}
	.btn-with-caption__title {
		font-size: 12px;
		line-height: 1;
	}
	.btn-with-caption__caption {
		font-size: 8px;
	}
}
@media (min-width: 769px) and (max-width: 991px) {
	.btn-big-text,
	.btn-loadmore,
	.cards__btn-more,
	body .tag-block__btn-more {
		font-size: 12px;
	}
	.list-IL__link::after {
		right: 5px;
	}
	.cards__item {
		height: 155px;
	}
	.site__logo-and-rating {
		max-width: 200px;
		width: 200px;
	}
	.site__offer {
		margin: 15px;
		min-width: 230px;
		width: 230px;
	}
	.site__pm {
		display: none;
	}
	.site__pros-cons {
		margin: 10px 15px;
	}
	.offer__welcome-offer {
		font-size: 23px;
	}
	.block-posts__wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	.block-posts__second {
		display: none;
	}
	.faq {
		margin-top: 20px;
	}
	.faq details {
		padding: 15px 23px;
	}
	.faq summary {
		font-size: 19px;
		margin-right: 0;
	}
	.faq summary::after {
		top: 10px;
		right: 15px;
		font-size: 2rem;
	}
	.q_and_a details {
		height: 250px;
		min-width: 370px;
	}
	.q_and_a details[open] div {
		padding: 30px 30px 20px;
	}
	footer .footer__logo img {
		width: 200px;
		height: auto;
	}
	footer .footer__social-link {
		width: 100%;
		max-width: unset;
		text-align: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-top: 15px;
	}
	.about-page__wrap > :nth-child(2) {
		max-width: 50%;
	}
	.step2__body.with-image {
		width: 50%;
		max-width: 50%;
	}
	.step2__image {
		width: 50%;
	}
	.step2__image img {
		max-width: 100%;
		height: auto;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.header__navbar nav ul {
		padding: 0;
	}
	.header__navbar nav li {
		margin: 0 2px;
	}
	.cards__item {
		height: 155px;
	}
	.block-posts__second {
		max-width: 37%;
	}
	.block-posts__second .post__image img {
		clip: rect(0 170px 195px 0);
	}
	.block-posts__second .post__content {
		margin-left: 170px;
	}
	.block-posts__second .post__description {
		margin: 10px 10px 17px;
	}
	.block-posts__second .post__title {
		margin: 10px;
	}
	.post {
		max-width: 30%;
		overflow: hidden;
	}
	.post__title {
		margin: 15px 20px 10px;
	}
	.post__description {
		margin: 10px 20px 30px;
	}
	.faq details {
		padding: 20px 32px;
	}
	.faq summary {
		margin-right: 0;
	}
	.faq summary::after {
		top: 14px;
		right: 23px;
	}
}
@media (min-width: 769px) and (max-width: 992px) {
	.header__navbar nav ul {
		padding: 0;
	}
	.header__navbar nav li {
		margin: 0 1px;
	}
	.header__buttons :nth-child(2) {
		margin-left: 0;
	}
	.review-page__rating {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.review-page__logo div {
		margin-right: 10px;
	}
	.mobile-page__rating {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.mobile-page__logo div {
		margin-right: 10px;
	}
}
@media (max-width: 991px) and (min-width: 769px) {
	.medium-list ul li,
	.small-list ul li {
		width: 45%;
	}
	.comments-area .comment-respond .comment-form-author,
	.comments-area .comment-respond .comment-form-email,
	.comments-area .comment-respond .form-submit {
		width: 30%;
	}
	.comments-area .comment-respond .comment-form-comment {
		width: 65%;
	}
	.bk-point > div {
		padding: 30px;
	}
	.bk-point > div ul li {
		line-height: 30px;
	}
}
@media (max-width: 1199px) and (min-width: 991px) {
	.with-sidebar .site__offer {
		margin: auto 5px;
	}
	.with-sidebar .site__pros-cons {
		margin: 15px 5px;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	.mobile-page__logo div,
	.review-page__logo div {
		margin-right: 10px;
	}
}
@media (min-width: 1049px) and (max-width: 1210px) {
	.posts-archive__wrap .post {
		margin: 0 5px 30px;
		min-width: 320px;
	}
}
@media (min-width: 950px) and (max-width: 1050px) {
	.posts-archive__wrap .post {
		margin: 0 55px 30px;
		max-width: 343px;
	}
}
@media (min-width: 769px) and (max-width: 949px) {
	.posts-archive__wrap .post {
		margin: 0 17px 30px;
		max-width: 30%;
	}
}
@media (max-width: 1200px) and (min-width: 992px) {
	.bk-point > div {
		padding: 40px;
	}
}
@media (hover: hover) {
	.cta-block__app-btn:hover,
	.cta-block__promocode-btn:hover,
	.demo-predictor-app__btn:hover,
	.deposite-block__additional-btn:hover,
	.features__button:hover,
	.game-block__additional-btn:hover {
		opacity: 0.8;
		color: #fff;
		cursor: pointer;
	}
	.cta-block .promocode-block-input:hover {
		-webkit-box-shadow: inset 0 0 30px 15px #09101e;
		box-shadow: inset 0 0 30px 15px #09101e;
	}
	.screenshot-carousel__track--scrollable:hover {
		cursor: -webkit-grab;
		cursor: grab;
	}
	.screenshot-carousel__track--scrollable:active {
		cursor: -webkit-grabbing;
		cursor: grabbing;
	}
}
