/*
Theme Name: ProTheme
Theme URI: https://google.com
Author: Google
Author URI: https://google.com
Description: "For search from kind hands". Use it wisely. Respect Google. Everything will work out.
Version: 2.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: protheme
*/


@font-face{
	font-family:'Open Sans';
	src:url('fonts/OpenSans-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Noto Sans';
	src:url('fonts/NotoSans-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Roboto';
	src:url('fonts/Roboto-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Cairo';
	src:url('fonts/Cairo-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Lato';
	src:url('fonts/Lato-Light.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Montserrat';
	src:url('fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Open Sans';
	src:url('fonts/OpenSans-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Noto Sans';
	src:url('fonts/NotoSans-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Roboto';
	src:url('fonts/Roboto-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Cairo';
	src:url('fonts/Cairo-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Lato';
	src:url('fonts/Lato-Regular.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Montserrat';
	src:url('fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
	font-display: swap;
}


@font-face{
	font-family:'Open Sans';
	src:url('fonts/OpenSans-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Noto Sans';
	src:url('fonts/NotoSans-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Roboto';
	src:url('fonts/Roboto-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Cairo';
	src:url('fonts/Cairo-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Lato';
	src:url('fonts/Lato-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal;
	font-display: swap;
}

@font-face{
	font-family:'Montserrat';
	src:url('fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal;
	font-display: swap;
}



:root {
	--bl: #000;
	--wh: #fff;
	--wh-80: rgba(255, 255, 255, 80%);
	--wh-50: rgba(255, 255, 255, 50%);
	--wh-30: rgba(255, 255, 255, 30%);
	--shadow: 0 0 10px 3px #ffffff5e;
	--hover-darken: inset 0 0 0 999px rgba(0, 0, 0, 0.15);
	--ye: #FFBD3C;
}

:focus {
	outline: none;
}

::placeholder{
	color: inherit;
}

liss:focus {
	
}

body{
	font-size: 16px;
}

button, input, select, textarea {
	font-size: inherit;
}

a {
	transition: .3s;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

[type="password"],
[type="text"], 
[type="tel"], 
[type="email"], 
[type="number"], 
textarea, 
select {
	width: 100%;
	border: 1px solid var(--gray);
	background: var(
	--bg-gray);
	border-radius: 6px;
	height: 40px;
	color: inherit;
	padding: 10px;
}

textarea {
	resize: none;
	height: 160px;
}

[type=button]:not(:disabled), 
[type=reset]:not(:disabled), 
[type=submit]:not(:disabled), 
button:not(:disabled) {
    transition: 0.3s;
    cursor: pointer;
    background: var(--contrast);
    color: inherit;
    border: 1px solid var(--contrast);
    border-radius: 6px;
    width: 100%;
    height: 40px;
}


[type=button]:not(:disabled):hover, 
[type=reset]:not(:disabled):hover, 
[type=submit]:not(:disabled):hover, 
button:not(:disabled):hover {
    box-shadow: var(--hover-darken);
}

p, ul {
    margin-bottom: 20px;
}

h1, .h1 {
	font-size: 36px;
	margin-bottom: 40px;
}

h2, .h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

h3, .h3 {
	font-size: 1.4rem;
	margin-bottom: 20px;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
    max-width: 100%;
}

img.to_svg{
	display: none;
}

.table_wrap {
    width: 100%;
    overflow: auto;
    position: relative;
}

/**** HEADER *****/
header {
    position: relative;
    z-index: 111;
}
header.header--fixed {
    position: sticky;
    top: 0;
}

/* ========== Variant 1 · Accent Strip ========== */
.header_v1_wrap {
	position: relative;
}
.header_accent_strip {
	height: 2px;
	width: 100%;
	background: var(--header-accent-strip, #22c55e);
}
.header_nav_container {
	border-bottom: 1px solid #1e2030;
}
.header_row.header_v1_nav {
	height: 62px;
	padding: 0 0 0 10px;
	flex-wrap: nowrap;
	background: transparent;
}
.header_v1_logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	margin-right: 0;
	text-decoration: none;
	color: inherit;
	height: 100%;
	min-height: 44px;
}
.header_v1_logo .header_logo_img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.header_v1_logo .header_logo_img img {
	width: auto;
	height: 100%;
	max-height: 50px;
	object-fit: contain;
}
.header_v1_links {
	margin: 0 auto 0 0;
	gap: 2px;
}
.header_v1_links > li {
	margin: 0;
}
.header_v1_links > li > a {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 7px;
	transition: all 0.2s;
	text-decoration: none;
	position: relative;
	white-space: nowrap;
}
.header_v1_links > li > a:hover {
	background: #1a1c28;
	opacity: 1;
}
.header_v1_links > li.current-menu-item > a {
	color: var(--menu-active-color, #fbbf24) !important;
}
/* Menu item badge (HOT, NEW) */
.menu-item-has-badge > a {
	color: var(--menu-active-color, #fbbf24) !important;
}
.menu-item-badge {
	position: absolute;
	top: -4px;
	right: 2px;
	font-size: 8px;
	font-weight: 700;
	color: var(--menu-active-color, #fbbf24);
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.header_v1_divider {
	width: 1px;
	height: 28px;
	background: #1e2030;
	flex-shrink: 0;
	margin: 0 8px 0 4px;
}
.head_btn.head_btn_in {
	border: 1px solid currentColor;
	box-shadow: none;
}
.head_btn.head_btn_up {
	box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
}
.head_btn.head_btn_up:hover {
	box-shadow: 0 4px 24px rgba(34, 197, 94, 0.4);
	transform: translateY(-1px);
}

/* Обёртка кнопок — на десктопе ведёт себя как inline */
.header_btns_wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.header_row {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    align-items: center;
    position: relative;
}

a.header_logo {
    display: block;
    line-height: 1;
    margin-right: auto;
}

a.header_logo img {
    width: auto;
    height: 50px;
}

.ul_main_menu {
    margin: 0 auto 0 0;
    display: flex;
    list-style: none;
    padding: 0;
}

.ul_main_menu > li {
    margin: 0 10px;
}

.ul_main_menu > li a:hover,
.ul_language a:hover{
	opacity: 0.7;
}

.menu-item-has-children ul.sub-menu li {
    margin: 5px;
}

.menu-item-has-children > span {
    position: absolute;
    top: 0px;
    right: -5px;
    height: 20px;
    width: 12px;
    display: flex;
    align-items: center;
}

.ul_mob_menu .menu-item-has-children > span {
	right: 10px;
	top: 10px;
	padding: 20px;
}

.ul_mob_menu .menu-item-has-children > span svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ul_mob_menu .menu-item-has-children:hover ul.sub-menu{
	display: none;
}

body.menu_open {
    overflow: hidden;
}

a.head_btn {
    display: flex;
    padding: 14px 28px;
    margin-left: 10px;
    border-radius: 6px;
    align-items: center;
}

a.head_btn img {
    display: block;
    height: 18px;
    margin-right: 10px;
}

a.head_btn:hover {
	box-shadow: var(--hover-darken);
}

.language_wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

/* Pill Toggle — компактный переключатель языков (Polylang) */
.language_wrap.lang-pill {
	display: inline-flex;
	align-items: center;
	background: #1e2028;
	border: 1px solid #2d2f3a;
	border-radius: 8px;
	padding: 3px;
	gap: 2px;
	margin-left: 10px;
}

.lang-pill .lang-pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border: none;
	border-radius: 6px;
	background: transparent;
	color: #888;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	white-space: nowrap;
	font-family: inherit;
}

.lang-pill .lang-pill-btn:hover {
	color: #ccc;
}

.lang-pill .lang-pill-btn.active {
	background: #2d2f3a;
	color: #fff;
}

.lang-pill .lang-pill-btn:hover.active {
	color: #fff;
}

.lang-pill .lang-flag {
	display: inline-flex;
	line-height: 1;
}

.lang-pill .lang-flag img {
	display: block;
	width: 16px;
	height: 12px;
	object-fit: contain;
}

.language_wrap svg {
	position: absolute;
	right: 0;
}

.ul_language {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.ul_language li {
    list-style: none;
}

.ul_language ul.sub-menu {
    margin: 0;
    padding: 0;
    position: absolute;
    display: none;
}

.ul_language a {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 10px 0 10px;
}


.ul_language .menu-item-has-children > span {
    top: 14px;
    right: 10px;
}

.menu-item-has-children ul.sub-menu li a {
    padding: 0;
}

.ul_language > li {
    padding: 4px 27px 4px 14px;
}

.ul_language a img {
    margin-right: 5px;
}

.ul_language:hover ul.sub-menu {
    display: block;
}

.ul_mob_menu > li {
    padding-top: 20px;
}
	
.menu-item-has-children {
    position: relative;
    padding-right: 15px;
}
	
.menu-item-has-children:after {
    position: absolute;
    top: 8px;
    right: 15px;
}
	
.menu-item-has-children ul.sub-menu {
    position: absolute;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    min-width: 100%;
    width: auto;
    left: 0;
    border-radius: 6px;
}

.menu-item-has-children ul.sub-menu li {
    margin: 5px;
}

.menu-item-has-children:hover ul.sub-menu {
    display: block;
}

.menu-item-has-children.open ul.sub-menu {
    display: block !important;!i;!;
}
	
.burger {
    width: 30px;
    height: 40px;
    position: relative;
    cursor: pointer;
    margin-right: 20px;
    display: none;
}
	
.burger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    top: 19px;
    left: 0px;
    transition: 0.3s;
}
	
.burger span:first-child {
    top: 9px;
}
	
.burger span:last-child {
    top: 29px;
}
	
.menu_open .burger span:first-child,
.menu_open .burger span:last-child {
    opacity: 0;
}
	
.menu_open .burger span:nth-child(2) {
    transform: rotate(45deg);
}
	
.menu_open .burger span:nth-child(3) {
    transform: rotate(-45deg);
}
	
.mobile_menu {
    position: absolute;
    width: 100%;
    height: calc(100vh - 86px);
    display: none;
    overflow: auto;
}
	
.ul_mob_menu > li {
    padding-top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ul_mob_menu > li:last-child {
    border-bottom: none;
}
.ul_mob_menu a {
    color: var(--d-blue);
    margin-bottom: 0;
    padding: 14px 15px;
    display: block;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}
.ul_mob_menu a:hover,
.ul_mob_menu a:active {
    background: rgba(255,255,255,0.08);
}
.ul_mob_menu .menu-item-has-badge > a {
    color: inherit;
}
.ul_mob_menu .menu-item-has-badge > a:hover,
.ul_mob_menu .menu-item-has-badge > a:active {
    color: var(--menu-active-color, #fbbf24);
}
.ul_mob_menu .menu-item-badge {
    position: static;
    display: inline-block;
    margin-left: 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--menu-active-color, #fbbf24);
    letter-spacing: 0.5px;
    padding: 2px 6px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 4px;
    vertical-align: middle;
    top: auto;
    right: auto;
}
.ul_mob_menu .sub-menu a {
    font-size: 16px;
    padding: 10px 15px 10px 24px;
}
	
.menu_open .mobile_menu {
    display: block;
}
	
.ul_mob_menu {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}
/**** END HEADER ****/

section.breadcrumbs {
    padding: 10px 0;
}

.breadcrumbs a {
    color: var(--contrast);
}

.breadcrumbs a:hover {
    color: inherit;
}

main {
    min-height: 70vh;
}

.section_wrap {
    border: 1px solid var(--gray);
    padding: 20px 20px 10px;
    border-radius: 10px;
    background: var(--bg-gray);
}

/*** APPLICATION ***/
section.application {
    padding: 40px 0 48px;
    overflow: hidden;
}

.application_top {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.application_img {
    flex: 0 0 300px;
    max-width: 300px;
    align-self: center;
}

.application_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.application_content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.application_content h1 {
    margin-bottom: 12px;
}

.application_text {
    line-height: 1.7;
    color: var(--wh-80);
    margin-bottom: 24px;
}

.application_text p:last-child {
    margin-bottom: 0;
}

.app_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a.app_any_btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: box-shadow 0.15s, transform 0.15s;
    border: 1px solid transparent;
}

a.app_any_btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

a.app_any_btn svg:not(.app_btn_arrow) {
    margin-right: 12px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

a.app_any_btn span {
    flex: 1;
}

.app_btn_arrow {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    flex-shrink: 0;
    opacity: 0.6;
    stroke: currentColor;
}

a.app_any_btn.app_ios {
    border-color: var(--gray);
}

.application_params {
    display: flex;
    gap: 0;
    margin-top: 32px;
    background: var(--bg-gray);
    border: 1px solid var(--gray);
    border-radius: 14px;
    overflow: hidden;
}

.app_any_param {
    flex: 1 1 0;
    min-width: 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--gray);
}

.app_any_param:last-child {
    border-right: none;
}

.app_any_param_icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.app_any_param_icon svg {
    width: 18px;
    height: 18px;
    color: var(--ye);
}

.app_any_param_value {
    font-size: 18px;
    font-weight: 700;
    color: var(--wh);
    margin-bottom: 4px;
    line-height: 1.2;
}

.app_any_param_label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wh-50);
    font-weight: 500;
}

.stars {
    display: flex;
    position: relative;
    line-height: 1;
    margin-bottom: 8px;
}

.stars svg {
    margin-right: 1px;
    position: relative;
    display: none;
}

.stars_bg {
    position: absolute;
    height: 100%;
    background: var(--ye);
}

.stars svg path {
    fill: transparent;
    stroke: var(--bl);
}

.stars:before {
    font-size: 20px;
    content: "\2605\2605\2605\2605\2605";
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--ye) var(--rating), var(--wh-30) var(--rating));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*** END APPLICATION ***/

/*** HEAD CONTENT ***/
section.head_content {
    padding: 24px 0 32px;
}

.head_content_row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.head_content_wrap {
    flex: 1;
    min-width: 280px;
    margin: 0 10px;
}

.head_content_title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}

.head_content_text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--wh-80);
    max-width: 560px;
}

.head_content_offer {
    position: relative;
    margin-top: 24px;
}

.head_content_offer_label {
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--head-accent, var(--ye));
    background: var(--bg-gray);
    padding: 2px 8px;
    border-radius: 4px;
}

.head_content_params {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    background: var(--bg-gray);
    border: 1px solid var(--gray);
    border-radius: 12px;
    padding: 20px 24px;
    border-left: 4px solid var(--head-accent, var(--ye));
}

.head_content_trust {
    width: 100%;
    flex: 0 0 100%;
    font-size: 0.8125rem;
    color: var(--head-accent, var(--ye));
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.head_content_bonus_text {
    flex: 1;
    min-width: 200px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--wh);
}

.head_content_buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

a.bonus_text_any_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.bonus_text_any_btn:hover {
    box-shadow: var(--hover-darken);
    transform: translateY(-1px);
}

a.bonus_text_any_btn.head_cta_primary {
    padding: 16px 36px;
    font-size: 1.05rem;
}

a.bonus_text_any_btn.head_cta_secondary {
    padding: 14px 24px;
}

a.bonus_text_any_btn img {
    height: 18px;
    width: auto;
    margin-left: 8px;
}

.head_content_img {
    width: 400px;
    max-width: 100%;
    margin-left: 20px;
    flex-shrink: 0;
}

.head_content_img img {
    width: 100%;
    height: auto;
    display: block;
}

/*** END HEAD CONTENT ***/

/*** TOC ***/
section.toc {
    padding: 10px 0;
}

.toc_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toc_head h3 {
    margin-bottom: 10px;
}

.toc_head svg {
    width: 18px;
    height: auto;
    transition: 0.3s;
}

.toc_list {
    display: none;
    margin-top: 0px;
    flex-direction: column;
    border-left: 1px solid var(--contrast);
    padding-left: 20px;
    align-items: baseline;
}

.open .toc_head svg {
    transform: rotate(180deg);
}

.open .toc_list {
    display: flex;
}

.toc_item {
    margin: 5px 0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.toc_item:hover {
    color: var(--contrast);
}
/*** END TOC ***/



/*** SPORTS (Variant 2 · Masonry) ***/
section.sports {
    padding: 10px 0;
}

section.sports .sports-v2-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

section.sports .sports-v2-title {
    margin: 0 10px 0 0;
}

section.sports .sports-v2-title span {
    color: var(--contrast, #22c55e);
}

a.sports_all_btn,
a.sports-v2-all {
    display: inline-flex;
    align-items: center;
    align-self: start;
    margin-left: auto;
    background: var(--contrast, #22c55e);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

a.sports_all_btn:hover,
a.sports-v2-all:hover {
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
}

.sports-v2-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 90px;
    gap: 10px;
}

.sports-v2-card {
    border-radius: 14px;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.sports-v2-card:hover {
    transform: translateY(-2px);
}

.sports-v2-card.w2 { grid-column: span 2; }
.sports-v2-card.w3 { grid-column: span 3; }
.sports-v2-card.h2 { grid-row: span 2; }

.sports-v2-card.green { background: linear-gradient(135deg, #0d2016 0%, #112819 100%); border-color: #1a4028; }
.sports-v2-card.purple { background: linear-gradient(135deg, #1a0d2e 0%, #140a26 100%); border-color: #2d1a4a; }
.sports-v2-card.blue { background: linear-gradient(135deg, #0d1628 0%, #0a1220 100%); border-color: #1a2a4a; }
.sports-v2-card.amber { background: linear-gradient(135deg, #1f1508 0%, #180f05 100%); border-color: #3a2808; }
.sports-v2-card.dark { background: #12141e; border-color: #1e2030; }

.sports-v2-card:hover.green { box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1); }
.sports-v2-card:hover.purple { box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1); }
.sports-v2-card:hover.blue { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1); }
.sports-v2-card:hover.amber { box-shadow: 0 8px 32px rgba(251, 191, 36, 0.1); }
.sports-v2-card:hover.dark { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.sports-v2-emoji,
.sports-v2-ico-img {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 36px;
    opacity: 0.25;
    transition: opacity 0.2s, transform 0.2s;
}

.sports-v2-ico-img {
    font-size: 0;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sports-v2-card.h2 .sports-v2-emoji { font-size: 52px; right: 14px; top: 16px; }
.sports-v2-card.h2 .sports-v2-ico-img { width: 52px; height: 52px; right: 14px; top: 16px; }
.sports-v2-card:hover .sports-v2-emoji { opacity: 0.45; transform: scale(1.1) rotate(-5deg); }
.sports-v2-card:hover .sports-v2-ico-img { opacity: 0.45; transform: scale(1.1) rotate(-5deg); }

.sports-v2-label { position: relative; z-index: 1; }
.sports-v2-name { font-size: 14px; font-weight: 700; color: #e2e8f0; line-height: 1; }
.sports-v2-card.w2 .sports-v2-name,
.sports-v2-card.w3 .sports-v2-name { font-size: 16px; }
.sports-v2-card.h2 .sports-v2-name { font-size: 18px; }
.sports-v2-sub { font-size: 10px; color: #555; margin-top: 3px; }
.sports-v2-badge { display: inline-block; font-size: 9px; padding: 2px 6px; border-radius: 5px; font-weight: 700; margin-top: 4px; margin-right: 4px; }
.sports-v2-badge.live { background: #7f1d1d; color: #fca5a5; }
.sports-v2-badge.pop { background: #14291c; color: #4ade80; }

@media (max-width: 900px) {
    .sports-v2-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 80px;
    }
    .sports-v2-card.w2 { grid-column: span 2; }
    .sports-v2-card.w3 { grid-column: span 3; }
}

@media (max-width: 600px) {
    .sports-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 72px;
    }
    .sports-v2-card.w2 { grid-column: span 2; }
    .sports-v2-card.w3 { grid-column: span 2; }
}

/*** END SPORTS ***/

/*** SLIDER ***/
section.slider {
    padding: 10px 0;
}

.slider_wrap {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 40px 40px 60px;
    background: var(--bg-gray);
}

.bg_lighter {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: var(--wh-30);
}

.slider_text {
    margin-bottom: 40px;
}

.slider_item img {
    height: 90%;
    width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.slider_item {
	display: block;
    margin: 0 10px;
    height: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.slider_carousel {
    position: relative;
}

.owl-theme .owl-nav {
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 102%;
    display: flex;
    justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--contrast);
    background: var(--wh-30);
    transition: 0.3s;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--wh-50);
    box-shadow: var(--hover-darken);
}

button.owl-prev {
    transform: rotate(90deg);
}

button.owl-next {
    transform: rotate(-90deg);
}

.owl-theme .owl-dots {
    position: absolute;
    width: 100%;
    bottom: -40px;
    display: flex;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot {
    width: auto;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--gray);
    margin: 5px;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--contrast);
}
/*** END SLIDER ***/



/*** WP EDITOR ****/
.wp_editor p {
    margin-bottom: 20px;
}

.wp_editor a {
    color: inherit;
    text-decoration: underline;
}

.wp_editor a:hover {
    color: var(--contrast);
}

.alignright {
    float: right;
    margin: 0 0 10px 10px;
}

.wp_editor ol, .wp_editor ul {
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
    counter-reset: subsection;
}

.wp_editor li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
}

.wp_editor ul li:before {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--contrast);
    border-radius: 50%;
    left: 0;
    top: 5px;
}

.wp_editor ol li:before {
    display: flex;
    position: absolute;
    left: -9px;
    top: -2px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--contrast);
    justify-content: center;
    align-items: center;
    font-size: 12px;
    counter-increment: subsection;
    content: counter(subsection); 
}

.wp_editor ol li {
    margin-bottom: 20px;
}

.alignleft {
    float: left;
    margin: 0 10px 10px 0;
}
/**** END WP EDITOR ****/

/*** SPACE ***/
section.space {
    padding: 10px;
}
/*** END SPACE ***/

/*** BUTTON SECTION ***/
section.button_section {
    padding: 10px 0;
}

.button_section_text {
    margin-bottom: 40px;
}

.btn {
    display: flex;
    padding: 14px 28px;
    margin-right: 10px;
    border-radius: 6px;
    align-items: center;
    width: max-content;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: var(--hover-darken);
}

/*** END BUTTON SECTION ***/

/*** TABLE SECTION ***/
section.table_section {
    padding: 10px 0;
}

table {
    border-radius: 10px;
    padding: 6px 10px;
    border: 1px solid;
    border-spacing: 0 6px;
    height: auto;
    overflow: auto;
    border-color: var(--table);
    border-collapse: unset !important;!i;!;
    min-width: 100%;
}

td, th {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    padding: 10px 16px;
    min-width: 140px;
}

th {
    text-align: left;
}

table thead tr th:first-child {
    border-radius: 6px 0 0 6px;
}

table thead tr th:last-child {
    border-radius: 0 6px 6px 0;
}

table td:not(:first-child)::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(255, 255, 255, 0.3);
}

table tbody tr:nth-child(2n+1) {
    background: var(--bg-gray);
}

table thead tr {
    background: var(--table);
    overflow: hidden;
}

/*** END TABLE SECTION ***/

/*** NUM LIST ***/
section.num_list {
    padding: 40px 0;
}

ol.num_list_wrap {
    padding: 0;
    margin: 0;
    list-style: none;
}

ol.num_list_wrap li {
    display: flex;
    margin-bottom: 10px;
}

ol.num_list_wrap li .list_num {
    display: flex;
    margin-right: 10px;
    border: 1px solid var(--contrast);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -5px;
}

.list_text {
    flex: 1;
}
/*** END NUM LIST ***/

/*** FAQ ***/
section.faq {
    padding: 10px 0;
}

.faq_wrap {
    margin: 0 10px 20px;
    width: calc(50% - 20px);
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 10px;
    background: var(--bg-gray);
}

.faq_a {
    margin-top: 10px;
    display: none;
}

.faq_q {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    position: relative;
    cursor: pointer;
}

.faq_q span {
    margin: 0 40px 0 10px;
}

.arrow_icon {
    position: absolute;
    right: 0;
    top: 6px;
    transition: 0.3s;
}

.ask_icon path:first-child {
    fill: var(--contrast);
}

.faq_a p:last-child{
    margin: 0
}

.faq_wrap.open .faq_a {
    display: block;
}

.faq_wrap.open .arrow_icon {
    transform: rotate(180deg);
}

.faq_row {
    align-items: flex-start;
}
/*** END FAQ ***/

/*** SLOTS ***/
section.slots {
    padding: 10px 0;
}

.section_wrap.slots_section_wrap {
    background: transparent;
    border: none;
}

section.slots h2 {
    margin: 0;
}

.slots_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

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

.slots_nav {
    display: flex;
    gap: 6px;
}

.slots_nav_btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    border: none;
    background: var(--contrast);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

section.slots .sports_all_btn.sports-v2-all {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 13px;
}

.slots_nav_btn:hover {
    opacity: 0.9;
    box-shadow: var(--hover-darken);
}

.slots_track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.slots_track::-webkit-scrollbar {
    display: none;
}

.slot_item {
    flex: 0 0 160px;
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.slot_img {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
}

.slot_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slot_item:hover .slot_img img {
    transform: scale(1.05);
}

.slot_play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.slot_play_icon svg {
    margin-left: 3px;
}

.slot_item:hover .slot_play_icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0, 0, 0, 0.65);
}

.slot_players {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
}

.slot_players_icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.slot_label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 10px 24px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot_item:hover .slot_label {
    opacity: 1;
}

.slot_title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wh-80);
}

.m_auto {
    margin: auto;
}

.triangle_play {
    width: 11px;
    height: 14px;
    margin-right: 10px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/*** END SLOTS ***/

/*** HIGH ROLLERS ***/
.high_rollers_section {
    padding: 20px 0;
}

.live-feed-wrapper.high_rollers {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-gray);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.high_rollers .feed-header-top {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.high_rollers .pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: var(--contrast);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--contrast);
    animation: high-rollers-pulse 2s infinite;
}

@keyframes high-rollers-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 10px var(--contrast); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px transparent; }
    100% { transform: scale(0.95); box-shadow: 0 0 10px var(--contrast); }
}

.high_rollers .feed-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.high_rollers .feed-grid-header,
.high_rollers .feed-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 40px;
    align-items: center;
    padding: 12px 24px;
    gap: 16px;
}

.high_rollers .feed-grid-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--wh-50);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.high_rollers .feed-row {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.high_rollers .feed-row:last-child {
    border-bottom: none;
}

.high_rollers .feed-row:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: scale(1.01);
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.high_rollers .feed-row.feed-row-enter {
    animation: high-rollers-row-enter 0.4s ease-out forwards;
}

@keyframes high-rollers-row-enter {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.high_rollers .feed-row.feed-row-exit {
    animation: high-rollers-row-exit 0.3s ease-in forwards;
}

@keyframes high-rollers-row-exit {
    to {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        overflow: hidden;
    }
}

.high_rollers .col-game {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.high_rollers .game-thumb {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.high_rollers .game-thumb-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.high_rollers .game-thumb-emoji {
    font-size: 18px;
    line-height: 1;
}

.high_rollers .col-user {
    font-size: 13px;
    color: var(--wh-50);
    font-family: monospace;
}

.high_rollers .col-bet {
    font-size: 13px;
    color: var(--wh-50);
}

.high_rollers .mult-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.high_rollers .mult-badge.m-base {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.08);
}

.high_rollers .mult-badge.m-epic {
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.08);
}

.high_rollers .mult-badge.m-legend {
    color: #000;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
    border: none;
}

.high_rollers .col-profit {
    font-weight: 700;
    color: var(--contrast);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.high_rollers .col-action {
    display: flex;
    justify-content: flex-end;
}

.high_rollers .play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wh-50);
    transition: all 0.3s ease;
}

.high_rollers .feed-row:hover .play-btn {
    background: var(--contrast);
    color: #000;
    box-shadow: 0 0 15px var(--contrast);
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .high_rollers .feed-grid-header {
        display: none;
    }
    .high_rollers .feed-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 6px 12px;
        padding: 14px 16px;
    }
    .high_rollers .col-game {
        grid-column: 1 / 2;
        grid-row: 1;
    }
    .high_rollers .col-profit {
        grid-column: 2 / 3;
        grid-row: 1;
        justify-content: flex-end;
        font-size: 18px;
    }
    .high_rollers .col-user {
        grid-column: 1 / 2;
        grid-row: 2;
        display: block;
        font-size: 12px;
    }
    .high_rollers .col-mult {
        grid-column: 2 / 3;
        grid-row: 2;
        justify-content: flex-end;
    }
    .high_rollers .col-bet {
        grid-column: 1 / 2;
        grid-row: 3;
        display: block;
        font-size: 12px;
    }
    .high_rollers .col-action {
        grid-column: 2 / 3;
        grid-row: 3;
        align-items: flex-end;
    }
}

/*** END HIGH ROLLERS ***/

/*** HOW TO ***/
.how_to_item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 40px;
}

.how_to_item:last-child svg {
    display: none;
}

.how_to_item_img {
    flex: 1;
    margin-left: 20px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: block;
}

.how_to_item_text {
    flex: 1;
}

.how_to_arrow {
    position: absolute;
    bottom: -23px;
    left: 25%;
    width: 45px;
    z-index: 1;
}

section.how_to {
    padding: 10px 0 10px;
}

.how_to_item_img img {
    border-radius: 6px;
    width: 100%;
    height: auto;
}

.how_to_arrow path {
    stroke: var(--contrast);
}

.how_to_arrow circle {
    stroke: var(--contrast);
    fill: var(--bl);
}
/*** END HOW TO ***/

/*** COMMENTS ***/
.comment-notes {
    display: none;
}

form#commentform {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

p.comment-form-comment {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    ););););
}

label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: inherit;
    pointer-events: none;
    transition: 0.3s;
}

label.onfocus {
    font-size: 8px;
    top: 2px;
}

p.comment-form-author {
    position: absolute;
    width: calc(40% - 20px);
    top: 0;
    left: 0;
}

p.comment-form-email {
    position: absolute;
    width: calc(40% - 20px);
    left: 0;
    top: 60px;
}

p.form-submit {
    position: absolute;
    width: calc(40% - 20px);
    left: 0;
    top: 120px;
}


section.comments {
    padding: 10px 0;
}

.comment {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.comment_data {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.comment_text {
    width: 100%;
}

.comment-author.vcard {
    display: inline-block;
    color: var(--bl);
}

.comment-meta.commentmetadata {
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
    pointer-events: none;
    color: inherit;
}

.comment-meta.commentmetadata a {
    color: inherit;
	opacity: 0.7;
}

.comment-author.vcard cite.fn {
    font-style: normal;
    font-weight: 600;
}

.comment p {
    margin: 20px 0 0px;
}

p.logged-in-as {
    width: calc(40% - 20px);
}

p.logged-in-as a {
    text-decoration: underline;
    color: var(--contrast);
}

p.logged-in-as a:hover {
    opacity: 0.7;
}
/*** END COMMENTS ***/

/*** PROMO CODE ***/
section.promo_code {
    padding: 10px 0;
}

.promo_code_wrap {
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.promo_text {
    flex: 1;
    margin-bottom: -20px;
}

.promo_code_wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    padding: 2px;
    border-radius: 10px;
    background: linear-gradient(218.08deg, #00853f 5.5%, #00853f 22.02%, #00853f 33.95%, #fdef42 42.48%, #fdef42 47.98%, #e31b23 64.5%, #e31b23 76.43%, #e31b23 100%);
    background-size: 250% 100%;
    background-position: 100% 0;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: animGrad 4s infinite;
}

@keyframes animGrad {
    0%, 100% {
        background-position: 100% 0;
    }

    50% {
        background-position: 15% 0;
    }
}

.promo_actions {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.the_promo_code {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px dashed #fff;
    border-radius: 6px;
    flex: 1;
}

.the_promo_code span {
    display: block;
    width: 200px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.promo_copy {
    width: 40px;
    height: 40px;
    background: var(--wh-30);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.promo_copy:hover {
    opacity: 0.7;
}

.promo_copy svg {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
    transform: translateZ(0);
}

a.promo_btn {
    margin-left: 10px;
    min-width: 200px;
    text-align: center;
    padding: 15px 5px;
    border-radius: 6px;
}

a.promo_btn:hover {
    box-shadow: var(--hover-darken);
}

/*** END PROMO CODE ***/

/*** BONUSES ***/
section.bonuses {
    padding: 10px 0;
}

.bonus_item {
    margin: 0 10px 20px;
    width: calc(20% - 20px);
    display: flex;
    flex-direction: column;
}

.bonus_img {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 6px;
}

.bonus_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus_text {
    background: var(--bg-gray);
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 1px solid var(--gray);
    border-radius: 6px;
    margin-top: -6px;
    position: relative;
}

.bonus_title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

a.bonus_link {
    display: block;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
}

a.bonus_link:hover {
    box-shadow: var(--hover-darken);
}

.bonus_subtitle {
    margin-bottom: auto;
}

/*** END BOVUSES ***/

/*** PROS & CONS ***/
section.pros_cons {
    padding: 10px 0;
}

.pros_cons_wrap {
    border: 1px solid var(--gray);
    padding: 20px 20px 10px;
    border-radius: 10px;
    margin: 0 10px;
    flex: 1;
    background: var(--bg-gray);
}

.pros_cons_title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    font-weight: 600;
}

.pros_icon, .cons_icon {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.pros_icon {
    background: green;
}

.cons_icon {
    background: red;););););
}

.pros_icon span, .cons_icon span {
    height: 2px;
    width: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--wh);
}

.pros_icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.pros_list, .cons_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros_list li, .cons_list li {
    padding-left: 20px;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.pros_list li:before, .cons_list li:before {
    content: '';
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: 5px;
    left: 0;
}

.pros_list li:before {
    background: green;
}

.cons_list li:before {
    background: red;
}

/*** END PROS & CONS ***/

/*** TXT & IMG ***/
.txt_img_text {
    flex: 1;
    padding: 0 10px;
    order: 1;
    max-width: 100%;
}

.txt_img_image {
    margin: 0 10px;
    width: calc(50% - 20px);
    border-radius: 10px;
    overflow: hidden;
    order: 2;
}

.txt_img_image img {
    width: 100%;
    height: auto;
}

section.txt_img {
    padding: 10px 0;
}

.txt_img_image.img_left_pos {
    order: 0;
}

/*** END TXT & IMG ***/




/*** FOOTER ****/
.ul_footer_menu {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.ul_footer_menu li {
    margin: 0 10px 10px;
    display: block;
}

.ul_footer_menu a {
    color: inherit;
}

.ul_footer_menu a:hover {
    opacity: 0.7;
}

.footer_logo img {
    width: auto;
    height: 30px;
}

.footer_logo {
    margin: 0 15px;
}

.footer_row {
    align-items: center;
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--wh-30);
    margin-bottom: 20px;
}

.footer_social {
    display: flex;
    flex-wrap: wrap;
}

.footer_social a {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.footer_social a:hover {
    transform: scale(1.1);
}

.footer_buttons {
    justify-content: center;
    padding: 20px 0 40px;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--wh-30);
}

.footer_logos {
    border-bottom: 1px solid var(--wh-30);
    padding: 20px 0 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer_btn {
    color: inherit;
    display: flex;
    align-items: center;
    margin: 0 10px;
    border: 1px solid var(--gray);
    border-radius: 6px;
    background: #fff2;
    overflow: hidden;
}

.btn_icon_area {
    position: relative;
    width: 50px;
    height: 50px;
}

.android_btn .btn_icon_area {
    background: linear-gradient(270deg, #0dda42 0, #08932c 100%);
}

.ios_btn .btn_icon_area {
    background: linear-gradient(270deg, #00A3FF 0%, #005DE2 100%);
}

.btn_icon_area svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.btn_cloud_area {
    padding: 12px;
    display: flex;
    align-items: center;
}

.btn_text_area {
    padding: 0 20px;
    min-width: 150px;
}

.btn_text {
    font-size: 12px;
    margin-bottom: 3px;
}

.btn_title {
    font-weight: 600;
}

.footer_btn:hover {
    box-shadow: var(--hover-darken);
}

img.footer_bank_logo {
    height: 19px;
    width: auto;
    margin: 0 5px 10px;
}

a.footer_bank_logo_link {
    display: inline-block;
    margin: 0 5px 10px;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

a.footer_bank_logo_link:hover {
    opacity: 1;
    transform: scale(1.08);
}

a.footer_bank_logo_link img.footer_bank_logo {
    margin: 0;
    display: block;
}

.copywrite {
    display: flex;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.footer_mark {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.5;
    width: 200px;
}

.copywrite_text {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0.7;
}

.security {
    width: 200px;
    display: flex;
    justify-content: end;
}

.footer_selector {
    position: absolute;
    z-index: 1;
    width: 200px;
    top: 20px;
    right: 0;
}

.main_site_select {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #888;
    cursor: pointer;
}

img.footer_flag {
    background: var(--wh);
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.main_site_select svg {
    margin-left: auto;
}

.main_site_select span {
    font-weight: 600;
}

.other_sites_selector {
    flex-direction: column;
    border-radius: 6px;
    display: none;
}

a.other_site_select {
    padding: 0 10px;
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-weight: 600;
    color: inherit;
}

a.other_site_select:hover {
    opacity: 0.7;
}

.footer_selector:hover .other_sites_selector {
    display: flex;
}

.arrow_up {
    position: fixed;
    z-index: 10000;
    background: var(--wh-50);
    width: 30px;
    height: 30px;
    bottom: 80px;
    right: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid;
}

.arrow_up svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
}

.arrow_1 {
    border-radius: 50%;
    transform: rotate(180deg);
}

.arrow_up:hover {
    opacity: 0.7;
}

.arrow_2 {
    transform: rotate(180deg);
    border-radius: 4px;
}

.arrow_3 {
    border-radius: 50%;
}

.arrow_4 {
    border-radius: 4px;
}

.arrow_5 {
    border-radius: 50%;
}

.triangle_icon {
    position: absolute;
    width: 13px;
    height: 11px;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 100%, 50% 0%, 100% 100%);
}

.arrow_6 {
    border-radius: 4px;
}

.arrow_7 {
    border-radius: 50%;
    transform: rotate(0deg);
}

.arrow_7 svg {
    transform: translate(-50%, -50%);
}

.arrow_8 {
    border-radius: 6px;
    transform: rotate(0deg);
}

.arrow_8 svg {
    transform: translate(-50%, -50%);
}

.arrow_9 {
    border-radius: 50%;
    transform: rotate(0deg);
}

.arrow_9 svg {
    transform: translate(-50%, -50%);
}

.arrow_10 {
    border-radius: 50%;
    transform: rotate(-90deg);
}

.arrow_10 svg {
    transform: translate(-50%, -50%);
}

.arrow_11 {
    border-radius: 50%;
    transform: rotate(0deg);
}

.arrow_11 svg {
    transform: translate(-50%, -50%);
}

.mobile_banner {
    position: fixed;
    bottom: -100%;
    width: 100%;
    z-index: 100;
    background: var(--gray);
    transition: 0.5s;
    display: none;
}

.mobile_banner_inner {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

.mb_img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
}

.mb_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb_text {
    flex: 1;
}

.mb_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

a.mb_btn {
    padding: 14px 40px;
    border-radius: 6px;
}

a.mb_btn:hover {
    box-shadow: var(--hover-darken);
}
/**** END FOOTER ***/

.null_class{
	display: none;
}

/*** MEDIA ***/
@media(max-width: 1500px){
	.burger{
		display: block;
	}
	.ul_main_menu{
		display: none;
	}
}

@media(max-width: 800px){
	.header_row.header_v1_nav {
		flex-wrap: wrap;
		height: auto;
		min-height: 56px;
		padding: 10px 10px 0;
		align-items: center;
	}
	.header_v1_logo {
		order: 1;
		margin-right: auto;
		min-height: 40px;
	}
	.header_v1_logo .header_logo_img img {
		max-height: 40px;
	}
	.header_v1_divider {
		display: none;
	}
	.ul_main_menu.header_v1_links {
		order: 4;
	}
	.language_wrap {
		order: 2;
		margin-left: 8px;
		flex: 0 0 auto;
	}
	.language_wrap.lang-pill {
		margin-left: 8px;
	}
	.language_wrap.lang-pill .lang-pill-btn {
		padding: 5px 10px;
		font-size: 12px;
	}
	.burger {
		order: 3;
		margin-left: 4px;
		padding-left: 4px;
	}
	.header_btns_wrap {
		order: 5;
		width: 100%;
		flex-basis: 100%;
		display: flex;
		gap: 8px;
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px solid rgba(255,255,255,0.08);
	}
	.header_btns_wrap .head_btn {
		flex: 1;
		margin: 0;
		justify-content: center;
		text-align: center;
		padding: 14px 18px;
		font-size: 15px;
		font-weight: 600;
	}
	
	a.header_logo {
	    order: 1;
	}
	
	a.head_btn {
	    margin: 0;
	}
	
	h1 {
	    font-size: 36px;
	}
	
	.head_content_img {
	    margin: auto;
	}
	
	a.sports_btn {
	    width: calc(33.333% - 10px);
	}
	
	.alignright, .alignleft {
	    float: none;
	    display: block;
	    margin: 0px auto 20px;
	}
	
	.faq_wrap {
	    width: 100%;
	}
	
	.slot_item {
	    flex: 0 0 145px;
	}
	
	.promo_code_wrap {
	    flex-wrap: wrap;
	}
	
	.promo_actions {
	    width: 100%;
	    margin: 20px 0 0;
	}
	
	.the_promo_code span {
	    flex: 1;
	}
	
	.bonus_item {
	    width: calc(33.3333% - 20px);
	}
	
	.txt_img_image {
	    width: 100%;
	    margin: 20px 0 0;
	    order: 2 !important;!i;!;
	}
	
	.footer_selector {
	    position: relative;
	    width: 245px;
	    margin: 0px 0 0;
	}

	.mobile_banner{
		display: block;
	}

	.section_wrap.slots_section_wrap {
	    padding-bottom: 10px;
	}
	
	.mobile_menu .menu-item-has-children.open ul.sub-menu {
	    position: relative;
	}
	
	.ul_mob_menu > li {
	    padding-left: 15px;
	    padding-right: 15px;
	}
	
	.ul_mob_nemu .menu-item-has-children:hover ul.sub-menu {
	    display: none;
	}
	
	.null_class{
		display: block;
		opacity: 0;
		pointer-events: none;
		width: 100px;
	}
	
	.mobile_menu {
		height: calc(100vh - 123px);
		padding-bottom: 50px;
	}
}

@media(max-width: 600px){
	.header_v1_logo .header_logo_img img {
		max-height: 36px;
	}
	
	.header_btns_wrap .head_btn {
		padding: 16px 14px;
		font-size: 15px;
	}
	
	.header_row {
	    margin: 0 -10px;
	}
	
	
	h1 {
	    font-size: 28px;
	}
	
	section.application {
	    padding: 28px 0 36px;
	}

	.application_top {
	    flex-direction: column;
	    align-items: center;
	    gap: 20px;
	    text-align: center;
	}

	.application_img {
	    flex: none;
	    max-width: 200px;
	    width: 100%;
	}

	.application_params {
	    flex-wrap: wrap;
	    margin-top: 24px;
	}

	.app_any_param {
	    flex: 1 1 50%;
	    min-width: 50%;
	    border-bottom: 1px solid var(--gray);
	    padding: 16px 12px;
	}

	.app_any_param:nth-child(odd) {
	    border-right: 1px solid var(--gray);
	}

	.app_any_param:nth-last-child(-n+2) {
	    border-bottom: none;
	}

	.app_any_param:last-child {
	    border-right: none;
	}

	a.app_any_btn {
	    padding: 14px 16px;
	    font-size: 14px;
	}
	
	.head_content_row {
	    flex-direction: column;
	}
	
	.head_content_wrap {
	    margin: 0 10px;
	    width: 100%;
	}
	
	.head_content_offer_label {
	    font-size: 0.65rem;
	}
	
	.head_content_params {
	    flex-direction: column;
	    align-items: stretch;
	    gap: 16px;
	}
	
	.head_content_buttons {
	    flex-wrap: wrap;
	    flex-direction: column;
	}
	
	a.bonus_text_any_btn {
	    width: 100%;
	    margin: 0;
	    justify-content: center;
	}
	
	a.bonus_text_any_btn.head_cta_secondary {
	    margin-top: 8px;
	}
	
	.head_content_img {
	    width: 100%;
	    margin-left: 0;
	    margin-top: 16px;
	}
	
	a.sports_all_btn {
	    margin: 0;
	    position: absolute;
	    bottom: 0;
	    left: 10px;
	}
	
	a.sports_btn {
	    width: calc(50% - 10px);
	}
	
	.slider_wrap {
	    padding: 20px 20px 40px;
	}
	
	.wp_editor li {
	    padding-left: 40px;
	}
	
	.wp_editor ol li:before {
	    left: 0;
	}
	
	.wp_editor ul li:before {
	    left: 8px;
	}

	.slot_item {
	    flex: 0 0 130px;
	}
	
	.slot_img {
	    height: 180px;
	}
	
	.how_to_item_img {
	    margin: 10px 0 0;
	    flex: 100%;
	}
	
	.how_to_item_text {
	    flex: 100%;
	}
	
	.how_to_arrow {
	    left: 50%;
	    transform: translateX(-50%);
	}
	
	.arrow_up {
	    bottom: 100px;
	}

	p.logged-in-as {
	    width: 100%;
	}
	
	p.comment-form-comment, p.form-submit {
	    position: relative;
	    width: 100%;
	    top: 0;
	    left: 0;
	}
	
	form#commentform {
	    height: auto;
	}
	
	.promo_actions {
	    flex-wrap: wrap;
	}
	
	a.promo_btn {
	    margin: 10px 0 0;
	    width: 100%;
	    display: block;
	}
	
	.bonus_item {
	    width: 100%;
	}
	
	.bonus_img {
	    height: 250px;
	}
	
	.pros_cons_wrap {
	    flex: 100%;
	    margin-bottom: 20px;
	}
	
	.txt_img_image {
	    margin: 20px 10px 0;
	}
	
	.footer_social {
	    margin: 20px auto 0;
	}
	
	.ul_footer_menu {
	    margin: 20px auto 0;
	}

	a.mb_btn {
	    padding: 10px 20px;
	}
	
	.mb_text {
	    font-size: 12px;
	}
	
	.mb_title {
	    font-size: 16px;
	}
	
	section.sports {
	    position: relative;
	    padding-bottom: 70px;
	}
	
	h2, .h2 {
	    font-size: 24px;
	}
	
	h3, .h3 {
	    font-size: 22px;
	}
	
	section.slots {
	    position: relative;
	}
	
	section.slots a.sports_all_btn {
	    position: static;
	}

	.section_wrap.slots_section_wrap {
	    padding-bottom: 10px;
	}

	.slots_header {
	    flex-wrap: nowrap;
	    justify-content: space-between;
	    align-items: center;
	    gap: 10px;
	}

	.slots_header_right {
	    margin-left: auto;
	    flex-shrink: 0;
	}

	.slots_nav {
	    display: none;
	}

	.slots_track {
	    margin-right: -10px;
	    padding-right: 10px;
	}

	.slot_item {
	    flex: 0 0 140px;
	}

	.slot_img {
	    height: 160px;
	}

	.fancybox-toolbar {
	    width: 40px;
	}
	
	.section_wrap {
	    padding: 10px 10px 1px;
	}
	
	.slot_title {
	    font-size: 11px;
	}
	
	a.footer_btn.android_btn {
	    margin-bottom: 20px;
	}
	
	.footer_mark {
	    width: 100%;
	    text-align: center;
	    margin-bottom: 10px;
	}
	
	.copywrite_text {
	    margin-bottom: 10px;
	}
	
	.security {
	    width: 100%;
	    justify-content: center;
	}
}
