/**
	Media Block
 */
.media_block {
	display: grid;
	column-gap: 25px;
	grid-template-columns: auto 50%;
	grid-template-areas:
		'title image'
		'content image';
	margin-bottom: var(--theme-block-margin-bottom);
	background: linear-gradient(180deg, #001a33 0%, #004d99 100%);
	padding: 21px 16px 16px;
	border-radius: var(--theme-rounded-images);
	position: relative;
}
.media_block:before {
	content: '';
	height: 5px;
	position: absolute;
	left: 16px;
	right: 16px;
	top: -1px;
	border-radius: 2px;
	background-color: var(--bs-primary);
}
.media_block .title {
	grid-area: title;
	align-self: flex-end;
}
.media_block .content {
	grid-area: content;
	align-self: flex-start;
}
.media_block .image {
	align-self: center;
	grid-area: image;
}
.media_block .image img {
	border-radius: var(--theme-rounded-images);
}
.media_block .content li::marker {
	color: #fff;
}
.media_block.left {
	grid-template-columns: 50% auto;
	grid-template-areas:
		'image title'
		'image content';
}
.media_block.notitle {
	grid-template-areas: 'content image';
}
.media_block.notitle.left {
	grid-template-columns: 50% auto;
	grid-template-areas: 'image content';
}
.media_block.notitle.middle .content {
	align-self: center;
}
@media (max-width: 991px) {
	.media_block {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.media_block,
	.media_block.notitle,
	.media_block.left {
		grid-template-columns: none !important;
		grid-template-areas:
			'title'
			'image'
			'content';
		margin-top: 0;
		margin-bottom: 0;
	}
	.media_block .title,
	.media_block .image {
		margin-bottom: 1rem;
	}
	.media_block .image {
		text-align: center !important;
	}
	.media_block .image img {
		width: auto;
		max-height: 400px;
	}
}

/**
	Media Block v2
 */
.media_block_v2 {
	display: grid;
	column-gap: 25px;
	grid-template-columns: auto 50%;
	align-items: flex-start;
	margin-bottom: var(--theme-block-margin-bottom);
}
.media_block_v2.left {
	grid-template-columns: 50% auto;
}
.media_block_v2.middle {
	align-items: center;
}
.media_block_v2.left .content {
	order: 1;
}
.media_block_v2 .image img {
	border-radius: var(--theme-rounded-images);
}
.media_block_v2 .content li::marker {
	color: var(--bs-primary);
}
@media (max-width: 991px) {
	.media_block_v2 {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Advantages
 */
.advantages {
	margin-bottom: var(--theme-block-margin-bottom);
}
.advantages .advantages__container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 34px;
}
.advantages .advantages__container .item {
	padding: 15px 12px;
	/*line-height: normal;*/
	border-radius: var(--theme-rounded-images);
}
.advantages .advantages__container .item header {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 8px;
	margin-bottom: 12px;
}
.advantages .advantages__container .item .title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0;
}
.advantages .advantages__container .item img {
	max-width: 24px;
	max-height: 24px;
	width: auto;
	height: auto;
}
@media (max-width: 991px) {
	.advantages {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.advantages .advantages__container {
		grid-template-columns: none;
		grid-gap: 14px;
	}
}

/**
    Short Menu
 */
.short_menu {
	margin-bottom: var(--theme-block-margin-bottom);
}
.short_menu .short_menu__container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.short_menu .short_menu__container li {
	padding: 0;
	margin: 0;
}
.short_menu .short_menu__container li:before {
	display: none;
}
.short_menu .short_menu__container .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	height: 65px;
	padding: 0 22px;
	font-weight: 600;
	border-radius: var(--theme-rounded-section);
}
.short_menu .short_menu__container img {
	max-width: 47px;
	width: auto;
}
@media (max-width: 991px) {
	.short_menu {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.short_menu .short_menu__container {
		grid-template-columns: none;
		grid-gap: 8px;
	}
}

/**
    Most popular games
 */
.most_popular_games {
	margin-bottom: var(--theme-block-margin-bottom);
}
.most_popular_games header {
	display: flex;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}
.most_popular_games header img {
	height: 52px;
	width: auto;
}
.most_popular_games header h2 {
	margin-bottom: 0;
}
.most_popular_games .most_popular_games__container {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}
.most_popular_games .most_popular_games__container .item {
	cursor: pointer;
}
.most_popular_games .most_popular_games__container .item:hover img {
	transform: scale(1.05);
}
.most_popular_games .most_popular_games__container img {
	transition: 0.5s;
	border-radius: var(--theme-rounded-images);
}
@media (max-width: 991px) {
	.most_popular_games {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.most_popular_games header {
		gap: 12px;
	}
	.most_popular_games header img {
		height: 32px;
	}
	.most_popular_games .most_popular_games__container {
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
		grid-template-columns: none;
		grid-auto-flow: column;
		margin: auto -12px;
	}
	.most_popular_games .most_popular_games__container::-webkit-scrollbar {
		display: none;
	}
	.most_popular_games .most_popular_games__container li img {
		min-width: 140px;
	}
	.most_popular_games .most_popular_games__container img:hover {
		transform: none;
	}
	.most_popular_games .most_popular_games__container li:first-child {
		padding-left: 12px;
	}
	.most_popular_games .most_popular_games__container li:last-child {
		padding-right: 12px;
	}
}

/**
    Games Sports
 */
.games_sports {
	margin-bottom: var(--theme-block-margin-bottom);
}
.games_sports header {
	display: flex;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}
.games_sports header img {
	height: 52px;
	width: auto;
}
.games_sports header h2 {
	margin-bottom: 0;
}
.games_sports .games_sports__container {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.games_sports .games_sports__container li {
	padding: 0;
	margin: 0;
}
.games_sports .games_sports__container li:before {
	display: none;
}
.games_sports .games_sports__container .item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
	height: 140px;
	padding: 0 22px;
	font-size: 17px;
	border-radius: var(--theme-rounded-section);
	transition: 0.5s;
}
.games_sports .games_sports__container .item:hover {
	background-color: var(--bs-primary) !important;
}
.games_sports .games_sports__container img {
	max-height: 60px;
	width: auto;
}
.games_sports .games_sports__container .name {
	text-align: center;
	line-height: normal;
}
@media (max-width: 991px) {
	.games_sports {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.games_sports header {
		gap: 12px;
	}
	.games_sports header img {
		height: 32px;
	}
	.games_sports .games_sports__container {
		grid-template-columns: none;
		grid-gap: 8px;
	}
	.games_sports .games_sports__container .item {
		height: auto;
		padding: 15px;
		flex-direction: row;
		justify-content: flex-start;
	}
	.games_sports .games_sports__container img {
		max-height: 45px;
	}
}

/**
    Table with parameters
 */
.table_params {
	margin-bottom: var(--theme-block-margin-bottom);
}
.table_params table {
	width: 100%;
}
.table_params table tbody {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px 50px;
}
.table_params table tr {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 10px;
}
.table_params table tr td {
	display: flex;
	align-items: center;
	padding: 15px 12px;
	line-height: normal;
	border-radius: var(--theme-rounded-images);
}
.table_params table.columns_1 tbody {
	grid-template-columns: 1fr;
}
@media (max-width: 991px) {
	.table_params {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.table_params table tbody {
		grid-template-columns: none;
	}
	.table_params table tr {
		grid-template-columns: 120px 1fr;
	}
	.table_params table tr td {
		font-size: 0.9rem;
	}
}

/**
    Table mobile version and application
 */
.table_apps {
	margin-bottom: var(--theme-block-margin-bottom);
}
.table_apps table {
	width: 100%;
}
.table_apps table tr {
	display: grid;
	grid-template-columns: 0.7fr repeat(2, 1fr);
	grid-gap: 10px;
	margin-bottom: 10px;
}
.table_apps table tr td {
	display: flex;
	align-items: center;
	padding: 20px 60px 20px 12px;
	line-height: normal;
	font-size: 0.9rem;
	position: relative;
	border-radius: var(--theme-rounded-images);
}
.table_apps table tr td .icon {
	position: absolute;
	right: 10px;
	background-repeat: no-repeat;
}
.table_apps table tr td .icon01 {
	width: 22px;
	height: 17px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='27' fill='none'%3E%3Cpath fill='%234DAF51' d='M31.012.079c.876-.182 1.722-.037 2.52.315 1.618.714 2.603 1.95 2.907 3.71.008.042.04.08.061.119V5.65c-.116.156-.11.35-.162.525-.228.776-.597 1.477-1.17 2.05-5.787 5.807-11.575 11.613-17.375 17.407-1.06 1.06-2.393 1.444-3.872 1.356-.032-.002-.063-.028-.094-.042.048-.031.091-.078.144-.09 1-.235 1.816-.773 2.535-1.493 5.593-5.61 11.19-11.217 16.788-16.823 1.207-1.209 1.826-2.623 1.571-4.363-.224-1.534-1.031-2.66-2.322-3.48-.478-.302-1.019-.417-1.531-.618Z'/%3E%3Cpath fill='%2366BA6A' d='M31.012.078c.512.201 1.053.316 1.53.62 1.291.82 2.097 1.946 2.322 3.48.255 1.74-.363 3.154-1.57 4.363-5.598 5.606-11.195 11.214-16.79 16.823-.717.72-1.534 1.259-2.534 1.493-.053.012-.096.059-.144.09a4.863 4.863 0 0 1-2.846-1.415c-3.172-3.18-6.354-6.35-9.514-9.541C.083 14.593-.337 12.9.273 11.035.884 9.168 2.234 8.05 4.168 7.752c1.567-.242 2.966.222 4.104 1.352 1.864 1.85 3.713 3.714 5.568 5.573.478.479.7.478 1.185-.009 4.348-4.356 8.697-8.711 13.043-13.07.822-.825 1.769-1.392 2.944-1.52Z'/%3E%3C/svg%3E");
	background-size: 22px;
}
.table_apps table tr td .icon0 {
	width: 22px;
	height: 21px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='26' fill='none'%3E%3Cpath fill='red' d='M0 3.544v-.407c.02-.054.05-.107.059-.164.064-.432.24-.816.538-1.13.409-.43.823-.858 1.261-1.257C2.366.123 2.974-.06 3.666.032 4.23.107 4.678.385 5.072.78c2.566 2.57 5.135 5.137 7.703 7.704.081.081.168.157.312.292.086-.119.144-.227.227-.31 2.542-2.547 5.086-5.09 7.63-7.634.083-.083.168-.168.256-.247.883-.783 2.165-.783 3.031.018.417.386.821.789 1.206 1.206.48.52.673 1.14.575 1.85-.078.555-.349.997-.738 1.385-2.564 2.56-5.124 5.123-7.689 7.682-.088.088-.214.138-.322.206l.025.143c.095.07.201.129.284.211 2.534 2.53 5.065 5.062 7.597 7.594.101.102.204.203.3.312.77.88.77 2.151-.02 3.011-.39.425-.815.818-1.22 1.228-.64.649-1.852.716-2.537.338a3.337 3.337 0 0 1-.72-.555 3207.128 3207.128 0 0 1-7.65-7.648c-.089-.088-.141-.213-.21-.32l-.16.003c-.069.106-.122.23-.21.318-2.57 2.577-5.16 5.136-7.711 7.73-.887.902-2.502.933-3.346-.006-.306-.34-.645-.651-.969-.974a2.32 2.32 0 0 1-.632-1.113c-.026-.105-.056-.21-.084-.315v-.407c.014-.021.037-.041.04-.064.076-.631.417-1.106.857-1.544 2.532-2.52 5.054-5.05 7.582-7.571.088-.088.212-.141.32-.21v-.16c-.107-.068-.23-.121-.319-.21-2.558-2.552-5.112-5.11-7.67-7.662C.465 4.718.2 4.336.085 3.858.06 3.751.029 3.648 0 3.544Z'/%3E%3C/svg%3E");
	background-size: 22px;
}
.table_apps table tr td:first-child {
	font-weight: 600;
}
@media (max-width: 991px) {
	.table_apps {
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.table_apps::-webkit-scrollbar {
		display: none;
	}
	.table_apps table tr {
		grid-template-columns: 160px repeat(2, 1fr);
	}
}

/**
    Payment methods
 */
.payment_methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-gap: 32px;
	margin-bottom: var(--theme-block-margin-bottom);
}
.payment_methods .item {
	padding: 20px;
	border-radius: var(--theme-rounded-images);
}
.payment_methods .item table {
	width: 100%;
}
.payment_methods .item table thead img {
	margin-bottom: 20px;
	max-height: 26px;
	width: auto;
}
.payment_methods .item table tr {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	grid-gap: 10px;
	align-items: end;
	margin-bottom: 10px;
}
.payment_methods .item table tr:last-child {
	margin-bottom: 0;
}
.payment_methods .item table tr td {
	font-size: 0.85rem;
}
.payment_methods .item table tr td:first-child {
	font-weight: 600;
}
@media (max-width: 575px) {
	.payment_methods {
		grid-template-columns: none;
		grid-gap: 10px;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Заголовок с навигацией
 */
.heading_nav {
	margin-bottom: var(--theme-block-margin-bottom);
}
.heading_nav nav ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.heading_nav nav ol li a {
	display: block;
	padding: 9px 12px;
	line-height: normal;
	background-color: var(--menu_bg);
	border: 1px solid var(--bs-primary);
	border-radius: var(--theme-rounded-button);
	font-size: 13px;
	text-decoration: none;
	color: var(--menu_text_color);
}
.heading_nav nav ol li a:hover {
	color: var(--bs-primary);
}
@media (max-width: 991px) {
	.heading_nav {
		grid-template-columns: none;
		grid-gap: 0;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
	How To Block
 */
.howto_block {
	margin-bottom: var(--theme-block-margin-bottom);
}
.howto_block .attributes {
	margin-bottom: 20px;
}
.howto_block .attributes > div {
	margin-bottom: 3px;
	font-size: 14px;
}
.howto_block .attributes > div:last-child {
	margin-bottom: 0;
}
.howto_block .how-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: num;
}
.howto_block .how-list > li {
	position: relative;
}
.howto_block .how-list > li:before {
	content: counter(num);
	counter-increment: num;
	display: grid;
	height: 34px;
	width: 34px;
	place-items: center;
	line-height: normal;
	font-size: 18px;
	font-weight: 600;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	background-color: var(--bs-primary);
	border-radius: 50%;
}
.howto_block .how-list .item {
	position: relative;
	margin-bottom: var(--theme-block-margin-bottom);
}
.howto_block .how-list .item .title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	padding-left: 50px;
	padding-top: 5px;
}
.howto_block .how-list .item .item__container {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
}
.howto_block .how-list .item .item__container .btn {
	margin-top: 12px;
	display: inline-block;
}
.howto_block .how-list .item .item__container .item_image img {
	border-radius: var(--theme-rounded-images);
}
@media (max-width: 991px) {
	.howto_block {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.howto_block .how-list .item {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.howto_block .how-list .item .item__container {
		grid-template-columns: none;
	}
	.howto_block .how-list .item .item__container .item_image {
		order: -1;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.howto_block .how-list .item .item__container .item_image img {
		max-width: 100%;
	}
}

/**
	YouTube Iframe
 */
.youtube {
	background-color: #000;
	margin-bottom: var(--theme-block-margin-bottom);
	cursor: pointer;
	border-radius: var(--theme-rounded-section);
}
.youtube img {
	width: 100%;
	/*top: -16.82%;*/
	top: 0;
	left: 0;
	border-radius: var(--theme-rounded-images);
}
.youtube .play-button {
	width: 90px;
	height: 60px;
	background-color: #333;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	z-index: 1;
	opacity: 0.8;
	border-radius: 14px;
}
.youtube:hover .play-button {
	background-color: #ff0215;
}
.youtube .play-button:before {
	content: '';
	border-style: solid;
	border-width: 15px 0 15px 26px;
	border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
	cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
	position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}
.youtube iframe {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
@media (max-width: 991px) {
	.youtube {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Image Slider
 */
.image_slider_block {
	margin-bottom: var(--theme-block-margin-bottom);
}
.image_slider_block .owl-carousel img {
	width: auto;
	margin: auto;
}
.image_slider_block .owl-carousel .owl-dots .owl-dot span {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	padding: 5px;
	border: 1px solid transparent;
	background: none;
	width: 18px;
	height: 18px;
}
.image_slider_block .owl-carousel .owl-dots .owl-dot.active span {
	border-color: #fff;
}
.image_slider_block .owl-carousel .owl-dots .owl-dot span:after {
	content: '';
	width: 2px;
	height: 2px;
	background-color: #fff;
}
@media (max-width: 991px) {
	.image_slider_block {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
	FAQ
 */
.faq-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 15px 32px;
	align-items: start;
	margin-bottom: var(--theme-block-margin-bottom);
}
.faq-section .item {
	padding: 15px;
	border-radius: var(--theme-rounded-images);
}
.faq-section .item .question {
	position: relative;
	font-size: 17px;
	font-weight: 600;
	padding-right: 50px;
	cursor: pointer;
	user-select: none;
}
.faq-section .item .question .toggler {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 13px;
	height: 13px;
	display: flex;
	color: inherit;
	user-select: none;
}
.faq-section .item .answer {
	display: none;
	margin-top: 15px;
	padding-right: 50px;
}
.faq-section .item.show .answer {
	display: block;
}
.faq-section .item.show .toggler {
	transform: rotate(180deg);
}
@media (max-width: 991px) {
	.faq-section {
		grid-template-columns: none;
		grid-gap: 10px;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Banner (image)
 */
.banner_img {
	margin-bottom: var(--theme-block-margin-bottom);
}
@media (max-width: 991px) {
	.banner_img {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Banner
 */
.banner {
	display: flex;
	justify-content: end;
	position: relative;
	padding: 32px;
	background-color: #1a2338;
	border-radius: var(--theme-rounded-section);
	margin-bottom: var(--theme-block-margin-bottom);
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: left 80px center;
	background-size: contain;
}
.banner .bg_image {
	position: absolute;
	bottom: -62px;
	left: 0;
	width: 266px;
	display: none;
}
.banner .banner__container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}
.banner .bonus_name {
	font-size: 3rem;
	font-weight: 600;
	line-height: normal;
}
.banner .bonus_value {
	font-size: 3rem;
	font-weight: 600;
	line-height: normal;
}
.banner .banner_button {
	font-size: 18px;
	font-weight: 600;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 10px 60px;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, #d7a42a 0%, #ac3a31 100%);
	border-radius: 8px;
}
@media (max-width: 1100px) {
	.banner {
		background-position: left center;
	}
}
@media (max-width: 991px) {
	.banner {
		padding: 16px;
		justify-content: center;
		background-size: auto 200px;
		background-position: top 16px center;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.banner .banner__container {
		align-items: center;
		text-align: center;
		padding-top: 200px;
	}
	.banner .bonus_name {
		font-size: 6vw;
		margin-bottom: 10px;
	}
	.banner .bonus_value {
		font-size: 6vw;
	}
	.banner .banner_button {
		font-size: 14px;
		width: 100%;
	}
}
@media (max-width: 575px) {
	.banner .banner__container {
		width: 100%;
	}
}

/**
 * Mobile Button
 */
.mobile_button {
	display: none;
	margin-bottom: var(--theme-block-margin-bottom);
}
.acf-block-preview .mobile_button {
	display: block !important;
	opacity: 0.2;
}
@media (max-width: 991px) {
	.mobile_button {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.mobile_button,
	.mobile_button .wp-block-button__link {
		display: block;
	}
}

/**
	Pros / Cons
 */
.pros_cons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 32px;
	margin-bottom: var(--theme-block-margin-bottom);
}
.pros_cons .heading {
	font-size: 1.2rem;
	padding: 15px 12px;
	color: var(--table_text_color);
	background-color: var(--header_table_background) !important;
	border-radius: var(--theme-rounded-images) !important;
}
.pros_cons ul {
	list-style: none;
	margin: 16px 0 0;
	padding-left: 10px;
}
.pros_cons ul li {
	position: relative;
	padding: 8px 50px 8px 0;
}
.pros_cons ul li:after {
	content: '';
	position: absolute;
	right: 10px;
	top: 10px;
	background-repeat: no-repeat;
}
.pros_cons .pros ul li:after {
	width: 34px;
	height: 25px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='26' fill='none'%3E%3Cpath fill='%234DAF51' d='M28.809.073c.813-.169 1.6-.034 2.341.293 1.503.663 2.418 1.811 2.7 3.447.008.039.038.073.057.11v1.326c-.108.145-.102.324-.15.487-.213.72-.555 1.373-1.087 1.905-5.377 5.394-10.753 10.788-16.141 16.17-.986.985-2.223 1.341-3.597 1.26-.03-.002-.058-.026-.087-.039.044-.03.085-.073.133-.084.929-.218 1.688-.717 2.355-1.387 5.196-5.212 10.396-10.42 15.596-15.628 1.12-1.122 1.696-2.436 1.46-4.053-.21-1.425-.959-2.47-2.158-3.233-.444-.28-.947-.387-1.422-.574Z'/%3E%3Cpath fill='%2366BA6A' d='M28.809.071c.476.187.978.294 1.421.576 1.2.762 1.949 1.808 2.158 3.233.237 1.617-.338 2.93-1.46 4.053-5.199 5.208-10.4 10.417-15.596 15.628-.667.669-1.426 1.17-2.354 1.387-.05.011-.09.055-.134.084a4.518 4.518 0 0 1-2.644-1.315c-2.946-2.954-5.902-5.899-8.838-8.864C.077 13.555-.313 11.983.254 10.25S2.076 7.476 3.872 7.2c1.455-.224 2.756.208 3.813 1.257 1.73 1.718 3.448 3.45 5.172 5.177.444.445.65.444 1.1-.008 4.04-4.047 8.08-8.093 12.117-12.142C26.838.717 27.717.19 28.809.07Z'/%3E%3C/svg%3E");
}
.pros_cons .cons ul li:after {
	width: 25px;
	height: 25px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'%3E%3Cpath fill='red' d='M0 3.423V3.03c.02-.053.05-.104.057-.159.062-.417.231-.787.52-1.09.395-.416.794-.83 1.218-1.215C2.285.12 2.872-.059 3.54.031c.547.073.978.34 1.359.722 2.478 2.483 4.96 4.962 7.44 7.441.078.079.162.152.301.283.083-.116.14-.22.22-.3 2.454-2.46 4.911-4.916 7.368-7.373.081-.081.163-.163.248-.239.852-.756 2.09-.756 2.928.018.402.372.792.761 1.164 1.164.464.502.65 1.101.555 1.787-.075.536-.337.963-.713 1.338-2.476 2.472-4.948 4.948-7.426 7.42-.085.084-.206.133-.31.198l.024.139c.091.067.194.124.274.204 2.447 2.443 4.892 4.888 7.337 7.334.098.098.198.196.29.301.744.85.743 2.078-.02 2.909-.377.41-.786.789-1.178 1.185-.619.627-1.789.692-2.45.327a3.23 3.23 0 0 1-.696-.536 3118.68 3118.68 0 0 1-7.389-7.387c-.085-.085-.135-.206-.201-.31l-.155.004c-.067.103-.118.222-.203.307-2.483 2.489-4.983 4.96-7.448 7.466-.856.871-2.416.902-3.232-.006-.295-.329-.622-.629-.935-.941a2.24 2.24 0 0 1-.611-1.075C.056 22.31.027 22.21 0 22.107v-.393c.013-.02.036-.04.039-.061.073-.61.403-1.069.828-1.492 2.445-2.434 4.88-4.877 7.323-7.313.085-.085.204-.136.308-.202v-.154c-.103-.067-.222-.118-.307-.203C5.719 9.824 3.253 7.354.78 4.888c-.331-.331-.588-.7-.698-1.162C.059 3.623.028 3.523 0 3.423Z'/%3E%3C/svg%3E");
}
@media (max-width: 991px) {
	.pros_cons {
		grid-template-columns: none;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
	Mobile app vs mobile ver
 */
.mobile_app_vs_mobile_ver tr td {
	width: 50%;
	vertical-align: top;
}
.mobile_app_vs_mobile_ver tr:first-child td {
	font-weight: 600;
}
.mobile_app_vs_mobile_ver tr td.empty {
	visibility: hidden;
}
.mobile_app_vs_mobile_ver .attributes {
	margin-bottom: 5px;
}
.mobile_app_vs_mobile_ver .attributes .badge {
	padding: 6px 16px;
	color: #fff !important;
}
.mobile_app_vs_mobile_ver .attributes .badge.badge-advantages {
	background-color: var(--bs-success);
}
.mobile_app_vs_mobile_ver .attributes .badge.badge-disadvantages {
	background-color: var(--bs-danger);
}
@media (max-width: 991px) {
	.mobile_app_vs_mobile_ver .text {
		font-size: 0.85rem;
	}
}

/**
    Block | TOC Navigation
 */
.toc_navigation {
	margin-bottom: var(--theme-block-margin-bottom);
}
.toc_navigation nav ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.toc_navigation nav ol li a {
	display: block;
	padding: 9px 12px;
	line-height: normal;
	background-color: var(--menu_bg);
	border: 1px solid var(--bs-primary);
	border-radius: var(--theme-rounded-button);
	font-size: 13px;
	text-decoration: none;
	color: var(--menu_text_color);
}
.toc_navigation nav ol li a:hover {
	color: var(--bs-primary);
}
@media (max-width: 991px) {
	.toc_navigation {
		grid-template-columns: none;
		grid-gap: 0;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Promocode
 */
.promocode-block {
	display: flex;
	padding: 16px 32px;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	border-radius: 12px;
	background-color: var(--promocode-block-bg-color);
	margin-bottom: var(--theme-block-margin-bottom);
}
.promocode-block .image {
	width: 237px;
	height: 130px;
	background-image: var(--promocode-block-bg-image, none);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.promocode-block .bonus {
	font-size: 26px;
	line-height: normal;
}
.promocode-block .copy-block-wrap {
	display: flex;
	width: 250px;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.promocode-block .copy-block-wrap .copy-block {
	position: relative;
	width: 100%;
	height: 45px;
	border: 1px dashed #fff;
	border-radius: var(--theme-rounded-button);
}
.promocode-block .copy-block-wrap .copy-block input {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	box-shadow: none;
	border: none;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	padding-right: 33px;
	outline: none;
	background-color: transparent;
	cursor: pointer;
}
.promocode-block .copy-block-wrap .copy-block .copy-icon {
	display: block;
	position: absolute;
	top: calc(50% - 12px);
	right: 10px;
	width: 24px;
	height: 24px;
	background-image: url('../images/copy.svg');
	cursor: pointer;
}
.promocode-block .copy-block-wrap .copy-block.copy-ok .copy-icon {
	background-image: url('../images/check.svg');
}
.promocode-block .promocode_button {
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	height: 45px;
	padding: 0 16px;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, #d7a42a 0%, #ac3a31 100%);
	border-radius: var(--theme-rounded-button);
}
@media (max-width: 991px) {
	.promocode-block {
		flex-direction: column;
		padding: 12px;
		border-radius: 8px;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.promocode-block .bonus {
		text-align: center;
	}
	.promocode-block .copy-block-wrap {
		width: 100%;
		max-width: 300px;
	}
}

/**
    Bonus Section
 */
.bonus_section {
	margin-bottom: var(--theme-block-margin-bottom);
}
.bonus_section .bonus_section__container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.bonus_section .bonus_section__container .item {
	padding: 16px;
	border-radius: var(--theme-rounded-images);
}
.bonus_section .bonus_section__container .item .bonus_type {
	font-size: 14px;
	font-weight: 600;
	color: #5c6278;
	margin-bottom: 16px;
}
.bonus_section .bonus_section__container .item .bonus {
	font-size: 20px;
	line-height: normal;
}
.bonus_section .bonus_section__container .item footer {
	margin-top: 20px;
	text-align: center;
}
.bonus_section .bonus_section__container .item footer .claim_bonus {
	display: block;
}
.bonus_section .bonus_section__container .item footer .read_more {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	color: #5c6278;
}
@media (max-width: 991px) {
	.bonus_section {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.bonus_section .bonus_section__container {
		grid-template-columns: none;
		grid-gap: 8px;
	}
}

/**
    Frame
 */
.iframe-block {
	margin-bottom: var(--theme-block-margin-bottom);
}
@media (max-width: 991px) {
	.iframe-block {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
    Cards
 */
.cards-block {
	margin-bottom: var(--theme-block-margin-bottom);
}
.cards-block ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 50px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.cards-block .item {
	display: flex;
	flex-direction: column;
	background-color: var(--cards-block-bg-color);
	border-radius: var(--theme-rounded-images);
}
.cards-block .item__container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.cards-block .logo {
	width: 100%;
	padding: 24px;
	text-align: center;
	background-color: var(--cards-block-bg-logo);
	border-radius: var(--theme-rounded-images) var(--theme-rounded-images) 0 0;
}
.cards-block .logo img {
	width: auto;
	height: 40px;
}
.cards-block .name {
	font-size: 25px;
	font-weight: 600;
	color: #ffd058;
}
.cards-block .bonus {
	font-size: 25px;
	font-weight: 600;
}
.cards-block .rating_box {
	display: flex;
	align-items: center;
	gap: 9px;
}
.cards-block .rating_box .avg {
	font-size: 18px;
	margin-top: 2px;
}
.cards-block .copy-block {
	position: relative;
	width: 100%;
	height: 45px;
	border: 1px dashed #fff;
	border-radius: var(--theme-rounded-button);
}
.cards-block .copy-block input {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	box-shadow: none;
	border: none;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	padding-right: 33px;
	outline: none;
	background-color: transparent;
	cursor: pointer;
}
.cards-block .copy-block .copy-icon {
	display: block;
	position: absolute;
	top: calc(50% - 12px);
	right: 10px;
	width: 24px;
	height: 24px;
	background-image: url('../images/copy.svg');
	cursor: pointer;
}
.cards-block .copy-block.copy-ok .copy-icon {
	background-image: url('../images/check.svg');
}
.cards-block .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 100%;
}
.cards-block .properties ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}
.cards-block .properties li {
	display: flex;
	gap: 7px;
	line-height: normal;
}
@media (max-width: 991px) {
	.cards-block {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.cards-block ul {
		grid-template-columns: none;
		grid-gap: var(--theme-block-margin-bottom-mob);
	}
}
