@charset "UTF-8";
@font-face {
    font-family: AlbertSans;
    font-display: swap;
    src: url(../fonts/AlbertSans-Black.woff2) format("woff2"), url(../fonts/AlbertSans-Black.woff) format("woff");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: RobotoFlex;
    font-display: swap;
    src: url(../fonts/RobotoFlex-Regular.woff2) format("woff2"), url(../fonts/RobotoFlex-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

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

:active, :focus {
    outline: 0
}

a:active, a:focus {
    outline: 0
}

aside, footer, header, nav {
    display: block
}

body, html {
    min-height: 100%;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button, input, textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a, a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
    color: var(--Headings, #343434);
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: var(--width-container);
    margin: 0 auto;
    padding: var(--inner-offsets, 32px)
}


h1, h2, h3, h4, h5, h6 {
    margin-bottom: 24px
}

h1 {
    font-size: 1.8666666667rem;
    font-style: normal;
    font-weight: 900;
    line-height: 2.4rem
}

h2 {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 900;
    line-height: 2.4rem
}

h3 {
    font-size: 1.4666666667rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.1333333333rem
}

p:not([class]) {
    margin-top: 20px;
    color: var(--Text, #cfcfcf)
}

a {
    color: #ff6b6b;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: opacity
}

p:not([class]) a:active {
    opacity: .6
}

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

ol.wp-block-list, ul.wp-block-list {
    margin-top: 20px;
    list-style: none
}

ol.wp-block-list li, ul.wp-block-list li {
    position: relative;
    padding-block: 4px
}

ol.wp-block-list li::before, ul.wp-block-list li::before {
    position: absolute;
    left: 0
}

ul.wp-block-list li {
    padding-left: 20px
}

ul.wp-block-list li::before {
    content: "";
    top: 11px;
    left: 5px;
    width: 7px;
    height: 7px;
    background-color: #fff;
    transform: rotate(45deg)
}

ol.wp-block-list {
    counter-reset: custom-counter
}

ol.wp-block-list li {
    padding-left: 15px;
    counter-increment: custom-counter
}

ol.wp-block-list li::before {
    content: counter(custom-counter) ".";
    font-family: AlbertSans;
    top: 2px;
    color: var(--Primary, #07ca7c);
    font-weight: 900
}

.wp-block-table {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.wp-block-table::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none
}

.wp-block-table table {
    min-width: 500px
}

.scrolling table {
    user-select: none
}

* + .wp-block-table {
    margin-top: 20px;
}

.wp-block-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    table-layout: auto;
    border-spacing: 0;
    border-radius: var(--Corners, 8px);
    border: 1px solid rgba(0, 0, 0, .05);
    overflow: hidden;
}

.page-main table td, .page-main table th {
    padding: 12px;
    text-align: center;
    color: var(--Text, #4d4d4d);
	background: #161626
}

table th {
    color: var(--Headings, #343434);
    background: #f3edfa;
}

table :is(th,td):not(:last-child) {
    border-right: 1px solid rgb(255 249 249 / 12%)
}

table tr :is(td,th) {
    border-bottom: 1px solid rgb(255 249 249 / 12%)
}

table tbody tr:last-child * {
    border-bottom: 0
}

.no-scroll {
    overflow: hidden
}

body, html {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--BG, #fafafa);
    color: var(--Text, #484848);
    font-family: "Roboto Flex", sans-serif;
    overflow-x: hidden
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

:root {
    --inner-offsets: 32px;
    --offsets: 26px;
    --width-container: 1280px;
    --desktop-width: calc(var(--width-container) + var(--offsets) * 2);
    --BG: #252536f2;
    --Headings: #fff;
    --Text: #fff;
    --Secondary: #fff;
    --Primary: #fff;
    --CONTAINER: #252536f2;
    --Stroke: #f3edfa
}

.header {
    --height: 81px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 auto;
    width: 100%;
    max-width: var(--width-container);
    min-height: var(--height);
    padding: 12px 20px;
    border-top: 0;
    background: var(--BG, #fafafa)
}

.header a.header__logo {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: opacity
}

.header a.header__logo:active {
    opacity: .6
}

.header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.header__logo img {
    width: auto;
    max-height: 44px;
    object-fit: contain
}

.header__lang {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
    width: 72px;
    height: 32px;
    min-width: max-content;
    padding: 4px;
    margin-left: 8px;
    border-radius: var(--Item-Corners, 4px);
    background: var(--Stroke, #f3edfa);
    cursor: pointer;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background
}

.header__lang.active::after {
    transform: rotate(-180deg)
}

.header__lang::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M9.293 12.793 5.707 9.207c-.63-.63-.184-1.707.707-1.707h7.172c.89 0 1.337 1.077.707 1.707l-3.586 3.586a1 1 0 0 1-1.414 0" fill="%236C7E8A"/></svg>');
    width: 20px;
    height: 20px;
    display: block;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: transform
}

.header__lang.active .header__lang-list {
    display: block
}

.header__lang img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: none;
    margin-right: 4px
}

.header__lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-height: 300px;
    overflow: hidden auto;
    border-radius: 4px;
    background: var(--CONTAINER, #fff);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .12);
    padding: 12px
}

@supports not selector(::-webkit-scrollbar) {
    .header__lang-list {
        scrollbar-width: thin;
        scrollbar-color: var(--Stroke, #f3edfa) transparent
    }
}

.header__lang-list::-webkit-scrollbar {
    width: 4px
}

.header__lang-list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--Stroke, #f3edfa);
    border-radius: 9px;
    border: 4px solid transparent
}

.header__lang-list::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 9px
}

.header__lang-item {
    display: flex;
    align-items: center;
    color: var(--Text, #484848);
    padding: var(--Item-spacing, 8px);
    border-radius: var(--Item-Corners, 8px);
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background
}

.header__lang-item img {
    margin-right: 8px
}

.header__lang-item.current {
    background: #5b6479;
    pointer-events: none
}

.header__lang-item:not(.current):active {
    background: var(--Stroke, #f3edfa)
}

.header__nav {
    z-index: 5;
    flex: 1
}

.header__burger {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    order: 20
}

.header__burger::after, .header__burger::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.header__burger::after {
    content: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 14L29 14" stroke="%236C7E8A" stroke-width="2" stroke-linecap="round"/><path d="M11 20L29 20" stroke="%236C7E8A" stroke-width="2" stroke-linecap="round"/><path d="M11 26L29 26" stroke="%236C7E8A" stroke-width="2" stroke-linecap="round"/></svg>');
    width: 40px;
    height: 40px
}

.header__burger::before {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    pointer-events: none;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background
}

.header__burger:active::before {
    background: var(--Stroke, #f3edfa)
}

.header .header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap
}

.header .header-menu a, .header .header-menu span {
    display: block;
    color: var(--Headings, #fff);
    font-size: .9333333333rem;
    line-height: 1.3333333333rem;
    font-weight: 500;
    transition-property: background, color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background, color
}

.header .header-menu .item {
    position: relative;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background
}

.header .header-menu .item.parent {
    display: flex;
    flex-direction: row;
    align-items: center
}

.header .header-menu .item.parent::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M9.293 12.793 5.707 9.207c-.63-.63-.184-1.707.707-1.707h7.172c.89 0 1.337 1.077.707 1.707l-3.586 3.586a1 1 0 0 1-1.414 0" fill="%236C7E8A"/></svg>');
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: transform
}

.header .header-menu .submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%
}

@supports not selector(::-webkit-scrollbar) {
    .header .header-menu .submenu {
        scrollbar-width: thin;
        scrollbar-color: var(--Stroke, #f3edfa) transparent
    }
}

.header .header-menu .submenu::-webkit-scrollbar {
    width: 4px
}

.header .header-menu .submenu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--Stroke, #f3edfa);
    border-radius: 9px;
    border: 4px solid transparent
}

.header .header-menu .submenu::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 9px
}

.header .header-menu .submenu a, .header .header-menu .submenu span {
    width: 100%;
    padding: 8px 12px;
    color: var(--Text, #cfcfcf)
}

.header.menu-active .header__burger::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M1 15 15 1M1 1l14 14" stroke="%236C7E8A" stroke-width="2" stroke-linecap="round"/></svg>');
    width: 16px;
    height: 16px
}

.header__btns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto
}

.header__btns .btn {
    min-width: 160px;
    padding-block: 4px;
	border-radius: 50px
}

.footer {
    width: 100%;
    max-width: var(--width-container);
    margin: 0 auto;
    padding: var(--inner-offsets, 32px);
    position: relative;
    display: grid;
    place-items: flex-start;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px 60px
}



.footer a.footer__logo {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: opacity
}

.footer a.footer__logo:active {
    opacity: .6
}

.footer__logos, .footer__main, .footer__nav {
    width: 100%
}

.footer__logo {
    position: relative
}

.footer__logo img {
    max-width: fit-content;
    max-height: 94px;
    object-fit: contain;
    margin-right: auto;
    width: auto;
}

.footer__nav-list {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 8px 60px;
    width: 100%
}

.footer__nav-list a, .footer__nav-list li {
    width: 100%
}

.footer__nav-list a {
    display: block;
    color: var(--Secondary, #2c97d9);
    padding-block: 4px;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: color
}

.footer__nav-list a:active {
    color: var(--Text, #484848)
}

.footer__logos {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(max-content, 68px));
    grid-template-rows:repeat(auto-fill, 40px);
    justify-content: center;
    gap: 12px
}

.footer__logos li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.footer__logos img, .footer__logos svg {
    width: 100%;
    height: auto;
    max-width: 68px;
    max-height: 40px;
    object-fit: contain
}

.footer__copyright {
    grid-column: 1/-1;
    text-align: center;
    color: var(--Text, #484848);
    place-self: center
}

.section-hero .text-image {
    display: grid;
    grid-template-rows:max-content 1fr;
    grid-template-columns:1fr;
    column-gap: 24px
}

.section-hero img {
    width: 100%
}

.section-hero h1 {
    height: max-content;
    margin: 0
}

.section-hero p:not([class]) {
    margin-top: 16px
}

.bonus {
    border-radius: 4px;
    background: var(--CONTAINER, #fff);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .12);
    padding: 16px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.bonus p:not([class]) {
    margin: 0;
    font-size: 1.0666666667rem;
    line-height: 1.6rem;
    font-weight: 800;
    text-align: center
}

.bonus .btn {
    margin-inline: auto;
    min-width: 240px
}

.bonus .btn::after, .bonus .btn::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="24" viewBox="0 0 32 24" fill="none"><path d="m26.52 11.136-9.016-5.259A1 1 0 0 0 16 6.741v10.518a1 1 0 0 0 1.504.864l9.015-5.26a1 1 0 0 0 0-1.727" fill="%236C7E8A"/><path fill="%236C7E8A" d="M4 11h12v2H4z"/></svg>');
    position: absolute;
    display: block;
    width: 32px;
    height: 24px;
    pointer-events: none
}

.bonus .btn::before {
    left: -8px;
    transform: translateX(-100%)
}

.bonus .btn::after {
    right: -8px;
    transform: scale(-1) translateX(-100%)
}

.section-hero .text-image > * {
    /*grid-column: 1/2*/
}


.faq {
    position: relative;
    border-radius: 4px;
    background: var(--CONTAINER, #fff);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .12);
    margin-top: 8px;
}

.faq .faq__title + p {
    margin-top: -12px
}


.faq {
    padding: 20px
}

.faq .faq__answer {
    display: none;
}

.faq.active .faq__answer {
    display: block;
}

.faq.active .faq__title::after {
    transform: rotate(-180deg);
    opacity: 0.6;
}

.faq .faq__title {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 0 40px 0 0;
    color: var(--Headings, #343434);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6rem;
    cursor: pointer;
    margin: 0;
    list-style: none
}

.faq .faq__title::before {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 4px;
    background: var(--Stroke, #f3edfa);
    pointer-events: none
}

.faq__title::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M9.29289 12.2929L5.70711 8.70711C5.07714 8.07714 5.52331 7 6.41421 7H13.5858C14.4767 7 14.9229 8.07714 14.2929 8.70711L10.7071 12.2929C10.3166 12.6834 9.68342 12.6834 9.29289 12.2929Z" fill="%23343434"/></svg>');
    display: block;
    width: 20px;
    height: 20px;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: transform;
    right: 4px;
    top: 4px;
    position: absolute;
}

.breadcrumbs {
    width: 100%;
    margin: 0 auto;
    max-width: var(--width-container);
    padding: 4px 20px;
    border-top: 0
}

.breadcrumbs__list {
    width: max-content;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px
}

.breadcrumbs li {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.breadcrumbs li:not(:last-child) {
    padding-right: 28px
}

.breadcrumbs li:not(:last-child)::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="m12.293 10.707-3.586 3.586c-.63.63-1.707.184-1.707-.707V6.414c0-.89 1.077-1.337 1.707-.707l3.586 3.586a1 1 0 0 1 0 1.414" fill="%236C7E8A"/></svg>');
    display: block;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px
}

.breadcrumbs li:last-child a, .breadcrumbs li:last-child span {
    color: var(--Text, #484848)
}

.breadcrumbs a, .breadcrumbs span {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-block: 4px;
    color: var(--Secondary, #2c97d9);
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: color
}

.breadcrumbs a:focus {
    color: var(--Text, #484848)
}

.btn {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    width: max-content;
    max-width: 100%;
    background: 0 0;
    transition-property: background, box-shadow, color, border-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background, box-shadow, color, border-color;
    cursor: pointer;
    color: var(--BG, #fafafa);
    text-align: center;
    font-size: .9333333333rem;
    font-weight: 800;
    line-height: 1.3333333333rem;
    letter-spacing: -.42px;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--Primary, #07ca7c);
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .12);
    transition-property: background, filter;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background, filter
}

.btn svg {
    max-width: 33px;
    max-height: 33px;
    fill: #fff
}

.btn.disabled, .btn[disabled] {
    filter: grayscale(1);
    pointer-events: none
}

.btn--primary {
    background: transparent;
	color: #fff;
	text-decoration: underline;
}

.btn--primary:active {
    background: #fe284a
}

.btn--secondary, ._button--second {
    background: #fe284a;
	color: #fff;
	box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
}

.header__btns .btn--primary:first-child, .slots__buttons .btn:first-child, .slots__link {
    border: 1px solid #fff;
	border-radius: 25px
}

.content-img {
    display: grid;
    column-gap: 20px;
    grid-auto-columns: 1fr
}

.content-img > * {
    margin: 0
}

.content-img > .wp-block-list, .content-img > :not([class]) {
    margin: 0
}

.content-img img {
    width: 100%;
    max-width: 100%
}

.content-buttons.align-center {
    justify-content: center;
}

.content-buttons.align-right {
    display: flex;
    justify-content: flex-end;
}

* + .toc {
    margin-top: 20px;
}

.toc {
    position: relative;
    width: 100%;
    /*margin: var(--inner-offsets, 32px) auto;*/
    max-width: calc(var(--width-container) - var(--inner-offsets, 32px) * 2);
    display: grid;
    border-radius: 4px;
    background: var(--CONTAINER, #fff);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .12)
}

.toc::before {
    /*content: "";*/
    /*position: absolute;*/
    /*top: calc(var(--inner-offsets, 32px) * -1);*/
    /*left: calc(var(--inner-offsets, 32px) * -1);*/
    /*width: calc(100% + var(--inner-offsets, 32px) * 2);*/
    /*height: calc(100% + var(--inner-offsets, 32px) * 2);*/
    /*border: 1px solid var(--Stroke, #f3edfa);*/
    /*border-top: 0;*/
    /*pointer-events: none*/
}

.toc.active .toc__title::after {
    transform: rotate(-180deg)
}

.toc.active .toc__list, .toc.active ol {
    display: flex;
    margin-top: 0;
    list-style: none;
}

.toc.active ol li {
    padding: 0;
}

.toc.active ol li::before {
    content: none;
}

.toc__title {
    position: relative;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6rem;
    color: var(--Headings, #343434);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 20px;
    cursor: pointer
}

.toc__title::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M9.293 12.793 5.707 9.207c-.63-.63-.184-1.707.707-1.707h7.172c.89 0 1.337 1.077.707 1.707l-3.586 3.586a1 1 0 0 1-1.414 0" fill="%236C7E8A"/></svg>');
    display: block;
    width: 20px;
    height: 20px;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: transform
}

.toc__title::before {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: transparent;
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background-color
}

.toc__list, .toc ol {
    grid-column: 1/-1;
    padding-inline: 20px;
    padding-bottom: 20px;
    display: none
}

.toc__list, .toc ol {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap
}

.toc__item {
    position: relative;
    display: flex;
    flex-direction: row
}

.toc__item a, .toc a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    border-radius: var(--Item-Corners, 8px);
    background: rgba(0, 0, 0, .05);
    color: var(--Text, #cfcfcf);
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background
}

.toc__item a:active, .toc a:active {
    background: rgba(0, 0, 0, .15)
}

.toc__item a::after, .toc a::after {
    content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m9 9 8 8m-5 0h5v-5" stroke="%236C7E8A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 24px;
    height: 24px;
    display: block
}

.text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.text-image__content p:first-child {
    margin-top: 0;
}

.text-image.reversed > .get-image {
    grid-column: 1;
    grid-row: 1;
}

.align-center {
	display: flex;
	justify-content: center;
}

.content-buttons.align-center {
	margin-top: 16px;
}

.scroll-to-top {
    width: 32px;
    height: 32px;
    position: fixed;
    bottom: 100px;
    right: 40px;
    cursor: pointer;
    z-index: 90;
    box-shadow: 0px 4px 32px -4px rgba(16, 16, 16, 0.0784313725);
    background: var(--w-to-subtext);
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.scroll-to-top__button {
    border-radius: var(--Corners, 12px);
    background: #f3edfa;
    padding: 12px;
    font-size: 36px;
    line-height: 36px;
    color: #000;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .12);
}

.social, .external-links {
    display: flex;
    gap: 20px;
    align-items: center;
	justify-content: center;
    position: relative;
    place-self: stretch;

}

.external-links {
	margin-bottom: 20px;
}

.social img {
    max-width: 40px;
}

.external-links img {
	 max-width: 140px;
}

.dmca-badge__image {
    margin-top: 20px;
    max-width: 100px;
}

.content-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.header__lang.active .header__lang-list {
    display: block
}

.header__lang-list-link::before {
    content: '';
    width: 80px;
    height: 28px;
    position: absolute;
}

.header__lang-list-item {
    padding: 8px;
    border-radius: var(--Item-Corners, 8px);
}

.header__lang-list-item:not(.current):hover {
    background: var(--Stroke, #f3edfa);
}

.page-404__title {
    font-size: 85px;
    text-align: center;
    line-height: 85px;
}

.page-404__subtitle {
    text-align: center;
    font-size: 24px;
}

.page-404__link {
    margin: auto;
}

.text-image.reversed > img {
    grid-column: 1;
    grid-row: 1;
}

@media (max-width: 1023px) {
    .text-image {
        grid-template-columns: 1fr;
        display: grid;
    }

    .text-image.reversed > .text-image__content {
        grid-column: 1;
        grid-row: 1;
    }

    .text-image__content {
        display: grid;
    }

    .text-image.reversed > img {
        grid-column: 1;
        grid-row: 2;
    }

    .section-hero .text-image {
        display: contents
    }

    .section-hero .text-image__content {
        display: contents;
    }

    .section-hero .wp-block-heading {
        margin-bottom: 0;
    }

    .wrapper.section-hero {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .section-hero > p {
        margin-top: 0;
    }


}

@media (min-width: 768px) {
    .section-hero .text-image {
        grid-template-columns:1.365fr 1fr
    }

    .section-hero .bonus {
        grid-column: 1/-1
    }

    .section-hero img {
        grid-column: 2/3;
        grid-row: 1/3
    }

    .content-img:has(img:not(:first-child):not(:last-child)) {
        grid-template-columns:repeat(2, 1fr)
    }

    .content-img .wp-block-table {
        overflow: unset
    }

    .content-img .wp-block-table table {
        min-width: unset
    }

    .content-img > * {
        grid-column: 1/2
    }

    .content-img > *, .content-img > :not([class]) {
        margin: 0;
        margin-top: 20px
    }

    .content-img > :first-child, .content-img > :not([class]):first-child {
        margin-top: 0
    }

    .content-img h1, .content-img h2, .content-img h3 {
        grid-column: 1/3
    }

    .content-img img {
        grid-column: 2/3;
        grid-row: 2/50
    }

    .content-img img:first-child:last-child {
        grid-column: unset;
        grid-row: unset;
        margin: 0
    }

    .content-img.reverse:has(img) > * {
        grid-column: 2/3
    }

    .content-img.reverse:has(img) img {
        grid-column: 1/2
    }
}

@media (min-width: 1240px) {
    .header__lang {
        order: 100
    }

    .header__burger {
        display: none
    }

    .header .header-menu > .item.parent, .header .header-menu > .item:not(.parent) > :is(a,span) {
        padding: 12px 4px
    }

    .header .header-menu > .item.parent::before {
        content: "";
        width: 100%;
        height: 16px;
        position: absolute;
        top: calc(100% - 4px);
        left: 0;
        display: none
    }

    .header .header-menu > .item:nth-child(1) {
        z-index: 49
    }

    .header .header-menu > .item:nth-child(2) {
        z-index: 48
    }

    .header .header-menu > .item:nth-child(3) {
        z-index: 47
    }

    .header .header-menu > .item:nth-child(4) {
        z-index: 46
    }

    .header .header-menu > .item:nth-child(5) {
        z-index: 45
    }

    .header .header-menu > .item:nth-child(6) {
        z-index: 44
    }

    .header .header-menu > .item:nth-child(7) {
        z-index: 43
    }

    .header .header-menu > .item:nth-child(8) {
        z-index: 42
    }

    .header .header-menu > .item:nth-child(9) {
        z-index: 41
    }

    .header .header-menu > .item:nth-child(10) {
        z-index: 40
    }

    .header .header-menu > .item:nth-child(11) {
        z-index: 39
    }

    .header .header-menu > .item:nth-child(12) {
        z-index: 38
    }

    .header .header-menu > .item:nth-child(13) {
        z-index: 37
    }

    .header .header-menu > .item:nth-child(14) {
        z-index: 36
    }

    .header .header-menu > .item:nth-child(15) {
        z-index: 35
    }

    .header .header-menu > .item:nth-child(16) {
        z-index: 34
    }

    .header .header-menu > .item:nth-child(17) {
        z-index: 33
    }

    .header .header-menu > .item:nth-child(18) {
        z-index: 32
    }

    .header .header-menu > .item:nth-child(19) {
        z-index: 31
    }

    .header .header-menu > .item:nth-child(20) {
        z-index: 30
    }

    .header .header-menu > .item:nth-child(21) {
        z-index: 29
    }

    .header .header-menu > .item:nth-child(22) {
        z-index: 28
    }

    .header .header-menu > .item:nth-child(23) {
        z-index: 27
    }

    .header .header-menu > .item:nth-child(24) {
        z-index: 26
    }

    .header .header-menu > .item:nth-child(25) {
        z-index: 25
    }

    .header .header-menu > .item:nth-child(26) {
        z-index: 24
    }

    .header .header-menu > .item:nth-child(27) {
        z-index: 23
    }

    .header .header-menu > .item:nth-child(28) {
        z-index: 22
    }

    .header .header-menu > .item:nth-child(29) {
        z-index: 21
    }

    .header .header-menu > .item:nth-child(30) {
        z-index: 20
    }

    .header .header-menu > .item:nth-child(31) {
        z-index: 19
    }

    .header .header-menu > .item:nth-child(32) {
        z-index: 18
    }

    .header .header-menu > .item:nth-child(33) {
        z-index: 17
    }

    .header .header-menu > .item:nth-child(34) {
        z-index: 16
    }

    .header .header-menu > .item:nth-child(35) {
        z-index: 15
    }

    .header .header-menu > .item:nth-child(36) {
        z-index: 14
    }

    .header .header-menu > .item:nth-child(37) {
        z-index: 13
    }

    .header .header-menu > .item:nth-child(38) {
        z-index: 12
    }

    .header .header-menu > .item:nth-child(39) {
        z-index: 11
    }

    .header .header-menu > .item:nth-child(40) {
        z-index: 10
    }

    .header .header-menu > .item:nth-child(41) {
        z-index: 9
    }

    .header .header-menu > .item:nth-child(42) {
        z-index: 8
    }

    .header .header-menu > .item:nth-child(43) {
        z-index: 7
    }

    .header .header-menu > .item:nth-child(44) {
        z-index: 6
    }

    .header .header-menu > .item:nth-child(45) {
        z-index: 5
    }

    .header .header-menu > .item:nth-child(46) {
        z-index: 4
    }

    .header .header-menu > .item:nth-child(47) {
        z-index: 3
    }

    .header .header-menu > .item:nth-child(48) {
        z-index: 2
    }

    .header .header-menu > .item:nth-child(49) {
        z-index: 1
    }

    .header .header-menu > .item:nth-child(50) {
        z-index: 0
    }

    .header .header-menu .item.parent, .header .header-menu .item:not(.parent) > :is(a,span) {
        border-radius: var(--Item-Corners, 8px)
    }


    .header .header-menu .submenu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: max-content;
        max-width: 210px;
        max-height: 300px;
        overflow-y: auto;
        padding: 8px 12px;
        display: none;
        border-radius: 4px;
        background: var(--CONTAINER, #fff);
        box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .12)
    }
}

@media (min-width: 1240px) and (hover: hover) {
    .header .header-menu > .item.parent:hover::after {
        transform: rotate(-180deg)
    }

    .header .header-menu > .item.parent:hover::before {
        display: block
    }

    .header .header-menu > .item.parent:hover > .submenu {
        display: flex
    }
}

@media (max-width: 1332px) {
    .wrapper {
        margin-inline: var(--offsets, 26px);
        width: unset
    }

    .header {
        margin-inline: var(--offsets, 26px);
		justify-content: space-between;
        width: unset
    }

    .footer {
        margin-inline: var(--offsets, 26px);
        width: unset
    }

    .breadcrumbs {
        margin-inline: var(--offsets, 26px);
        width: unset
    }

    .toc {
        /*margin-inline: calc(var(--offsets, 26px) + var(--inner-offsets, 32px));*/
        width: unset
    }
}

@media (max-width: 1239.9px) {
    .header .header-menu .submenu span, .header .header-menu span, .header__nav__item.item.parent:has(span) > .header__nav__link {
        color: #2C97D9;
    }

    .header__nav {
        margin-left: 0;
        position: absolute;
        top: calc(100% + 1px);
        left: calc(var(--offsets, 26px) * -1 - 1px);
        width: 100vw;
        height: calc(100svh - var(--height));
        padding-inline: var(--offsets, 26px);
        padding-bottom: var(--offsets, 26px);
        overflow-y: auto;
        scrollbar-gutter: stable;
        align-items: flex-start;
        justify-content: flex-start;
        background: var(--BG, #fafafa)
    }

    @supports not selector(::-webkit-scrollbar) {
        .header__nav {
            scrollbar-width: thin;
            scrollbar-color: var(--Stroke, #f3edfa) transparent
        }
    }.header__nav::-webkit-scrollbar {
         width: 4px
     }

    .header__nav::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: var(--Stroke, #f3edfa);
        border-radius: 9px;
        border: 4px solid transparent
    }

    .header__nav::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 9px
    }

    @supports (user-select:none) and (not (-moz-user-select:none)) {
        .header__nav {
            padding-inline: var(--offsets, 26px) calc(var(--offsets, 26px) - 4px)
        }
    }.header .header-menu {
         flex-direction: column;
         align-items: stretch;
         gap: 0
     }

    .header .header-menu .item.parent {
        flex-wrap: wrap;
        padding-inline: 20px
    }

    .header .header-menu .item.parent::after {
        order: 2;
        margin-left: auto
    }

    .header .header-menu .item.parent.active {
        padding-bottom: 12px
    }

    .header .header-menu .item.parent.active::after {
        transform: rotate(-180deg)
    }

    .header .header-menu .item.parent.active > .submenu {
        display: flex
    }

   

    .header .header-menu > .item > :is(a,span) {
        padding-block: 12px
    }

    .header .header-menu > .item:not(.parent) > :is(a,span) {
        width: 100%;
        padding-inline: 20px
    }

    .header .header-menu .submenu {
        order: 3;
        position: relative;
        top: 0;
        left: 0;
        margin-top: -4px;
        display: none
    }

    .header:not(.menu-active) .header__nav {
        display: none
    }
}

@media (max-width: 767.9px) {
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 20px;
    }

    .footer__logo img {
        max-width: max-content;
        object-fit: contain;
        max-height: 44px;
    }

    .header {
        --height: 100px;
        flex-wrap: wrap
    }

    .header__lang {
        margin-right: auto
    }

    .header__burger {
        order: unset
    }

    .header__btns {
        width: 100%;
        margin-right: 0
    }

    .header__btns .btn {
        min-width: unset;
        flex: 1
    }

    .footer {
        grid-template-columns:1fr
    }

    .section-hero .text-image {
        gap: 24px
    }

    .section-hero h1 {
        order: -2
    }

    .section-hero .bonus {
        order: -1
    }

    .section-hero > * {
        margin: 0
    }

    .section-hero p:not([class]) {
        margin: 0
    }

    .content-img {
        row-gap: 24px
    }

    .content-img .btn {
        min-width: unset;
        width: 100%
    }

    .content-img.reverse img {
        order: -1
    }

    .content-buttons .btn {
        width: 100%;
    }

    .faq__answer p {
        margin-top: 8px
    }
}

@media (max-width: 575.9px) {
    :root {
        --inner-offsets: 20px;
        --offsets: 8px
    }

    .header {
        gap: 12px;
        padding: 8px 12px
    }

    .header__btns {
        gap: 4px
    }

    .footer__nav-list {
        grid-template-columns:1fr
    }

    .footer__nav-list a {
        padding-block: 8px
    }

    .footer__logos {
        gap: 8px
    }

    .bonus .btn {
        min-width: 0;
        width: 100%;
        margin-top: 37px
    }

    .bonus .btn::after, .bonus .btn::before {
        top: -33px;
        left: calc(50% - 4px)
    }

    .bonus .btn::before {
        transform: rotate(90deg) translateY(100%)
    }

    .bonus .btn::after {
        transform: rotate(90deg)
    }
}

@media (hover: hover) {
    p:not([class]) a:hover {
        opacity: .6
    }

    p:not([class]) a:focus {
        opacity: .6
    }

    .header a.header__logo:hover {
        opacity: .6
    }

    .header a.header__logo:focus {
        opacity: .6
    }

    .header__lang:not(.active):hover {
        background: #dad5e0
    }

    .header__lang-item:not(.current):hover {
        background: var(--Stroke, #f3edfa)
    }

    .header__lang-item:not(.current):focus {
        background: var(--Stroke, #f3edfa)
    }

    .header__burger:hover::before {
        background: var(--Stroke, #f3edfa)
    }

    .header__burger:focus::before {
        background: var(--Stroke, #f3edfa)
    }

    .footer a.footer__logo:hover {
        opacity: .6
    }

    .footer a.footer__logo:focus {
        opacity: .6
    }

    .footer__nav-list a:hover {
        color: var(--Text, #484848)
    }

    .footer__nav-list a:focus {
        color: var(--Text, #484848)
    }

    .breadcrumbs a:hover {
        color: var(--Text, #484848)
	}

    .toc__title:hover::before {
        background-color: var(--Stroke, #f3edfa)
    }

    .toc__item a:hover, .toc a:hover {
        background: rgba(0, 0, 0, .15)
    }

    .toc__item a:focus, .toc a:focus {
        background: rgba(0, 0, 0, .15)
    }
}

.last-modified-date {
    width: 100%;
    position: relative;
    max-width: var(--width-container);
    margin: 0 auto;
    padding: var(--inner-offsets, 32px);
    font-size: 1.0666666667rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6rem;
    color: #fff;
}

.last-modified-date time {
    color: #fff;
}

summary {
	list-style: none;
}

/* mobile-button */
.mobile-button {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
    padding: 8px;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #3959d9;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1E211E;
}

.mobile-button--v2 {
    border: 1px solid #3959d9;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 3px #00000026;
    bottom: 6px;
    right: 4px;
    left: 4px;
}

.mobile-button .get-image {
    max-width: 50px;
}

.mobile-button .get-image img {
    width: 100%;
    object-fit: contain;
}

.mobile-button__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
}

.mobile-button__title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.mobile-button__bonus {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.mobile-button__btn {
    margin: 0;
    padding: 12px 16px;
}

@media (min-width: 768px) {
    .mobile-button {
        display: none;
    }
}
/* mobile-button */


.slots__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.slots__item {
    border-radius: 10px;
    padding: 10px;
    background: #252536f2;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slots__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 20px;
    position: absolute;
    background: #00000096;

    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    -webkit-transition: all .3s ease 0s;
    transition: all 0.3s ease 0s;


}

.slots__item:hover .slots__buttons {
    left: 0;
}

.slots__buttons .btn {
    width: 100%;
    border-radius: 25px;
}

.slots__name {
    display: flex;
    justify-content: center;
    padding: 10px 0 0 0;
    color: #fff;
}

.slots__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 200px;
    border-radius: 7px;
}

@media (max-width: 1023px) {
    .slots__list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }


}

@media (max-width: 560px) {
    .slots__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }


}


.slots-section__game.show {
    z-index: 9999;
    box-shadow: 8px 0 500px 0 #c8c9d5;
    opacity: 1;
    visibility: visible;
    pointer-events: all;

    position: fixed;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    width: 100%;
    transform: translate(-50%, -50%);
    /*pointer-events: none;*/
    aspect-ratio: 16 / 9;
    height: 100vh;
    background: #000000a8;
}

.slots-section__game-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
}

.slots-section__game-header-name {
    margin: 0 20px 0 0;
    font-weight: 900;
    font-size: 22px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--color-white);
}

.slots-section__game-header-aff {
    display: none;
    cursor: pointer;
    margin-top: 0;
    width: fit-content;
}

.slots-section__game-close {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: none;
    background: 0 0;
    cursor: pointer;
}

.slots-section__game-iframe iframe {
    margin: 0 auto;
    border: none;
    width: 100%;
    height: 690px;
    object-fit: contain;
    border-radius: 0 0 8px 8px;
}

.scroll-lock {
    overflow: hidden;
}

.slots-section__game-container {
    position: fixed;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    width: 100%;
    max-width: 1290px;
    background: #252536f2;
    visibility: hidden;
    transform: translate(-50%, -50%);
    /*pointer-events: none;*/
    aspect-ratio: 15 / 9;
}

.slots-section__game.show .slots-section__game-container {
    visibility: visible;
}

@media (max-width: 1000px) {
    .slots-section__game-iframe iframe {
        height: 515px;
    }
}

.sports-block {
    display: -ms-flexbox;
    -webkit-box-direction: normal
}

.sports-block__item {
    padding: 16px;
    -ms-flex-direction: column
}

.sports-block, .sports-block__list {
    -webkit-box-orient: horizontal;
    gap: 20px
}

.sports-block {
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    margin-top: 20px
}

.sports-block .sports-block__banner {
    max-width: 452px
}

.sports-block__list {
    display: flex;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sports-block__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

.sports-block li > a.sports-block__item {
    height: 100%
}

.sports-block__item {
    max-width: calc((100% - 60px) / 4);
    border: 1px solid var(--outline);
    background: var(--surf-cont-h);
    border-radius: 8px;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    -webkit-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
    will-change: border-color;
    display: block
}

.sports-block__item > img {
    max-width: 54px;
    max-height: 54px;
    -o-object-fit: contain;
    object-fit: contain
}

.sports-block__item-title {
    margin-top: 16px;
    text-align: center;
    font-size: 20px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface)
}

.sports-block a.sports-block__item:active {
    border-color: var(--primary-simple)
}

.sports-block li.sports-block__item {
    display: flex;
    cursor: pointer
}

.sports-block__banner {
    position: relative;
    padding: 24px 150px 24px 24px;
    border-radius: 8px;
    margin-top: 20px;
    background: url(../images/bonus-banner-bg.png) 0 0/cover no-repeat;
    width: 100%
}

.sports-block__banner-btn {
    margin-top: 16px;
}

.sports-block__banner > * {
    position: relative
}

.sports-block__banner-info {
    font-size: 17px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surf-v)
}

.sports-block__banner-title {
    margin-top: 16px;
    font-size: 26px;
    line-height: 132%;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--on-surf)
}

.sports-block__banner > .get-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 200px;
    max-height: 278px
}

.sports-block__banner.sports-block__banner--no-descr > img {
    max-width: 100%;
    max-height: 100%;
    z-index: 0;
    height: 100%;
    border-radius: 8px
}

.sports-block__banner.sports-block__banner--no-descr .sports-block__banner-btn, .sports-block__banner.sports-block__banner--no-descr .sports-block__banner-title {
    z-index: 1
}

.relink__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.relink__item {
    grid-template-columns:auto 1fr auto
}

.relink__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.relink__item .get-image {
    max-width: 100px;
    width: 100%
}

.relink {
    display: flex;
    align-items: center
}

.sports-block__banner.v1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin-top: 0;
    max-width: 478px
}

.sports-block__banner.v1 > .get-image {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.sports-block__banner.v1 .sports-block__banner-btn {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 576px) {
    .sports-block .sports-block__banner {
        min-height: 278px
    }
}

@media (min-width: 992px) {
    .sports-block__list {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

@media (max-width: 1239.9px) {
    .sports-block__list li {
        max-width: calc((100% - 40px) / 3)
    }

    .relink__list {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 991.9px) {
    .sports-block {
        -webkit-box-orient: vertical
    }

    .relink {
        flex-direction: column;
        gap: 16px
    }

    .sports-block__banner-info {
        font-size: 15px
    }

    .sports-block {
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .sports-block .sports-block__banner {
        max-width: 100%
    }

    .sports-block__list li {
        width: 100%;
        max-width: calc((100% - 20px) / 2)
    }

    .sports-block__banner.sports-block__banner--no-descr > img {
        position: relative
    }

    .relink__list {
        grid-template-columns:repeat(4, 1fr)
    }

    .sports-block__banner.v1 {
        max-width: 100%
    }
}

@media (max-width: 575.9px) {
    .sports-block__list {
        gap: 16px
    }
    .relink__list {
        grid-template-columns:repeat(2, 1fr)
    }

    .sports-block {
        margin-top: 16px;
        gap: 16px
    }

    .sports-block__item-title {
        font-size: 16px;
        margin-top: 12px
    }

    .sports-block__banner {
        padding: 16px;
        margin-top: 16px
    }

    .sports-block__banner-title {
        font-size: 20px;
        max-width: 200px
    }

    .sports-block__banner > .get-image {
        max-width: 114px;
        max-height: 150px
    }

    .relink__list {
        gap: 12px
    }

    .relink__item > img, .sports-block__item > img {
        max-width: 48px;
        max-height: 48px
    }

    .relink__item-text {
        font-size: 15px;
        line-height: 136%;
        font-weight: 400
    }
}
