@charset "UTF-8";
* {
    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%;
    font-size: 16px;
    line-height: 1;
    -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 {
    text-decoration: none;
    color: inherit
}

a:hover {
    text-decoration: none
}

ol li, ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 700
}

p {
    margin-top: 1rem
}

.wrapper {
    margin-block: var(--wrapper-margin, 40px)
}

.breadcrumbs ~ main > .wrapper:first-child {
    margin-top: 0
}

.breadcrumbs > .wrapper {
    margin-top: 0
}

.container {
    margin: 0 auto;
    padding: 0 var(--offsets, 20px);
    max-width: calc(var(--width-container) + var(--offsets, 20px) * 2)
}

.container > :first-child {
    margin-top: 0
}

.bg-block {
    background: var(--Background-Pure-white, #fff)
}

.bg-block > h2, .bg-block > h3 {
    margin: 0
}

.hatched-block {
    background-color: #222;
    background-image: repeating-linear-gradient(45deg, rgba(211, 211, 211, .1) 0, rgba(211, 211, 211, .1) 1px, transparent 2px, transparent 18px);
    background-size: 300% 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px
}

.hatched-block > * {
    margin: 0 !important
}

.hatched-block > :not(:first-child) {
    margin: 0 !important
}

.hatched-block h1, .hatched-block h2, .hatched-block h3, .hatched-block h4, .hatched-block h5, .hatched-block h6 {
    color: var(--text-dbg-Heading, #fff)
}

.hatched-block > p:not([class]) {
    color: var(--text-dbg-text, #dedede)
}

.bg-block, .hatched-block {
    padding: 32px;
    border-radius: 20px;
    max-width: var(--width-container)
}

.top-block {
    position: relative;
    /*padding-top: var(--wrapper-margin, 40px) !important;*/
    /*padding-bottom: calc(var(--wrapper-margin, 40px) + 30px) !important;*/
    /*margin-top: calc(var(--wrapper-margin, 40px) * -1) !important;*/
    /*margin-bottom: calc(var(--wrapper-margin, 40px) * -1 + 2px) !important;*/
}

.top-block::before {
    content: "";
    z-index: -1;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: calc((100vw - 100%) / 2 * -1);
    width: 100vw;
    max-width: 100vw;
    height: 990vh
}

.top-block::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 32px;
    bottom: -2px;
    left: calc((100vw - 100%) / 2 * -1);
    border-radius: 32px 32px 0 0;
    border-top: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    border-right: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    border-left: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-White, #f7f7f7)
}

.breadcrumbs + main > .wrapper:first-child > .top-block {
    margin-top: -20px
}

.wrapper:has(.top-block) + .wrapper {
    margin-top: 8px
}

h1, h2, h3, h4, h5, h6 {
    color: var(--Text-wbg-Headings, #313131);
    margin-bottom: 20px
}

h1 {
    font-size: 2.125rem;
    line-height: 2.75rem;
    font-weight: 700
}

h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 700
}

h3 {
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 700
}

h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

:is(h1,h2,h3,h4,h5,h6):not([class]) {
    display: flex;
    align-items: flex-start;
    gap: 4px
}

:is(h1,h2,h3,h4,h5,h6):not([class]) svg {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px
}

h3:not([class]):not(:first-child) {
    margin-top: 32px;
    margin-bottom: 12px
}

h3:not([class]):not(:first-child) + p:not([class]) {
    margin-top: 12px
}

p:not([class]) {
    margin-top: 20px
}

p:not([class]) a {
    color: var(--Buttons-Secondary, #5f57d4);
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

p:not([class]) + img, p:not([class]) + picture {
    display: block;
    margin-top: 20px
}

img {
    max-width: 100%;
    height: auto
}

picture {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

ol.wp-block-list,
ul.wp-block-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px
}

ol.wp-block-list li,
ul.wp-block-list li {
    position: relative;
    color: var(--text-wbg-text-wbg, #636363)
}

ol.wp-block-list li a,
ul.wp-block-list li a {
    color: var(--Buttons-Secondary, #5f57d4);
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

ol.wp-block-list li p:first-of-type,
ul.wp-block-list li p:first-of-type {
    margin-top: 0
}

ol.wp-block-list {
    counter-reset: custom-counter
}

ol.wp-block-list li {
    counter-increment: custom-counter;
    padding-left: 26px
}

ol.wp-block-list li::before {
    content: counter(custom-counter) ". ";
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    color: var(--Buttons-Secondary, #5f57d4)
}

ul.wp-block-list li {
    padding-left: 20px
}

ul.wp-block-list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 3px;
    background-color: var(--Buttons-Secondary, #5f57d4)
}

.wp-block-table table {
    width: 100%;
    /*table-layout: auto;*/
    border-spacing: 0;
    /*overflow: auto;*/
}

.wp-block-table thead {
    border: none;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.form__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px
}

.form__label {
    min-height: 56px;
    width: 100%
}

.form input, .form textarea {
    width: 100%
}

.form input, .form textarea, .form__rate {
    position: relative;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    outline: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-wbg-text-wbg, #636363);
    transition-property: outline-color, border-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.form input:focus, .form textarea:focus, .form__rate:focus {
    border-color: var(--Buttons-Secondary-40, rgba(95, 87, 212, .4));
    outline-color: var(--Buttons-Secondary-40, rgba(95, 87, 212, .4))
}

.form input::placeholder, .form textarea::placeholder, .form__rate::placeholder {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.form__label {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: var(--text-wbg-text-wbg, #636363)
}

.form__label > span {
    padding-left: 12px
}

.form__label-error {
    position: absolute;
    top: calc(100% + 2px);
    font-size: .75rem;
    line-height: .875rem;
    color: #ff2b2e;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.form__label.has-error input, .form__label.has-error textarea {
    border-color: #ff2b2e
}

.form__label.has-error input:focus, .form__label.has-error textarea:focus {
    outline-color: #ff2b2e
}

.form__label.has-error.form__label-error {
    opacity: 0
}

.form textarea {
    resize: none;
    height: 100%
}

@supports not selector(::-webkit-scrollbar) {
    .form textarea {
        scrollbar-width: thin;
        scrollbar-color: rgba(185, 185, 185, .5333333333) transparent
    }
}

.form textarea::-webkit-scrollbar {
    width: 4px
}

.form textarea::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(185, 185, 185, .5333333333);
    border-radius: 9px;
    border: 4px solid transparent
}

.form textarea::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 9px
}

.form .form__rate {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 22px
}

.form .form__rate input {
    display: none
}

.form .form__rate-label {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px
}

.form .form__rate-label:not(:last-child)::before {
    content: "";
    width: 12px;
    height: 1px;
    background: rgba(0, 0, 0, .07);
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateX(-100%)
}

.form .form__rate-label svg path {
    fill: rgba(0, 0, 0, .3);
    transition-property: fill;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.form .form__rate-label svg rect {
    stroke: transparent;
    transition-property: stroke;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.form .form__rate input:checked ~ .form__rate-label svg path {
    fill: #ec6b1c
}

.form .form__rate input:checked ~ .form__rate-label svg rect {
    stroke: #ec6b1c
}

.form .form__response {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center
}

.form .btn {
    margin-top: 16px;
    padding: 8px 16px;
    min-height: 40px
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../fonts/Lato-Black.woff2) format("woff2"), url(../fonts/Lato-Black.woff) format("woff");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../fonts/Lato-Light.woff2) format("woff2"), url(../fonts/Lato-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../fonts/Lato-Medium.woff2) format("woff2"), url(../fonts/Lato-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../fonts/Lato-Regular.woff2) format("woff2"), url(../fonts/Lato-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../fonts/Lato-Bold.woff2) format("woff2"), url(../fonts/Lato-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../fonts/Lato-Thin.woff2) format("woff2"), url(../fonts/Lato-Thin.woff) format("woff");
    font-weight: 100;
    font-style: normal
}

.no-scroll {
    overflow: hidden
}

.hidden-svg {
    display: none
}

@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: 10px;
        scrollbar-color: #d1d1d1 transparent
    }
}

html::-webkit-scrollbar {
    width: 10px
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #d1d1d1
}

html::-webkit-scrollbar-track {
    background: #f7f7f7
}

body, html {
    font: 400 var(--font-default)/1.5 Lato, sans-serif
}

body {
    background: var(--Background-White, #f7f7f7);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: var(--text-wbg-text-wbg, #636363)
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

p {
    margin: 0
}

:root {
    --offsets: 20px;
    --width-container: 1400px;
    --wrapper-margin: 40px;
    --font-default: 16px;
    --font-default-size: 16;
    --star-color: #ec6b1c;
    --star-bg: #0000004d;
    --Strokes-Stroke: rgba(0, 0, 0, 0.07);
    --Background-Pure-white: #fff;
    --Buttons-Secondary: #5f57d4;
    --Buttons-Primary: #ec6b1c;
    --Buttons-Secondary-Hover: #4535b1;
    --Buttons-Primary-Hover: #c54700;
    --buttons-secondary-5: rgba(95, 87, 212, 0.05);
    --buttons-secondary-15: rgba(95, 87, 212, 0.15);
    --text-wbg-text-wbg: #636363;
    --Text-wbg-Headings: #313131;
    --Text-wbg-Subtext: #9a9a9a;
    --R: 4px
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding-block: 24px;
    background-color: #000
}

.header .container {
    max-width: 100%
}

.header__wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    row-gap: 8px
}

.header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    max-height: 60px
}

.header__logo:is(a) {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.header__logo:is(a):active {
    opacity: .6
}

.header__logo img, .header__logo svg {
    max-width: 250px;
    max-height: 60px;
    object-fit: contain
}

.header__nav {
    margin-right: auto;
    z-index: 20;
    margin-left: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px
}

.header__burger {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.header__burger::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36" fill="none"><path d="M8 12h20M8 18h20M8 24h20" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
    display: block;
    width: 36px;
    height: 36px
}

.header__search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-height: 32px;
    min-width: 32px;
    height: 32px;
    position: relative;
    margin-left: auto;
    z-index: 30;
    overflow: hidden
}

.header__search:not(.active) {
    cursor: pointer
}

.header__search.active {
    overflow: visible
}

.header__search-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px
}

.header__search-btn {
    background: 0 0;
    border: 0;
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.header__search-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%
}

.header__search-panel {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 9px;
    border-radius: 10px;
    background-color: #232020
}

.header__search-input {
    font-size: 1rem;
    line-height: 136%;
    font-weight: 700;
    color: #fff;
    background: 0;
    border: 0
}

.header__search input[type=search]::-webkit-search-cancel-button, .header__search input[type=search]::-webkit-search-decoration, .header__search input[type=search]::-webkit-search-results-button, .header__search input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

.header__search-open {
    width: 32px;
    height: 32px
}

.header__search-clear {
    background: 0 0;
    border: 0;
    width: 20px;
    height: 20px
}

.header__search-close, .header__search-open {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0
}

.header__search-close {
    width: 24px;
    height: 24px;
    transform: scale(-1)
}

.header__search-result {
    margin-top: 37px
}

.header__search-result-content-list {
    padding: 20px 5px;
}

.header__search-result::before {
    content: "";
    position: absolute;
    top: -25px;
    right: 40px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 26px solid #131314
}

.header__search-result-header {
    padding: 15px 24px;
    background: #131314;
    font-weight: 700;
    color: #fff;
    border-radius: 12px 12px 0 0
}

.header__search-result-content {
    border-radius: 0 0 12px 12px;
    display: flex;
    /*justify-content: center;*/
    flex-direction: column;
    gap: 22px;
}

.header__search-result-content::-webkit-scrollbar {
    width: 2px
}

.header__search-result-content::-webkit-scrollbar-thumb {
    width: 2px;
    border-radius: 2px;
    background: #414141;
    margin-right: 5px;
}

.header__search-result-content::-webkit-scrollbar-track {
    width: 2px;
    border-radius: 2px;
    background: #131313;
    margin-right: 5px;
}

.header__search-result-default, .header__search-result-empty {
    font-size: 1rem;
    line-height: 150%;
    color: #5f615f;
    text-align: center
}

.header__search-result-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.header__search-result-default::before {
    content: url('data:image/svg+xml,<svg stroke="%23fff" fill="none" stroke-width="0" height="70" width="70" xmlns="http://www.w3.org/2000/svg" viewBox="1.87 2.38 17.26 17.25" class="search-result_noSearchIcon__J8ubk"><path d="M9.621 17.125a7 7 0 1 0 0-14 7 7 0 0 0 0 14m8.756 1.749-3.807-3.807" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    opacity: .4
}

.header__search-result-list {
    position: relative;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px
}

.header__search-result-link {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-inline: 14px 18px;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.header__search-result-link:active {
    opacity: .6
}

.header__search-result-link::after {
    content: url('data:image/svg+xml,<svg stroke="currentColor" fill="none" stroke-width="0" height="12" width="12" xmlns="http://www.w3.org/2000/svg" viewBox="6 6.6 12 12" class="search-result_linkIcon__sz4Uu"><path d="M17 17.6 7 7.6m0 10v-10h10" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    display: block;
    font-size: 12px;
    width: 12px;
    height: 12px
}

.header__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px
}

.header__btns .btn {
    padding: 7px 32px;
    min-height: unset;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600
}

@media (max-width: 1239.9px) {
    .header__search {
        margin-left: auto;
    }

    .header__btns {
        margin-left: auto;
    }

    .header__search + .header__btns {
        margin-left: 0;
    }
}

.header .header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    row-gap: 0;
    flex-wrap: wrap
}

.header .header-menu .submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    color: #fff
}

@supports not selector(::-webkit-scrollbar) {
    .header .header-menu .submenu {
        scrollbar-width: thin;
        scrollbar-color: rgba(185, 185, 185, .5333333333) transparent
    }
}

.header .header-menu .submenu::-webkit-scrollbar {
    width: 4px
}

.header .header-menu .submenu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(185, 185, 185, .5333333333);
    border-radius: 9px;
    border: 4px solid transparent
}

.header .header-menu .submenu::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 9px
}

.header .header-menu .item {
    position: relative;
    display: flex;
    flex-direction: row;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.header .header-menu .item.parent {
    cursor: pointer
}

.header .header-menu .item a, .header .header-menu .item span {
    font-size: 1rem;
    line-height: 136%;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition-property: background, color;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.header .header-menu .item svg {
    transition-property: transform;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.header .header-menu .item svg path {
    transition-property: stroke;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.header .header-menu .item.current {
    color: var(--Buttons-Secondary, #5f57d4)
}

.header .header-menu .item.current > a, .header .header-menu .item.current > span {
    color: var(--Buttons-Secondary, #5f57d4)
}

.header .header-menu .item.current > svg path {
    stroke: var(--Buttons-Secondary, #5f57d4)
}

.header.menu-active .header__nav {
    z-index: 40
}

.header.menu-active .header__burger {
    z-index: 50;
    position: fixed;
    top: 6px;
    right: 6px
}

.header.menu-active .header__burger::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36" fill="none"><path d="m11 24 13-13m-13 0 13 13" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>')
}

.footer {
    background: #131313;
    padding-inline: var(--offsets, 20px);
    padding: 115px 150px;
    margin: 0;
    display: grid;
    grid-template-columns:32% 1fr;
    column-gap: 0
}

.footer a.footer__logo {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer a.footer__logo:active {
    opacity: .6
}

.footer__logo {
    position: relative;
    width: 100%;
    max-width: 435px
}

.footer__logo img, .footer__logo svg {
    max-width: 100%;
    object-fit: contain;
    height: fit-content;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding-right: 85px
}

.footer__lang {
    position: relative;
    z-index: 10;
    min-width: 253px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;
    padding: 7px 16px 7px 10px;
    border-radius: 10px;
    background: #232020;
    cursor: pointer;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: var(--Background-White, #f7f7f7);
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer__lang > img, .footer__lang > svg {
    width: 33px;
    height: 24.75px;
}

.footer__lang > span {
    padding-left: 8px;
    margin-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, .8);
    font-style: 16px;
    line-height: 136%;
    font-weight: 700;
}

.footer__lang::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 20 20" fill="none"><path d="m5 9 5 5 5-5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
    display: block;
    width: 18px;
    height: 18px;
    margin-left: auto;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer__lang:active {
    background: #1b1a1a
}

.footer__lang.active::after {
    transform: rotate(-180deg)
}

.footer__lang.active .footer__lang-list-wrapper {
    display: flex
}

.footer__lang-list-wrapper {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    border-radius: 10px;
    background: #232020;
    display: none;
    padding: 23px 15px 5px 0;
}

.footer__lang-list-wrapper:after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 100%;
    height: 24px;
    display: block;
    background: linear-gradient(180deg, rgba(35, 32, 32, 0), #232020);
}

.footer__lang-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 50px;
    max-height: 445px;
    height: 135px;
    overflow-y: auto;
    overflow-x: clip
}

@supports not selector(::-webkit-scrollbar) {
    .footer__lang-list {
        scrollbar-width: thin;
        /*scrollbar-color: rgba(185, 185, 185, .5) transparent;*/
        scrollbar-color: #c;
    }
}

.footer__lang-list::-webkit-scrollbar {
    width: 2px
}

.footer__lang-list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(185, 185, 185, .5333333333);
    border-radius: 9px;
    border: 4px solid transparent
}

.footer__lang-list::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 9px
}

.footer__lang-list li {
    display: block
}

.footer__lang-list::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px
}

.footer__lang-item {
    display: block;
    padding: 15px 25px 15px 45px;
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer__soc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px
}

.footer__soc-item {
    display: block
}

.footer__soc-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--Strokes-White-20, rgba(255, 255, 255, .2));
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer__soc-link img, .footer__soc-link svg {
    max-width: 24px;
    max-height: 24px
}

.footer__soc-link:active {
    background: var(--Strokes-White-20, rgba(255, 255, 255, .5))
}

.footer__nav {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 80px
}

.footer__nav-wrap {
    padding-inline: 80px;
    border-left: 1px solid var(--Background-Pure-white, #fff)
}

.footer__nav-wrap:nth-of-type(3n) {
    padding-right: 0
}

.footer__nav-title {
    color: var(--text-dbg-Heading, #fff);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 30px
}


.footer__nav-title__a {
    margin: 0;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer__nav-title > svg {
    display: none;
    width: 20px;
    height: 20px;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    pointer-events: none
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px
}

.footer__nav-list li {
    display: block
}

.footer__nav-list a {
    display: block;
    color: var(--Background-Pure-white, #fff);
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.footer__nav-list a:active {
    color: var(--Buttons-Secondary, #5f57d4)
}

.footer__text {
    grid-column: 1/-1;
    margin-top: 60px;
    text-align: center;
    color: var(--text-dbg-Heading, #fff);
    font-weight: 700
}

.footer__logos {
    grid-column: 1/-1;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-inline: auto;
    width: 100%;
    max-width: var(--width-container, 1400px);
    column-gap: 100px;
    row-gap: 22px
}

.footer__logos img, .footer__logos svg {
    max-width: 300px;
    max-height: 70px
}

.section-hero {
    position: relative;
    padding-top: 40px;
    padding-bottom: 72px;
}

.section-hero .wp-block-heading {
    margin-block: 0;
    font-size: 2.125rem;
    line-height: 2.75rem;
    font-weight: 700;
    color: var(--text-dbg-Heading, #fff)
}

.section-hero p {
    color: var(--text-dbg-text, #dedede);
    font-weight: 500
}

.section-hero .btn {
    padding: 8px 40px
}

.section-hero:not(:has(.section-hero__bg)) h1 {
    color: var(--Text-wbg-Headings, #313131)
}

.section-hero:not(:has(.section-hero__bg)) p {
    color: var(--text-wbg-text-wbg, #636363)
}

.section-hero:has(.section-hero__bg) .section-hero__bg, .section-hero:has(.section-hero__bg)::before {
    position: absolute;
    top: 0;
    left: calc((100vw - 100%) / 2 * -1);
    width: 100vw;
    max-width: 100vw;
    height: 100%
}

.section-hero:has(.section-hero__bg)::before {
    content: "";
    z-index: -1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, .7) 100%)
}

.section-hero:has(.section-hero__bg) .section-hero__bg {
    position: absolute;
    z-index: -2;
    object-fit: cover
}

.section-faq__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px
}

.section-faq__item {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff)
}

.section-faq__item[open] {
    padding-bottom: 16px
}

.section-faq__item[open] summary {
    padding: 16px 16px 8px
}

.section-faq__item[open] summary::after {
    transform: rotate(-180deg);
    filter: grayscale(1) brightness(1.3)
}

.section-faq__item[open] summary svg path {
    fill: var(--Buttons-Secondary, #5f57d4)
}

.section-faq summary {
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--Text-wbg-Headings, #313131);
    cursor: pointer;
    list-style: none
}

.section-faq summary::marker {
    content: ""
}

.section-faq summary::-webkit-details-marker {
    display: none
}

.section-faq summary::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="m5 9 5 5 5-5" stroke="%235F57D4" stroke-width="2" stroke-linecap="round"/></svg>');
    width: 20px;
    height: 20px;
    margin-left: auto;
    transition-property: transform, filter;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.section-faq summary svg {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px
}

.section-faq summary svg path {
    transition-property: fill;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.section-faq p {
    color: var(--text-wbg-text-wbg, #636363);
    padding-inline: 16px;
    margin: 0
}

.section-faq p + p {
    margin-top: 8px
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 200;
    background-color: rgba(0, 0, 0, .3098039216)
}

.modal:not(.active) {
    display: none
}

.modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: calc(var(--width-container));
    max-height: calc(100% - 40px);
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
    box-shadow: 0 4px 32px -4px rgba(16, 16, 16, .0784313725)
}

.modal__header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    display: grid;
    grid-template-columns:1fr auto;
    column-gap: 8px;
    row-gap: 0;
    padding: 12px;
    background: var(--Background-Pure-white, #fff)
}

.modal__footer {
    width: 100%;
    padding: 12px;
    background: var(--Background-Pure-white, #fff);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    display: none !important;
}

.modal__footer > img, .modal__footer > svg {
    max-width: 120px
}

.modal__footer-bonus {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: var(--Text-wbg-Headings, #313131);
    font-weight: 500
}

.modal__footer-bonus span:not([class]) {
    color: var(--Buttons-Primary, #ec6b1c)
}

.modal__footer-bonus, .modal__footer > .btn {
    position: relative;
    overflow: visible
}

.modal__footer-bonus::before, .modal__footer > .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background: rgba(0, 0, 0, .07)
}

.modal__footer-text {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500
}

.modal__footer > .btn {
    min-width: 240px
}

.modal__title {
    color: var(--Text-wbg-Headings, #313131);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

.modal__type {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    font-size: .875rem;
    line-height: 1.25rem
}

.modal__close {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border-radius: 50%;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.modal__close::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36" fill="none"><path d="m11 24 13-13m-13 0 13 13" stroke="%23313131" stroke-width="2" stroke-linecap="round"/></svg>');
    display: block;
    width: 36px;
    height: 36px
}

.modal__body {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;
    aspect-ratio: 16/9;
    background: #343434
}

.modal__body:before {
    content: "Loading...";
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    color: #fff;
    animation: loading 1s linear infinite alternate;
    z-index: 1
}

@keyframes loading {
    to {
        opacity: 0
    }
}

.modal iframe {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: 2
}

.btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    min-height: 48px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .9375rem;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    transition-property: background, box-shadow, color, border-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    cursor: pointer;
    overflow: hidden
}

.btn svg {
    max-width: 32px;
    max-height: 32px;
    min-width: 24px;
    min-height: 24px
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.btn.disabled, .btn[disabled] {
    opacity: .6
}

.btn--primary {
    background: var(--Buttons-Primary, #ec6b1c);
    color: #fff
}

.btn--primary:active {
    background: var(--Buttons-Primary-Hover, #c54700)
}

.btn--secondary {
    background: var(--Buttons-Secondary, #5f57d4);
    color: #fff
}

.btn--secondary:active {
    background: var(--Buttons-Secondary-Hover, #4535b1)
}

.btn--secondary-tr {
    background: var(--Buttons-Secondary-40, rgba(95, 87, 212, .4));
    color: #fff
}

.btn--secondary-tr:active {
    background: var(--Buttons-Secondary-40, rgba(95, 87, 212, .8))
}

.btn--primary-line {
    color: var(--Buttons-Primary, #ec6b1c);
    border: 1px solid var(--Buttons-Primary, #ec6b1c);
    background: 0 0
}

.btn--primary-line:active {
    color: var(--Buttons-Primary-Hover, #c54700);
    border-color: var(--Buttons-Primary-Hover, #c54700)
}

.btn--secondary-line {
    color: var(--Buttons-Secondary, #5f57d4);
    border: 1px solid var(--buttons-secondary-68, rgba(95, 87, 212, .68));
    background: 0 0
}

.btn--secondary-line:active {
    color: var(--Buttons-Secondary-Hover, #4535b1);
    border-color: var(--Buttons-Secondary-Hover, #4535b1)
}

.btn--white-line {
    color: var(--text-dbg-Heading, #fff);
    border: 1px solid var(--Strokes-White-20, rgba(255, 255, 255, .2));
    background: 0 0
}

.btn--white-line:active {
    border-color: var(--Strokes-White-20, rgba(255, 255, 255, .8))
}

.btn--small {
    padding: 7px 15px;
    min-height: 40px
}

.btn--arrow {
    gap: 4px
}

.btn--tr {
    border: 1px solid var(--Strokes-White-20, rgba(255, 255, 255, .2));
    background: var(--Strokes-White-20, rgba(255, 255, 255, .2));
    color: var(--text-dbg-Heading, #fff);
}

@media (any-hover: hover) {
    .btn--tr:hover {
        background: rgba(255, 255, 255, .4);
    }
}

.content-img {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 20px
}

.content-img > * {
    flex: 1 1;
    width: 100%;
}

.content-img > img {
    max-width: 50%;
    border-radius: var(--R);
}

.content-img > img:first-child:last-child {
    max-width: 100%
}

.content-img .content-img__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    overflow: hidden;
}

.content-img .content-img__content picture, .content-img .content-img__content > img {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 50%
}

.content-img .content-img__content p:not([class]), .content-img .content-img__content > *, .content-img .content-img__content > :not(:first-child) {
    margin: 0
}

.fixed-el {
    position: fixed;
    left: 0;
    bottom: 0;
    width: calc(100% - 8px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    z-index: 80;
    margin: 8px 4px;
    padding: 8px 8px 8px 12px;
    border-radius: 8px;
    background: var(--Background-Dark, #222);
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1);
    min-height: 52px;
}

.fixed-el:has(img) {
    align-items: flex-start
}

.fixed-el > img, .fixed-el > svg {
    max-width: 228px;
    max-height: 36px;
    object-fit: contain
}

.fixed-el__main {
    color: var(--Background-White, #f7f7f7);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem
}

.fixed-el > .btn {
    border-radius: 8px;
    padding: 8px 16px;
    min-height: 36px;
    margin-left: auto;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: var(--Background-White, #f7f7f7)
}

.fixed-el:not(:has(.fixed-el__main)) .btn {
    width: 100%;
}

.mob-menu ~ .fixed-el {
    bottom: 68px
}

.go-up {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #cfcfcf;
    position: fixed;
    bottom: 80px;
    right: 32px;
    z-index: 70;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.go-up:not(.active) {
    display: none
}

.go-up::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 12 14" fill="none"><path d="M6 14V2M1 7l5-5 5 5" stroke="%23000" stroke-width="2"/></svg>');
    display: block
}

.go-up:active {
    background: #363636
}

.breadcrumbs {
    width: 100%;
    padding-block: 8px;
    margin-block: 12px 20px
}

.breadcrumbs:has( + .main .top-block ) {
    margin-top: 0;
    margin-bottom: 0;
    background: #000;
}

.breadcrumbs:has( + .main .top-block.author-article ) {
    background: #00000000;
}

.breadcrumbs__list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px
}

.breadcrumbs li {
    position: relative
}

.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="m7.5 15.5 5-5-5-5" stroke="%235F57D4" stroke-width="2" stroke-linecap="round"/></svg>');
    display: block;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px
}

.breadcrumbs li span, .breadcrumbs li:last-child a {
    color: var(--Buttons-Secondary, #5f57d4)
}

.breadcrumbs a, .breadcrumbs span {
    position: relative;
    padding-block: 4px;
    display: block;
    color: var(--text-wbg-text-wbg, #636363);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.breadcrumbs a:active {
    color: var(--Buttons-Secondary, #5f57d4)
}

.gallery {
    width: calc(100% + 15px);
    padding-right: 15px;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.gallery:not(:first-child) {
    margin-top: 20px
}

.gallery::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none
}

.gallery img {
    user-select: none;
    pointer-events: none;
    max-width: 100%;
    max-height: 320px;
    border-radius: 8px;
    object-fit: cover
}

.gallery__item {
    max-width: 100%
}

.gallery__item-wrap {
    display: flex;
    flex-direction: row;
    width: max-content;
    max-width: 100%;
    height: 100%
}

:is(.bg-block,.hatched-block) .gallery-list {
    width: calc(100% + 32px);
    padding-right: 32px
}

.scrolling .gallery .gallery__item {
    pointer-events: none
}

.toc-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff)
}

.toc-section:not(:first-child) {
    margin-top: 20px
}

.toc-section.active .toc-section__title::after {
    transform: rotate(-180deg);
    filter: grayscale(1) brightness(1.3)
}

.toc-section.active .toc-section__nav {
    display: block
}

.toc-section__title {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    padding: 20px;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--Text-wbg-Headings, #313131)
}

.toc-section__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="m5 9 5 5 5-5" stroke="%235F57D4" stroke-width="2" stroke-linecap="round"/></svg>');
    width: 20px;
    height: 20px;
    transition-property: transform, filter;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.toc-section__nav {
    padding: 0 20px 20px;
    display: none
}

.toc-section__list {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 12px
}

.toc-section__item {
    position: relative;
    display: flex;
    flex-direction: row
}

.toc-section__item a {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05));
    color: var(--text-wbg-text-wbg, #636363);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.toc-section__item a:active {
    color: var(--Buttons-Secondary, #5f57d4)
}

.toc-section__item a::before {
    content: "";
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 3px;
    background-color: var(--Buttons-Secondary, #5f57d4)
}

.wp-block-table {
    width: 100%;
    border-radius: 12px;
    overflow: auto;
    background: var(--Background-Pure-white, #fff)
}

* + .wp-block-table {
    margin-top: 28px;
}

.table:not(:first-child) {
    margin-top: 28px
}

.table--col {
    padding-inline: 24px
}

.table--col table {
    table-layout: fixed
}

.table--col tr {
    padding-bottom: 12px
}

.table--col tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, .07)
}

.table--col tr td {
    position: relative;
    padding: 24px 0 23px;
    text-align: left
}

.table--col tr td:first-child {
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--Text-wbg-Subtext, #9a9a9a)
}

.table--col tr td:not(:first-child) {
    padding-left: 12px;
    color: var(--Text-wbg-Headings, #313131);
    font-weight: 700
}

.table--col tr td:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 16px;
    width: 1px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .07)
}

.table--col tr td:not(:last-child) {
    padding-right: 12px
}

.table--col.table--between tr td:not(:first-child) {
    text-align: right
}

.table--col.table--between tr td:not(:first-child)::before {
    display: none
}

.wp-block-table:not(.table--col) {
    border: 2px solid var(--Background-Pure-white, #fff)
}

.wp-block-table:not(.table--col) tr {
    background: var(--Background-Pure-white, #fff)
}

.wp-block-table:not(.table--col) tr:nth-child(odd) {
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05))
}

.wp-block-table:not(.table--col) td,
.wp-block-table th {
    padding: 12px
}

.wp-block-table:not(.table--col) td:not(:first-child),
.wp-block-table:not(.table--col) th:not(:first-child) {
    border-left: 1px solid rgba(0, 0, 0, .07)
}

.wp-block-table:not(.table--col) th {
    background: var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    font-weight: 500;
    color: var(--Text-wbg-Headings, #313131)
}

.wp-block-table:not(.table--col) td {
    color: var(--text-wbg-text-wbg, #636363)
}

.wp-block-table:not(.table--col) td:first-child {
    color: var(--Text-wbg-Headings, #313131)
}

.pros-cons {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 20px
}

.pros-cons:not(:first-child) {
    margin-top: 20px
}

.pros-cons__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start
}

.pros-cons__item--pros .pros-cons__list li::before {
    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"><rect x="3" y="3" width="10" height="10" rx="5" fill="%2310DB76"/><path d="m6 8 1.5 1.5L10 7" stroke="%23fff" stroke-linecap="round"/></svg>')
}

.pros-cons__item--cons .pros-cons__list li::before {
    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"><rect x="3" y="3" width="10" height="10" rx="5" fill="%23DB1014"/><path d="m6 6 4 4m-4 0 4-4" stroke="%23fff" stroke-linecap="round"/></svg>')
}

.pros-cons__title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--Text-wbg-Headings, #313131)
}

.pros-cons__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px
}

.pros-cons__list li {
    position: relative;
    padding: 11px 11px 11px 27px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    gap: 4px;
    color: var(--text-wbg-text-wbg, #636363)
}

.pros-cons__list li::before {
    position: absolute;
    top: 11px;
    left: 11px;
    display: block;
    width: 16px;
    height: 16px;
    margin-top: 2px
}

.author-block {
    padding: 20px;
    border-radius: 20px;
    background: var(--Background-Pure-white, #fff);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px
}

.author-block:not(:first-child) {
    margin-top: 20px
}

.author-block__img {
    max-width: 124px;
    max-height: 124px;
    width: 124px;
    height: 124px;
    object-fit: cover;
    border-radius: 50%;
    padding: 2px;
    margin: 4px;
    background: linear-gradient(90deg, #ec6b1c 0, #5f57d4 100%)
}

.author-block__wrap {
    display: grid;
    grid-template-columns:1fr auto;
    column-gap: 20px;
    flex: 1
}

.author-block__author {
    align-self: flex-end;
    font-weight: 500;
    color: var(--text-wbg-text-wbg, #636363)
}

.author-block__author-name {
    color: var(--Buttons-Secondary, #5f57d4);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: solid;
    margin-left: 4px;
    text-underline-offset: 4px
}

.author-block__soc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px
}

.author-block__soc-item {
    display: flex
}

.author-block__soc a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05));
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.author-block__soc a svg {
    display: block
}

.author-block__soc a:active {
    background: var(--Strokes-White-20, rgba(255, 255, 255, .2))
}

.author-block__info {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px
}

.author-block__info-item {
    position: relative;
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--Text-wbg-Subtext, #9a9a9a)
}

.author-block__info-item:not(:last-child) {
    padding-right: 24px
}

.author-block__info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, .07)
}

.author-block__descr {
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--text-wbg-text-wbg, #636363)
}

.how-to {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    counter-reset: how-to
}

.how-to:not(:first-child) {
    margin-top: 28px
}

.how-to .how-to__item {
    position: relative;
    counter-increment: how-to;
    padding: 16px 16px 16px 68px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    display: grid;
    column-gap: 20px;
    row-gap: 8px;
    align-items: center;
}

.how-to .how-to__item:not(:has([class^=how-to__])) {
    display: flex;
    align-items: center
}

.how-to .how-to__item > img {
    width: 100%;
    max-width: 100%;
    border-radius: 4px
}

.how-to .how-to__item::before {
    position: absolute;
    top: 50%;
    left: 16px;
    translate: -0 -50%;
    content: counter(how-to);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    color: var(--Buttons-Secondary, #5f57d4);
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    border-radius: 16px;
    border: 2px solid var(--Buttons-Secondary, #5f57d4)
}

.how-to .how-to__title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    align-self: end;
    text-align: left;
    color: var(--Text-wbg-Headings, #313131);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.how-to .how-to__descr {
    align-self: start;
    text-align: left;
    color: var(--text-wbg-text-wbg, #636363);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.bonus-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    padding: 16px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    background: #fff;
    background-image: repeating-linear-gradient(45deg, rgba(211, 211, 211, .3) 0, rgba(211, 211, 211, .3) 1px, #fff 2px, #fff 18px);
    background-size: 300% 100%;
    transition-property: border-color, box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.bonus-card img {
    width: calc(100% + 2px + 32px);
    max-width: calc(100% + 2px + 32px);
    height: 230px;
    margin-left: -17px;
    margin-top: -17px;
    object-fit: cover
}

.bonus-card__type {
    margin-top: 2px;
    padding: 4px 16px;
    border-radius: 8px;
    background: var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    color: var(--buttons-secondary-68, rgba(95, 87, 212, .68));
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem
}

.bonus-card__title {
    color: var(--Text-wbg-Headings, #313131);
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

.bonus-card__descr {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    text-align: center;
    color: var(--text-wbg-text-wbg, #636363);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-top: auto
}

.bonus-card__descr span {
    color: var(--Buttons-Primary, #ec6b1c)
}

.bonus-card .btn {
    width: 100%
}

@keyframes lines {
    from {
        background-position: 1000% 0
    }
    to {
        background-position: 0 0
    }
}

.slot-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    display: flex;
    flex-direction: column;
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.slot-card__img {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    width: calc(100% + 2px);
    min-height: 180px;
    margin-left: -1px;
    margin-top: -1px;
    flex: 1
}

.slot-card__img:hover .slot-card__btns {
    transform: translateX(0)
}

.slot-card__img img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slot-card__btns {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--Background-Dark, #222);
    transform: translateX(-100%);
    transition-property: transform;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.slot-card__btns .btn {
    width: 100%
}

.slot-card__btns .btn:last-child {
    margin-top: auto
}

.slot-card__btns .btn:nth-last-child(2) {
    margin-bottom: 12px
}

.slot-card__title {
    padding: 12px 8px;
    color: var(--Text-wbg-Headings, #313131);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.advantage-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.advantage-card img {
    max-width: 100%;
    margin-bottom: 12px;
    border-radius: 4px
}

.advantage-card__title {
    margin-bottom: 8px;
    color: var(--Text-wbg-Headings, #313131);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

.advantage-card__descr {
    margin-bottom: 20px;
    color: var(--text-wbg-text-wbg, #636363);
    font-size: .875rem;
    line-height: 1.25rem
}

.advantage-card .btn {
    margin-top: auto
}

.advantages-list {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.advantages-list:not(:first-child) {
    margin-top: 16px
}

.small-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    display: flex;
    flex-direction: column;
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.small-card > img, .small-card > svg {
    display: block;
    max-width: 100%;
    margin-inline: auto
}

.small-card__title {
    margin-top: 12px;
    color: var(--Text-wbg-Headings, #313131);
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: auto
}

.small-card .btn {
    margin-top: 20px;
    margin-inline: auto
}

.casino-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.casino-card > img, .casino-card > svg {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    padding-block: 22px;
    min-height: 80px
}

.casino-card__rate {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    justify-content: center;
    margin-inline: auto;
    color: var(--text-wbg-text-wbg, #636363);
    font-size: .875rem;
    line-height: 1.25rem
}

.casino-card__rate::after {
    content: "★★★★★";
    display: block;
    font-size: 18px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0;
    font-weight: 300;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.casino-card__title {
    margin-top: 16px;
    margin-bottom: auto;
    color: var(--Text-wbg-Headings, #313131);
    text-align: center;
    font-weight: 700
}

.casino-card__bonus {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--Text-wbg-Headings, #313131);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .07)
}

.casino-card__bonus::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="41" height="40" viewBox="0 0 41 40" fill="none"><ellipse cx="20.5" cy="34" rx="18" ry="2" fill="url(%23a)"/><path d="M20.5 12c0-5.17-4.606-7.325-7.165-5.17C10.777 8.983 14.36 12 20.5 12Zm0 0c0-5.17 4.606-7.325 7.165-5.17C30.223 8.983 26.64 12 20.5 12Z" stroke="%23FE985A"/><rect x="8.5" y="20" width="24" height="14" rx=".5" fill="url(%23b)"/><rect x="8.5" y="20" width="24" height="14" rx=".5" fill="url(%23c)"/><path fill="url(%23d)" d="M18.5 24h4v10h-4z"/><path fill="url(%23e)" d="M8.5 23h24v3h-24z"/><path d="M8 12.5a.5.5 0 0 1 .5-.5h24a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5h-24a.5.5 0 0 1-.5-.5z" fill="url(%23f)"/><path d="M8 12.5a.5.5 0 0 1 .5-.5h24a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5h-24a.5.5 0 0 1-.5-.5z" fill="url(%23g)"/><path fill="url(%23h)" d="M18.5 12h4v12h-4z"/><defs><linearGradient id="b" x1="32.02" y1="20" x2="6.933" y2="30.111" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="c" x1="32.5" y1="20" x2="31.496" y2="35.49" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="d" x1="22.5" y1="24" x2="19.635" y2="34.315" gradientUnits="userSpaceOnUse"><stop stop-color="%23F98C4A"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="e" x1="20.5" y1="23" x2="20.5" y2="26" gradientUnits="userSpaceOnUse"><stop stop-opacity=".35"/><stop offset=".507" stop-opacity=".146"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="f" x1="32.5" y1="12" x2="8" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="g" x1="33" y1="12" x2="32.291" y2="25.296" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="h" x1="22.5" y1="12" x2="18.5" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF9A5C"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><radialGradient id="a" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(23 0 0 1.74914 20.5 34)"><stop offset=".01"/><stop offset=".468" stop-opacity=".7"/><stop offset=".729" stop-opacity=".1"/><stop offset=".795" stop-opacity="0"/></radialGradient></defs></svg>');
    display: block;
    width: 40px;
    height: 40px
}

.casino-card .btn {
    width: 100%;
    margin-top: 16px
}

.app-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.app-card > img, .app-card > svg {
    display: block;
    max-width: 100%;
    margin-inline: auto
}

.app-card__descr, .app-card__title {
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem
}

.app-card__title {
    color: var(--text-wbg-text-wbg, #636363);
    margin-top: 12px
}

.app-card__descr {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    margin-top: 8px
}

.app-card__list {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.app-card__item, .app-card__link {
    display: flex
}

.app-card__item img, .app-card__item svg {
    max-width: 24px;
    max-height: 24px
}

.app-card__link {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.app-card__link:active {
    opacity: .7
}

.casino-listing {
    --top1: linear-gradient(
            268deg,
            #cea534 0%,
            #ffe7a6 17.24%,
            #c19e3c 35.87%,
            #f6de99 62.02%,
            #b8922b 86%,
            #eacb76 100%
    );
    --top2: linear-gradient(
            268deg,
            #cecece 0%,
            #f2f2f2 17.24%,
            #d6d6d6 35.87%,
            #fff 53%,
            #b5b5b5 74%,
            #b9b9b9 100%
    );
    --top3: linear-gradient(
            268deg,
            #cc8d65 0%,
            #f6bd99 17.24%,
            #d78f50 35.87%,
            #f4be7f 53%,
            #c28241 74%,
            #ffb061 100%
    );
    --item-padding: 20px
}

.casino-listing:not(:first-child) {
    margin-top: 16px
}

.casino-listing > .btn {
    margin-inline: auto;
    margin-top: 24px;
    min-width: 247px
}

.casino-listing.hidden .casino-listing__row:nth-of-type(n+11) {
    display: none
}

.casino-listing__table {
    display: block;
    width: 100%
}

.casino-listing__table tr {
    display: flex
}

.casino-listing__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    counter-reset: casino-listing
}

.casino-listing__row {
    counter-increment: casino-listing
}

.casino-listing__row:nth-child(-n+3) .casino-listing__item {
    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box
}

.casino-listing__row:nth-child(1) .casino-listing__item {
    background-image: linear-gradient(var(--Background-Pure-white, #fff), var(--Background-Pure-white, #fff)), var(--top1)
}

.casino-listing__row:nth-child(1) .casino-listing__item .casino-listing__top {
    background: var(--top1)
}

.casino-listing__row:nth-child(2) .casino-listing__item {
    background-image: linear-gradient(var(--Background-Pure-white, #fff), var(--Background-Pure-white, #fff)), var(--top2)
}

.casino-listing__row:nth-child(2) .casino-listing__item .casino-listing__top {
    background: var(--top2)
}

.casino-listing__row:nth-child(3) .casino-listing__item {
    background-image: linear-gradient(var(--Background-Pure-white, #fff), var(--Background-Pure-white, #fff)), var(--top3)
}

.casino-listing__row:nth-child(3) .casino-listing__item .casino-listing__top {
    background: var(--top3)
}

.casino-listing__item {
    width: 100%;
    padding: var(--item-padding);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff);
    display: grid;
    align-items: center;
    column-gap: 20px
}

.casino-listing__top {
    padding: 8px 12px;
    width: calc(100% + var(--item-padding) * 2);
    margin-left: calc(var(--item-padding) * -1);
    margin-top: calc(var(--item-padding) * -1);
    margin-bottom: var(--item-padding);
    text-transform: uppercase;
    color: var(--Text-wbg-Headings, #313131);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700
}

.casino-listing__info {
    position: relative;
    height: 100%;
    padding-left: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px
}

.casino-listing__info-link {
    padding: 4px 12px;
    border-radius: 12px;
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05));
    color: var(--Buttons-Secondary, #5f57d4);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-decoration-line: underline;
    text-decoration-thickness: 5.5%;
    text-underline-offset: 20%;
    text-underline-position: from-font
}

.casino-listing__img::before {
    content: counter(casino-listing);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--Buttons-Primary, #ec6b1c);
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--Background-White, #f7f7f7);
    text-align: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 700
}

.casino-listing__img > img, .casino-listing__img > svg {
    width: 100%;
    max-width: 280px;
    max-height: 96px;
    object-fit: contain
}

.casino-listing__title {
    color: var(--Text-wbg-Headings, #313131);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    font-weight: 700
}

.casino-listing__rate {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    color: var(--text-wbg-text-wbg, #636363);
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.casino-listing__rate::after {
    content: "★★★★★";
    display: block;
    font-size: 18px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0;
    font-weight: 300;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.casino-listing__bonus {
    display: grid;
    grid-template-columns:.92fr 1fr;
    row-gap: 8px;
    column-gap: 15px
}

.casino-listing__bonus-block {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    grid-column: 1/-1;
    border-radius: 8px;
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05));
    padding: 8px;
    color: var(--Text-wbg-Headings, #313131);
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

.casino-listing__bonus-block::before {
    content: url('data:image/svg+xml,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="24" cy="41" rx="22" ry="3" fill="url(%23a)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" fill="url(%23b)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" fill="url(%23c)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" stroke="url(%23d)" stroke-width=".2"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" fill="url(%23e)"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" fill="url(%23f)"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" stroke="url(%23g)" stroke-width=".2"/><path d="M24 13c0-6.894-6.333-9.767-9.851-6.894S15.556 13 24 13Zm0 0c0-6.894 6.333-9.767 9.851-6.894S32.444 13 24 13Z" stroke="%23FE985A"/><path fill="url(%23h)" stroke="url(%23i)" stroke-width=".2" d="M21.1 27.1h5.8v13.8h-5.8z"/><path fill="url(%23j)" d="M8 27h32v3H8z"/><path fill="url(%23k)" stroke="url(%23l)" stroke-width=".2" d="M21.1 13.1h5.8v13.8h-5.8z"/><defs><linearGradient id="b" x1="39.36" y1="25" x2="7.517" y2="39.973" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="c" x1="40" y1="25" x2="39.015" y2="42.723" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="d" x1="8" y1="25" x2="41.566" y2="36.382" gradientUnits="userSpaceOnUse"><stop stop-color="%23fff" stop-opacity=".8"/><stop offset=".231" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="e" x1="40.84" y1="13" x2="10.163" y2="30" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="f" x1="41.5" y1="13" x2="40.768" y2="28.521" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="g" x1="7" y1="13" x2="41" y2="27" gradientUnits="userSpaceOnUse"><stop offset=".1" stop-color="%23fff" stop-opacity=".8"/><stop offset=".54" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="h" x1="27" y1="27" x2="23.221" y2="41.576" gradientUnits="userSpaceOnUse"><stop stop-color="%23F98C4A"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="i" x1="21" y1="30.5" x2="23" y2="30.5" gradientUnits="userSpaceOnUse"><stop offset=".036" stop-color="%23fff" stop-opacity=".8"/><stop offset=".099" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="j" x1="24" y1="27" x2="24" y2="30" gradientUnits="userSpaceOnUse"><stop stop-opacity=".35"/><stop offset=".507" stop-opacity=".146"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="k" x1="27" y1="13" x2="23.221" y2="27.576" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF9A5C"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="l" x1="21" y1="13" x2="27.98" y2="13.507" gradientUnits="userSpaceOnUse"><stop offset=".1" stop-color="%23fff" stop-opacity=".8"/><stop offset=".479" stop-color="%23fff" stop-opacity="0"/></linearGradient><radialGradient id="a" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(28.1111 0 0 2.62371 24 41)"><stop offset=".01"/><stop offset=".468" stop-opacity=".7"/><stop offset=".729" stop-opacity=".1"/><stop offset=".795" stop-opacity="0"/></radialGradient></defs></svg>');
    display: block;
    width: 48px;
    height: 48px;
    justify-self: flex-start
}

.casino-listing__bonus-block span {
    flex: 1
}

.casino-listing__promo {
    max-width: 100%;
    justify-self: end
}

.casino-listing__promo-info {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem
}

.casino-listing__advantages {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 32px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .07)
}

.casino-listing__advantages-item {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.casino-listing__advantages-item::before {
    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"><rect width="16" height="16" rx="8" fill="%2310DB76"/><path d="m4 8 2.5 2.5L12 5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
    display: block;
    width: 16px;
    height: 16px;
    margin: 4px
}

.casino-listing__advantages-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -16px;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, .07)
}

.casino-listing__advantages-item:nth-of-type(3n)::after {
    display: none
}

.casino-listing__btns {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px
}

.casino-listing__btns .btn {
    width: 100%;
    min-width: 220px
}

.casino-listing__payments {
    margin-top: 12px;
    margin-inline: auto;
    max-width: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap
}

.casino-listing__payments-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 24px
}

.casino-listing__payments img, .casino-listing__payments svg {
    max-width: 36px;
    max-height: 24px;
    object-fit: contain;
}

.promo-copy {
    position: relative;
    border-radius: 12px;
    border: 1px dashed var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    padding: 8px 8px 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.promo-copy.copied .promo-copy__btn {
    background: 0 0
}

.promo-copy.copied .promo-copy__btn::before {
    opacity: 1
}

.promo-copy.copied .promo-copy__btn svg {
    opacity: 0
}

.promo-copy.copied::after {
    opacity: 1
}

.promo-copy::after {
    content: "";
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    top: 4px;
    left: 4px;
    pointer-events: none;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    border-radius: 8px;
    background: var(--buttons-secondary-15, rgba(95, 87, 212, .15))
}

.promo-copy__text {
    color: var(--Text-wbg-Headings, #313131);
    text-transform: uppercase;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700
}

.promo-copy__btn {
    position: relative;
    border-radius: 8px;
    background: var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px
}

.promo-copy__btn svg, .promo-copy__btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.promo-copy__btn svg {
    opacity: 1
}

.promo-copy__btn::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="18" viewBox="0 0 14 18" fill="none"><rect x="1" y="1" width="12" height="16" rx="2" fill="%235F57D4" stroke="%235F57D4"/></svg>');
    display: block;
    width: 14px;
    height: 18px;
    opacity: 0
}

.tooltip {
    position: relative;
    z-index: 5;
    width: max-content;
    padding: 4px 8px 4px 4px;
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    border-radius: 31px;
    background: var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    color: var(--buttons-secondary-68, rgba(95, 87, 212, .68));
    font-size: .875rem;
    line-height: 1.25rem;
    cursor: pointer;
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.tooltip--small {
    padding: 4px
}

.tooltip::before {
    content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.5 6.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0" fill="%235F57D4" fill-opacity=".68"/><rect x="9" y="9" width="2" height="6" rx="1" fill="%235F57D4" fill-opacity=".68"/><circle cx="10" cy="10" r="8" stroke="%235F57D4" stroke-opacity=".68" stroke-width="1.5"/></svg>');
    display: block;
    width: 20px;
    height: 20px
}

.tooltip:hover {
    background: var(--Buttons-Secondary-40, rgba(95, 87, 212, .4))
}

.tooltip:hover .tooltip__info {
    display: block
}

.tooltip__info {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100vw;
    max-width: 280px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    background: var(--Background-Pure-white, #fff);
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1);
    color: var(--text-wbg-text-wbg, #636363);
    font-size: .875rem;
    line-height: 1.25rem;
    display: none
}

.slot-list {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 16px
}

.slot-list:not(:first-child) {
    margin-top: 16px
}

.slot-list--scroll {
    overflow-x: auto;
    grid-template-rows:1fr 1fr;
    grid-auto-flow: column;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.slot-list--scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none
}

.slot-list--scroll .slot-card {
    min-width: 210px
}

:is(.bg-block,.hatched-block) .slot-list--scroll {
    width: calc(100% + 32px);
    padding-right: 32px
}

.scrolling .slot-list .slot-card {
    pointer-events: none;
    user-select: none
}

.casino-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 32px;
    --card-padding: 24px
}

.casino-top:not(:first-child) {
    margin-top: 32px
}

.casino-top__card {
    padding: var(--card-padding, 24px);
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    background: var(--Background-Pure-white, #fff)
}

.casino-top__card-block {
    padding: 20px;
    width: calc(100% + var(--card-padding, 24px) * 2);
    margin-left: calc(var(--card-padding, 24px) * -1);
    margin-top: calc(var(--card-padding, 24px) * -1);
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--buttons-secondary-15, rgba(95, 87, 212, .15))
}

.casino-top__card-info {
    flex: 1
}

.casino-top__card-bonus {
    flex: 1
}

.casino-top__card-promo {
    flex: .58
}

.casino-top__card-btns {
    flex: .53
}

.casino-top__card:not(:has(.casino-top__card-promo)) .casino-top__card-bonus {
    flex: 1.6
}

.casino-top__card-info {
    position: relative;
    display: grid;
    grid-template-columns:201px 1fr;
    column-gap: 12px
}

.casino-top__card-info > img, .casino-top__card-info > svg {
    max-width: 100%;
    object-fit: contain
}

.casino-top__card-title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: var(--Text-wbg-Headings, #313131)
}

.casino-top__card-rate {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    color: var(--Text-wbg-Headings, #313131);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700
}

.casino-top__card-rate::after {
    content: "★★★★★";
    display: block;
    font-size: 18px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0;
    font-weight: 300;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.casino-top__card-bonus, .casino-top__card-btns, .casino-top__card-promo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.casino-top__card-bonus {
    gap: 4px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--Text-wbg-Headings, #313131);
    text-align: center
}

.casino-top__card-bonus::before {
    content: url('data:image/svg+xml,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="24" cy="41" rx="22" ry="3" fill="url(%23a)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" fill="url(%23b)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" fill="url(%23c)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" stroke="url(%23d)" stroke-width=".2"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" fill="url(%23e)"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" fill="url(%23f)"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" stroke="url(%23g)" stroke-width=".2"/><path d="M24 13c0-6.894-6.333-9.767-9.851-6.894S15.556 13 24 13Zm0 0c0-6.894 6.333-9.767 9.851-6.894S32.444 13 24 13Z" stroke="%23FE985A"/><path fill="url(%23h)" stroke="url(%23i)" stroke-width=".2" d="M21.1 27.1h5.8v13.8h-5.8z"/><path fill="url(%23j)" d="M8 27h32v3H8z"/><path fill="url(%23k)" stroke="url(%23l)" stroke-width=".2" d="M21.1 13.1h5.8v13.8h-5.8z"/><defs><linearGradient id="b" x1="39.36" y1="25" x2="7.517" y2="39.973" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="c" x1="40" y1="25" x2="39.015" y2="42.723" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="d" x1="8" y1="25" x2="41.566" y2="36.382" gradientUnits="userSpaceOnUse"><stop stop-color="%23fff" stop-opacity=".8"/><stop offset=".231" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="e" x1="40.84" y1="13" x2="10.163" y2="30" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="f" x1="41.5" y1="13" x2="40.768" y2="28.521" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="g" x1="7" y1="13" x2="41" y2="27" gradientUnits="userSpaceOnUse"><stop offset=".1" stop-color="%23fff" stop-opacity=".8"/><stop offset=".54" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="h" x1="27" y1="27" x2="23.221" y2="41.576" gradientUnits="userSpaceOnUse"><stop stop-color="%23F98C4A"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="i" x1="21" y1="30.5" x2="23" y2="30.5" gradientUnits="userSpaceOnUse"><stop offset=".036" stop-color="%23fff" stop-opacity=".8"/><stop offset=".099" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="j" x1="24" y1="27" x2="24" y2="30" gradientUnits="userSpaceOnUse"><stop stop-opacity=".35"/><stop offset=".507" stop-opacity=".146"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="k" x1="27" y1="13" x2="23.221" y2="27.576" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF9A5C"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="l" x1="21" y1="13" x2="27.98" y2="13.507" gradientUnits="userSpaceOnUse"><stop offset=".1" stop-color="%23fff" stop-opacity=".8"/><stop offset=".479" stop-color="%23fff" stop-opacity="0"/></linearGradient><radialGradient id="a" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(28.1111 0 0 2.62371 24 41)"><stop offset=".01"/><stop offset=".468" stop-opacity=".7"/><stop offset=".729" stop-opacity=".1"/><stop offset=".795" stop-opacity="0"/></radialGradient></defs></svg>');
    display: block;
    width: 48px;
    height: 48px
}

.casino-top__card-promo {
    gap: 8px
}

.casino-top__card-promo-info {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem
}

.casino-top__card-btns {
    gap: 8px
}

.casino-top__card-btns .btn {
    width: 100%;
    flex: 1
}

.mob-menu {
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 80;
    background: var(--Background-Black, #000);
    padding-bottom: 8px
}

.mob-menu__list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center
}

.mob-menu__item {
    position: relative;
    flex: 1
}

.mob-menu__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1)
}

.mob-menu__item:first-child::before {
    display: none
}

.mob-menu__link {
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    height: 100%;
    color: var(--Text-wbg-Subtext, #9a9a9a);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.mob-menu__link img, .mob-menu__link svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain
}

.mob-menu__link.current {
    color: var(--Buttons-Secondary, #5f57d4)
}

.app-block {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--buttons-secondary-15, rgba(95, 87, 212, .15));
    background: var(--Background-Pure-white, #fff);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.app-block:not(:first-child) {
    margin-top: 16px
}

.app-block__info {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.app-block__img > img,
.app-block__img > svg {
    width: 100%;
    max-width: 280px;
    max-height: 96px;
    object-fit: contain
}

@media (max-width: 767.9px) {
    .app-block__img > img,
    .app-block__img > svg{
        height: 68px;
    }
}

.app-block__rate {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    justify-content: center;
    color: var(--Text-wbg-Headings, #313131);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

.app-block__rate::after {
    content: "★★★★★";
    display: block;
    font-size: 18px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0;
    font-weight: 300;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.app-block__descr {
    margin-bottom: 9px;
    color: var(--text-wbg-text-wbg, #636363);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem
}

.app-block__bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.app-block__bonus-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 8px;
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05));
    padding: 8px;
    color: var(--Text-wbg-Headings, #313131);
    text-align: left;
    font-weight: 700
}

.app-block__bonus-block::before {
    content: url('data:image/svg+xml,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="24" cy="41" rx="22" ry="3" fill="url(%23a)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" fill="url(%23b)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" fill="url(%23c)"/><rect x="8.1" y="25.1" width="31.8" height="15.8" rx=".4" stroke="url(%23d)" stroke-width=".2"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" fill="url(%23e)"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" fill="url(%23f)"/><path d="M7.1 13.5c0-.22.18-.4.4-.4h33c.22 0 .4.18.4.4v13a.4.4 0 0 1-.4.4h-33a.4.4 0 0 1-.4-.4z" stroke="url(%23g)" stroke-width=".2"/><path d="M24 13c0-6.894-6.333-9.767-9.851-6.894S15.556 13 24 13Zm0 0c0-6.894 6.333-9.767 9.851-6.894S32.444 13 24 13Z" stroke="%23FE985A"/><path fill="url(%23h)" stroke="url(%23i)" stroke-width=".2" d="M21.1 27.1h5.8v13.8h-5.8z"/><path fill="url(%23j)" d="M8 27h32v3H8z"/><path fill="url(%23k)" stroke="url(%23l)" stroke-width=".2" d="M21.1 13.1h5.8v13.8h-5.8z"/><defs><linearGradient id="b" x1="39.36" y1="25" x2="7.517" y2="39.973" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="c" x1="40" y1="25" x2="39.015" y2="42.723" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="d" x1="8" y1="25" x2="41.566" y2="36.382" gradientUnits="userSpaceOnUse"><stop stop-color="%23fff" stop-opacity=".8"/><stop offset=".231" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="e" x1="40.84" y1="13" x2="10.163" y2="30" gradientUnits="userSpaceOnUse"><stop stop-color="%23685A52"/><stop offset="1" stop-color="%23131313"/></linearGradient><linearGradient id="f" x1="41.5" y1="13" x2="40.768" y2="28.521" gradientUnits="userSpaceOnUse"><stop stop-color="%235F57D4"/><stop offset="1" stop-color="%236057D1"/></linearGradient><linearGradient id="g" x1="7" y1="13" x2="41" y2="27" gradientUnits="userSpaceOnUse"><stop offset=".1" stop-color="%23fff" stop-opacity=".8"/><stop offset=".54" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="h" x1="27" y1="27" x2="23.221" y2="41.576" gradientUnits="userSpaceOnUse"><stop stop-color="%23F98C4A"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="i" x1="21" y1="30.5" x2="23" y2="30.5" gradientUnits="userSpaceOnUse"><stop offset=".036" stop-color="%23fff" stop-opacity=".8"/><stop offset=".099" stop-color="%23fff" stop-opacity="0"/></linearGradient><linearGradient id="j" x1="24" y1="27" x2="24" y2="30" gradientUnits="userSpaceOnUse"><stop stop-opacity=".35"/><stop offset=".507" stop-opacity=".146"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="k" x1="27" y1="13" x2="23.221" y2="27.576" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF9A5C"/><stop offset="1" stop-color="%23EC6B1C"/></linearGradient><linearGradient id="l" x1="21" y1="13" x2="27.98" y2="13.507" gradientUnits="userSpaceOnUse"><stop offset=".1" stop-color="%23fff" stop-opacity=".8"/><stop offset=".479" stop-color="%23fff" stop-opacity="0"/></linearGradient><radialGradient id="a" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(28.1111 0 0 2.62371 24 41)"><stop offset=".01"/><stop offset=".468" stop-opacity=".7"/><stop offset=".729" stop-opacity=".1"/><stop offset=".795" stop-opacity="0"/></radialGradient></defs></svg>');
    display: block;
    width: 48px;
    height: 48px;
    justify-self: flex-start
}

.app-block__promo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.app-block__promo .tooltip {
    margin: 0
}

.app-block__promo .tooltip__info {
    right: 0;
    left: unset
}

.app-block__advantages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px
}

.app-block__advantages-item {
    position: relative;
    padding-left: 24px;
    color: var(--Text-wbg-Subtext, #9a9a9a);
    font-size: .875rem;
    line-height: 1.25rem;
    min-height: 24px
}

.app-block__advantages-item::before {
    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"><rect width="16" height="16" rx="8" fill="%2310DB76"/><path d="m4 8 2.5 2.5L12 5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    margin: 4px
}

.app-block__avail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.app-block__avail-item {
    display: flex;
    align-items: center
}

.app-block__avail-item > img, .app-block__avail-item > svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px
}

.app-block__avail-item::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"><rect x="3.5" y="3" width="10" height="10" rx="5" fill="%2310DB76"/><path d="M6.5 8 8 9.5 10.5 7" stroke="%23fff" stroke-linecap="round"/></svg>');
    display: block;
    width: 17px;
    height: 16px;
    line-height: 16px
}

.app-block__avail-item--not::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"><rect x="3.5" y="3" width="10" height="10" rx="5" fill="%23DB1014"/><path d="m6.5 6 4 4m-4 0 4-4" stroke="%23fff" stroke-linecap="round"/></svg>')
}

.app-block__btns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px
}

.app-block__btns .btn {
    width: 100%;
    min-width: 220px;
    padding: 8px
}

.app-block__btns:has(.app-block__payments) .btn {
    min-width: 260px
}

.app-block__payments {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px
}

.app-block__payments img {
    max-width: 36px;
    max-height: 24px
}

.written-by {
    margin-bottom: calc(var(--wrapper-margin, 40px) * -1);
    padding-block: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
}

.written-by:not(:first-child) {
    margin-top: 24px
}

.written-by__img {
    max-width: 40px;
    max-height: 40px;
    object-fit: cover;
    border-radius: 50%;
    padding: 2px;
    margin: 4px;
    background: linear-gradient(90deg, #ec6b1c 0, #5f57d4 100%)
}

.written-by__name {
    color: var(--text-wbg-text-wbg, #636363);
    margin-left: 8px
}

.written-by__name a, .written-by__name span {
    color: var(--Buttons-Secondary, #5f57d4);
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font
}

.written-by__time {
    min-height: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, .07);
    color: var(--text-wbg-text-wbg, #636363)
}

.bonus-list {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    column-gap: 16px;
    row-gap: 20px
}

.bonus-list:not(:first-child) {
    margin-top: 20px
}

.casino-list {
    overflow-x: auto;
    display: flex;
    align-items: stretch;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.casino-list:not(:first-child) {
    margin-top: 20px
}

.casino-list .casino-card {
    flex: 1
}

.casino-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none
}

:is(.bg-block,.hatched-block) .casino-list {
    width: calc(100% + 32px);
    padding-right: 32px
}

.scrolling .casino-list .casino-card {
    pointer-events: none;
    user-select: none
}

.comments-form:not(:first-child) {
    margin-top: 16px
}

.comments-form .form__content {
    display: grid;
    grid-template-columns:328px 1fr;
    column-gap: 24px;
    row-gap: 0
}

.comments-form textarea {
    min-height: 232px
}

.comments-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px
}

.comments-list:not(:first-child) {
    margin-top: 44px
}

.comments-list__item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07));
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap
}

.comments-list__name {
    width: 100%;
    color: var(--Text-wbg-Headings, #313131);
    font-weight: 700
}

.comments-list__descr {
    width: 100%;
    color: var(--text-wbg-text-wbg, #636363)
}

.comments-list__rating {
    color: var(--Text-wbg-Headings, #313131);
    font-size: .875rem;
    line-height: 1.25rem;
    gap: 4px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%)
}

.comments-list__rating::after {
    content: "★★★★★";
    display: block;
    font-size: 18px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0;
    font-weight: 300;
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.comments-list__rating::after {
    letter-spacing: 4px
}

.comments-list__time {
    color: var(--Text-wbg-Subtext, #9a9a9a);
    font-size: .875rem;
    line-height: 1.25rem
}

.comments-list__rating, .comments-list__time {
    width: max-content
}

.content-grid {
    display: grid;
    grid-template-columns:1fr 328px;
    align-items: stretch;
    column-gap: 20px
}

.content-grid:not(:first-child) {
    margin-top: 20px
}

.content-grid .table > img {
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    margin-left: -16px;
    height: 160px;
    object-fit: cover;
}

.content-grid * + .table {
    margin-top: 12px;
}

.content-grid__content > :only-child {
    height: 100%
}

.content-grid .wp-block-table {
    padding-inline: 16px
}

.content-grid .wp-block-table tr:first-child td {
    padding-top: 24px
}

.content-grid .wp-block-table tr:last-child td {
    padding-bottom: 24px
}

.content-grid .wp-block-table tr td {
    padding: 12px 0
}

.content-grid .wp-block-table tr td:first-child {
    font-size: 1rem;
    line-height: 1.5rem
}

.play-banner {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 648px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.play-banner:not(:first-child) {
    margin-top: 20px
}

.play-banner .btn {
    position: relative;
    z-index: 1;
    min-width: 240px
}

.play-banner > img, .play-banner::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.play-banner::after {
    content: "";
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.90) 80%);
}

.play-banner img {
    z-index: -1;
    object-fit: cover
}

.play-banner__bonus {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    padding: 7px 8px;
    max-width: 328px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(2px);
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: var(--text-dbg-Heading, #fff);
    transition-property: box-shadow;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.play-banner__bonus img,
.play-banner__bonus svg:not([play-banner__bonus-arrow]) {
    max-width: 72px;
    object-fit: contain;
    max-height: 32px;
}

.play-banner__bonus-arrow {
    margin-left: auto;
}

@media (max-width: 767.9px) {
    .play-banner__bonus {
        position: relative;
        transform: unset;
        left: unset;
        bottom: unset;
        width: 100%;
        margin-top: auto;
        min-width: unset;
    }
}

@media (any-hover: hover) {
    .play-banner__bonus:hover {
        box-shadow: 0 0 10px 2px var(--Buttons-Secondary-40, rgba(95, 87, 212, .8));
    }
}

.banner-block {
    padding: 32px;
    border-radius: 20px;
    max-width: var(--width-container);
    background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0, rgba(0, 0, 0, .88) 100%);
    display: grid;
    grid-template-columns:1fr 360px;
    grid-template-rows:auto auto auto auto 1fr;
    column-gap: 40px;
    align-items: flex-start
}

.banner-block:not(:first-child) {
    margin-top: 20px
}

.banner-block__info {
    font-weight: 700;
    color: var(--Buttons-Primary, #ec6b1c);
    margin-bottom: 16px
}

.banner-block__title {
    color: var(--text-dbg-Heading, #fff);
    margin-bottom: 8px;
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 700;
}

.banner-block__text {
    color: var(--text-dbg-text, #dedede);
    font-weight: 500
}

.banner-block__by {
    padding-block: 8px;
    color: var(--text-dbg-text, #dedede);
    margin-bottom: 8px
}

.banner-block__by a, .banner-block__by span {
    color: var(--Buttons-Primary, #ec6b1c);
    font-weight: 700
}

.banner-block__by a {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.banner-block__by a:active {
    opacity: .6
}

.banner-block__btns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 44px;
    align-self: flex-end
}

.banner-block__btns .btn {
    min-width: 234px
}

.small-card-list {
    width: 100%;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.small-card-list:not(:first-child) {
    margin-top: 16px
}

@media (min-width: 576px) {
    .fixed-el {
        display: none
    }

    .author-block__descr, .author-block__info {
        grid-column: 1/-1
    }

    .author-block__info {
        margin-top: 8px
    }

    .author-block__descr {
        margin-top: 12px
    }

    .mob-menu {
        display: none
    }

    .comments-list__time {
        margin-left: auto
    }
}

@media (min-width: 768px) {
    .bg-block--grid {
        display: grid;
        grid-template-columns:1fr auto;
        column-gap: 16px
    }

    .bg-block--grid > * {
        grid-column: 1/-1
    }

    .bg-block--grid > h2 {
        grid-column: 1/2
    }

    .bg-block--grid > h2 + .btn {
        grid-column: 2/3;
        align-self: flex-start
    }

    /*.how-to .how-to__item {*/
    /*    grid-template-rows:auto auto*/
    /*}*/
    .how-to .how-to__item:has(img) {
        grid-template-columns: 1fr 1fr
    }

    .how-to .how-to__item:has(img)::before, .how-to .how-to__item:has(img) > img {
        grid-row: 1/3;
        align-self: center
    }

    .how-to .how-to__item:not(:has(img)) {
        grid-template-columns: 1fr
    }

    .app-block__info {
        flex-basis: 220px;
        flex-grow: 0
    }

    .app-block__bonus {
        flex-grow: 1;
        flex-basis: auto
    }

    .app-block__bonus, .app-block__btns {
        align-self: stretch;
        padding-left: 16px;
        border-left: 1px solid rgba(0, 0, 0, .07)
    }

    .comments-form .form__label:not(:first-child):not(.form__label--area) {
        margin-top: 16px
    }

    .comments-form .form__label--area {
        align-self: stretch;
        grid-column: 2/3;
        grid-row: 1/10
    }
}

@media (min-width: 992px) {
    .casino-listing__item {
        grid-template-columns:345px 1fr 260px
    }

    .casino-listing__info {
        padding-right: 20px;
        border-right: 1px solid rgba(0, 0, 0, .07)
    }

    .casino-listing__bonus {
        align-self: end
    }

    .casino-listing__promo {
        justify-self: end
    }

    .casino-listing__promo-info {
        align-self: center;
        justify-self: start
    }

    .casino-listing__advantages {
        align-self: flex-start
    }

    .casino-listing__btns {
        padding-left: 20px;
        border-left: 1px solid rgba(0, 0, 0, .07)
    }

    .casino-listing__top {
        grid-column: 1/4;
        grid-row: 1/2
    }

    .casino-listing__info {
        grid-column: 1/2;
        grid-row: 2/4
    }

    .casino-listing__bonus {
        grid-column: 2/3;
        grid-row: 2/3
    }

    .casino-listing__advantages {
        grid-column: 2/3;
        grid-row: 3/4
    }

    .casino-listing__btns {
        grid-column: 3/4;
        grid-row: 2/4
    }

    .app-block__advantages {
        flex-grow: 1.6;
        flex-basis: auto
    }

    .app-block__btns {
        flex-grow: 0;
        flex-basis: 237px
    }

    .app-block__advantages, .app-block__avail {
        align-self: stretch;
        padding-left: 16px;
        border-left: 1px solid rgba(0, 0, 0, .07)
    }

    .app-block__avail-item:not(:first-child) {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, .07)
    }

    .content-grid > :not(:first-child) {
        margin: 0
    }

    .banner-block > * {
        grid-column: 1/2
    }

    .banner-block > img, .banner-block > svg {
        grid-row: 2/6;
        grid-column: 2/3
    }

    .banner-block__info {
        grid-column: 1/-1
    }

}

@media (min-width: 1240px) {
    .header__burger {
        display: none
    }

    .header__search:not(.active) .header__search-wrap {
        display: none
    }

    .header__search.active .header__search-wrap {
        display: block
    }

    .header__search-panel {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    .header__search-close {
        display: none
    }

    .header__search-result {
        position: absolute;
        top: 100%;
        right: 0;
        width: 508px;
        border-radius: 12px;
        background-color: #232020;
    }

    .header__search-result-content {
        min-height: 167px;
        padding: 0 30px;
        max-height: 315px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .header__search-result-list {
        padding: 0 30px;
        width: calc(100% - 10px);
        max-height: 315px
    }

    .header .header-menu > .item.parent, .header .header-menu > .item:not(.parent) > a, .header .header-menu > .item:not(.parent) > span {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        color: #fff;
        text-align: center;
        padding-block: 15px
    }

    .header .header-menu > .item.parent:active, .header .header-menu > .item:not(.parent) > a:active, .header .header-menu > .item:not(.parent) > span:active {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu > .item svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px
    }

    .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 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0
    }

    .header .header-menu .item.parent::before {
        content: "";
        width: 100%;
        height: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        transform: translate(0, -4px);
        display: none
    }

    .header .header-menu > .item > .submenu {
        max-width: 268px
    }

    .header .header-menu > .item > .submenu > .item:not(:last-child) {
        background-image: linear-gradient(to top, #222326 1px, transparent 1px);
        background-size: calc(100% - 20px) 100%;
        background-position-x: 10px;
        background-repeat: no-repeat
    }

    .header .header-menu .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content;
        min-width: 268px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        display: none;
        border-radius: 10px;
        background-color: #000;
        box-shadow: inset 0 0 8px 0 hsla(0, 0%, 100%, .25)
    }

    .header .header-menu .submenu .submenu {
        overflow-y: auto;
        overflow-x: clip;
        background-color: #202022;
        box-shadow: inset 0 0 2px 0 hsla(0, 0%, 100%, .25);
        top: 0;
        left: calc(100% - 1px);
        transform: translateX(0);
        grid-template-rows:repeat(7, auto);
        grid-auto-flow: column;
        height: auto;
        max-height: calc(100vh - 100px)
    }

    @supports not selector(::-webkit-scrollbar) {
        .header .header-menu .submenu .submenu {
            scrollbar-width: thin;
            scrollbar-color: red transparent
        }
    }.header .header-menu .submenu .submenu::-webkit-scrollbar {
         width: 4px
     }

    .header .header-menu .submenu .submenu::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: red;
        border-radius: 9px;
        border: 4px solid transparent
    }

    .header .header-menu .submenu .submenu::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 9px
    }

    .header .header-menu .submenu .item {
        border-radius: 10px;
        width: 268px
    }

    .header .header-menu .submenu .item.parent, .header .header-menu .submenu .item:not(.parent) > a, .header .header-menu .submenu .item:not(.parent) > span {
        padding: 15px 16px;
        min-height: 51px;
        text-align: left
    }

    .header .header-menu .submenu .item:not(.parent) a, .header .header-menu .submenu .item:not(.parent) span {
        width: 100%
    }

    .header .header-menu .submenu .item:active {
        background-color: #131314
    }

    .header .header-menu .submenu .item:active svg {
        transform: rotate(-90deg)
    }

    .casino-top__card-info {
        align-items: center
    }

    .casino-top__card-info > img, .casino-top__card-info > svg {
        grid-row: 1/3
    }

    .casino-top__card-title {
        align-self: flex-end
    }

    .casino-top__card-rate {
        align-self: flex-start;
        margin-top: 4px
    }

    .casino-top__card-bonus, .casino-top__card-btns, .casino-top__card-promo {
        align-self: stretch
    }

    .casino-top__card-bonus::after, .casino-top__card-btns::after, .casino-top__card-promo::after {
        content: "";
        position: absolute;
        top: 0;
        left: -12px;
        width: 1px;
        height: 100%;
        background: rgba(95, 87, 212, .15)
    }
}

@media (min-width: 1240px) and (any-hover: hover) {
    .header .header-menu > .item.parent:hover, .header .header-menu > .item:not(.parent) > a:hover, .header .header-menu > .item:not(.parent) > span:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu > .item.parent:focus, .header .header-menu > .item:not(.parent) > a:focus, .header .header-menu > .item:not(.parent) > span:focus {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu > .item.parent:hover > svg {
        transform: rotate(-180deg)
    }

    .header .header-menu > .item.parent:hover > svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu > .item.parent:hover > .submenu {
        display: flex
    }

    .header .header-menu .item.parent:hover::before {
        display: block
    }

    .header .header-menu .item.parent:hover > .submenu {
        display: flex
    }

    .header .header-menu .submenu .item.parent:hover > .submenu {
        display: grid
    }

    .header .header-menu .submenu .item:hover {
        background-color: #131314
    }

    .header .header-menu .submenu .item:hover svg {
        transform: rotate(-90deg)
    }

    .header .header-menu .submenu .item:focus {
        background-color: #131314
    }

    .header .header-menu .submenu .item:focus svg {
        transform: rotate(-90deg)
    }
}

@media (max-width: 1535px) {
    .footer {
        padding: 90px;
        grid-template-columns:1fr
    }

    .footer__nav {
        margin-top: 80px
    }

    .footer__nav-wrap:nth-of-type(3n+1) {
        padding-left: 0;
        border-left: 0
    }
}

@media (max-width: 1440px) {
    /*.bg-block, .hatched-block {*/
    /*    margin-inline: var(--offsets, 20px)*/
    /*}*/
    .form-block {
        margin-inline: var(--offsets, 20px)
    }

    .modal__content {
        max-width: calc(100% - var(--offsets, 20px) * 2)
    }

    .banner-block {
        margin-inline: var(--offsets, 20px)
    }
}

@media (max-width: 1239.9px) {
    .header {
        min-height: 50px;
        padding: 8px 12px
    }

    .header .container {
        padding: 0
    }

    .header__wrap {
        flex-wrap: wrap
    }

    .header__logo {
        max-width: 140px;
        max-height: 40px;
        margin-inline: auto
    }

    .header__logo img, .header__logo svg {
        max-width: 140px;
        max-height: 40px
    }

    .header__nav {
        transform: translateX(0);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        padding: 46px 0 10px;
        margin: 0;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #000;
        transition-property: transform;
        transition-duration: .2s;
        transition-timing-function: ease-in-out;
        transition-delay: 0s
    }

    .header__search.active {
        z-index: 50
    }

    .header__search.active .header__search-wrap {
        transform: translateX(0)
    }

    .header__search.active .header__search-panel {
        position: relative
    }

    .header__search-wrap {
        transform: translateX(-100%);
        transition-property: transform;
        transition-duration: .2s;
        transition-timing-function: ease-in-out;
        transition-delay: 0s;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        right: 0;
        bottom: 0;
        padding: 20px 15px;
        background: #060606
    }

    .header__search-result-content-list {
        padding: 20px 0;
    }

    .header__search-input {
        flex: 1
    }

    .header__search-result {
        flex: 1;
        overflow-y: auto;
        /*padding-right: 20px;*/
        margin-top: 0
    }

    @supports not selector(::-webkit-scrollbar) {
        .header__search-result {
            scrollbar-width: thin;
            scrollbar-color: rgba(185, 185, 185, .5333333333) transparent
        }
    }.header__search-result::-webkit-scrollbar {
         width: 4px
     }

    .header__search-result::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: rgba(185, 185, 185, .5333333333);
        border-radius: 9px;
        border: 4px solid transparent
    }

    .header__search-result::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 9px
    }

    .header__search-result-header {
        display: none
    }

    .header__search-result-link {
        padding-inline: 0 18px;
    }

    .header__search-result-content {
        /*align-items: flex-start;*/
        justify-content: flex-start;
        height: 100%
    }

    .header__search-result-default, .header__search-result-empty {
        margin-top: 160px
    }

    .header__search-result-empty {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .header__search-result-empty::before {
        content: url('data:image/svg+xml,<svg stroke="%23fff" fill="none" stroke-width="0" height="70" width="70" xmlns="http://www.w3.org/2000/svg" viewBox="1.87 2.38 17.26 17.25" class="search-result_noSearchIcon__J8ubk"><path d="M9.621 17.125a7 7 0 1 0 0-14 7 7 0 0 0 0 14m8.756 1.749-3.807-3.807" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        opacity: .4
    }

    .header .header-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0
    }

    .header .header-menu {
        padding-inline: 16px;
        max-height: 100%;
        flex-wrap: unset;
        overflow-y: auto;
        gap: 10px
    }

    @supports not selector(::-webkit-scrollbar) {
        .header .header-menu {
            scrollbar-width: thin;
            scrollbar-color: rgba(185, 185, 185, .5333333333) transparent
        }
    }.header .header-menu::-webkit-scrollbar {
         width: 4px
     }

    .header .header-menu::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: rgba(185, 185, 185, .5333333333);
        border-radius: 9px;
        border: 4px solid transparent
    }

    .header .header-menu::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 9px
    }

    .header .header-menu .item {
        border-bottom: 1px solid #202022;
        flex-wrap: wrap;
        align-items: flex-start;
        transition: none
    }

    .header .header-menu .item a, .header .header-menu .item span {
        transition-duration: 0s
    }

    .header .header-menu .item.parent {
        padding: 10px 10px 12px;
        justify-content: space-between;
        gap: 10px
    }

    .header .header-menu .item.parent svg {
        transform: rotate(-90deg)
    }

    .header .header-menu .item.parent > a, .header .header-menu .item.parent > span {
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center
    }

    .header .header-menu .item:not(.parent) > a, .header .header-menu .item:not(.parent) > span {
        width: 100%;
        padding: 10px 10px 12px;
        display: flex;
        flex-direction: row;
        align-items: center
    }

    .header .header-menu .item svg {
        width: 20px;
        height: 20px
    }

    .header .header-menu .item.parent.active {
        position: fixed;
        padding: 0;
        z-index: 10;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100svw;
        gap: 0;
        background: #000
    }

    .header .header-menu .item.parent.active > .submenu {
        display: flex;
        padding: 0 16px;
        height: calc(100% - 50px);
        overflow-y: auto
    }

    .header .header-menu .item.parent.active > svg {
        display: none
    }

    .header .header-menu .item.parent.active > a, .header .header-menu .item.parent.active > span {
        width: 100%;
        padding: 15px 25px;
        padding-right: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 36px;
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, .7)
    }

    .header .header-menu .item.parent.active > a::before, .header .header-menu .item.parent.active > span::before {
        content: url('data:image/svg+xml,<svg stroke="%23fff" fill="none" stroke-width="0" height="16" width="20" xmlns="http://www.w3.org/2000/svg" class="pointer_root__NBSBR header-nav-mobile-controls_prevIcon__zysZf" viewBox="0 0 20 16" data-pointer-icon-direction="left"><path d="M.996 8H19m-7-7 7 7-7 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        display: block;
        width: 20px;
        height: 16px;
        transform: scale(-1)
    }

    .header .header-menu .item.parent:not(.active):active > a, .header .header-menu .item.parent:not(.active):active > span {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item.parent:not(.active):active svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item:not(.parent) a:active, .header .header-menu .item:not(.parent) span:active {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item:not(.parent) a:active svg path, .header .header-menu .item:not(.parent) span:active svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        display: none;
        gap: 10px
    }

    .header .header-menu .submenu a, .header .header-menu .submenu span {
        font-weight: 400
    }

    .header:not(.menu-active) .header__nav {
        transform: translateX(-100%)
    }

    .toc-section__list {
        grid-template-columns:repeat(3, 1fr)
    }

    .advantages-list {
        grid-template-columns:repeat(3, 1fr)
    }

    .slot-list {
        grid-template-columns:repeat(4, 1fr)
    }

    .casino-top__card-btns {
        flex-direction: row;
        gap: 12px;
        border-top: 1px solid rgba(95, 87, 212, .15)
    }

    .casino-top__card-rate {
        margin-top: 6px
    }

    .casino-top__card-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .bonus-list {
        grid-template-columns:repeat(3, 1fr)
    }

    .small-card-list {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 1239.9px) and (any-hover: hover) {
    .header .header-menu .item.parent:not(.active):hover > a, .header .header-menu .item.parent:not(.active):hover > span {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item.parent:not(.active):hover svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item.parent:not(.active):focus > a, .header .header-menu .item.parent:not(.active):focus > span {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item.parent:not(.active):focus svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item:not(.parent) a:hover, .header .header-menu .item:not(.parent) span:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item:not(.parent) a:hover svg path, .header .header-menu .item:not(.parent) span:hover svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item:not(.parent) a:focus, .header .header-menu .item:not(.parent) span:focus {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .header .header-menu .item:not(.parent) a:focus svg path, .header .header-menu .item:not(.parent) span:focus svg path {
        stroke: var(--Buttons-Secondary, #5f57d4)
    }
}

@media (max-width: 1200px) {
    .footer {
        padding: 30px
    }

    .footer__logo {
        max-width: 200px
    }

    .footer__info {
        align-items: center;
        gap: 30px;
        padding: 0
    }

    .footer__lang {
        margin-top: 0;
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }

    .footer__nav {
        margin-top: 50px;
        grid-template-columns:1fr;
        row-gap: 35px
    }

    .footer__nav-wrap {
        padding: 0;
        border: 0
    }

    .footer__nav-wrap:not(.active) .footer__nav-list {
        display: none
    }

    .footer__nav-wrap.active .footer__nav-title > svg {
        transform: rotate(-180deg)
    }

    .footer__nav-wrap.active .footer__nav-list {
        display: flex
    }

    .footer__nav-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 0;
        font-size: 1rem;
        line-height: 1.375rem;
        cursor: pointer
    }

    .footer__nav-title > svg {
        display: block
    }

    .footer__nav-list {
        margin-top: 16px;
        gap: 14px
    }

    .footer__text {
        margin-top: 70px
    }

    .footer__logos {
        column-gap: 20px;
        row-gap: 10px
    }

    .footer__logos img, .footer__logos svg {
        max-height: 30px
    }
}

@media (max-width: 991.9px) {
    .modal__content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0
    }

    .modal__body {
        aspect-ratio: unset;
        flex: 1
    }

    .content-img {
        flex-direction: column
    }

    .content-img > img {
        width: 100%;
        max-width: 100%;
        /*order: -1*/
    }

    .content-img .content-img__content {
        display: flex;
        flex-direction: column
    }

    .content-img .content-img__content p:first-of-type {
        margin-top: 0
    }

    .content-img .content-img__content picture, .content-img .content-img__content > img {
        width: 100%;
        max-width: 100%;
        float: unset;
        margin: 20px 0 0;
        order: 100
    }

    .pros-cons {
        grid-template-columns:1fr
    }

    .advantages-list {
        grid-template-columns:repeat(2, 1fr)
    }

    .casino-listing__item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 20px
    }

    .casino-listing__info {
        padding-left: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start
    }

    .casino-listing__info-link {
        margin-left: auto
    }

    .casino-listing__img {
        position: relative;
        padding-left: 52px
    }

    .casino-listing__img > img, .casino-listing__img > svg {
        max-width: 140px;
        max-height: 68px
    }

    .casino-listing__rate {
        justify-content: flex-end
    }

    .casino-listing__bonus {
        column-gap: 20px
    }

    .casino-listing__bonus:not(:has(.casino-listing__promo)) {
        grid-template-columns:1fr;
        grid-template-rows:1fr
    }

    .casino-listing__bonus:has(.casino-listing__promo) .casino-listing__bonus-block {
        grid-column: 1/2;
        grid-row: 1/3
    }

    .casino-listing__promo {
        justify-self: center
    }

    .casino-listing__advantages {
        margin-top: 0;
        padding-top: 20px
    }

    .casino-listing__btns {
        flex-direction: row;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, .07)
    }

    .casino-listing__btns .btn {
        width: 166px;
        min-width: unset
    }

    .casino-listing__payments {
        max-width: 100%;
        margin-top: 0;
        margin-left: 8px
    }

    .slot-list {
        grid-template-columns:repeat(3, 1fr)
    }

    .app-block__avail {
        width: 100%;
        flex-direction: row
    }

    .app-block__avail-item:not(:first-child) {
        padding-left: 12px;
        margin-left: 12px;
        border-left: 1px solid rgba(0, 0, 0, .07)
    }

    .bonus-list {
        grid-template-columns:repeat(2, 1fr)
    }

    .content-grid {
        grid-template-columns:1fr
    }

    .content-grid > :not(:first-child) {
        margin-top: 16px
    }

    .content-grid__content {
        display: contents
    }

    .content-grid__content h1, .content-grid__content h2 {
        order: -1;
        margin-bottom: 0;
    }

    .content-grid__content > * {
        order: 2
    }

    .content-grid__content > img {
        order: 0
    }

    .content-grid > * {
        order: 2
    }

    .content-grid > img {
        order: 0;
        min-height: 180px;
        margin: 0 auto;
    }


    .small-card-list {
        grid-template-columns:repeat(2, 1fr)
    }
}


@media (max-width: 767.9px) {
    .content-grid > img {
        height: 180px;
    }

    .bg-block--grid {
        display: flex;
        flex-direction: column
    }

    .bg-block--grid > * {
        order: 1
    }

    .bg-block--grid > .btn {
        order: 150;
        width: 100%;
        margin-top: 16px
    }

    .header__wrap {
        justify-content: space-between;
        column-gap: 0
    }

    .header__search {
        margin-left: 0
    }

    .header__btns {
        justify-content: center;
        width: 100%
    }

    .header__btns .btn {
        flex: 1
    }

    .footer__soc {
        display: none
    }

    .modal__footer {
        flex-wrap: wrap
    }

    .modal__footer > .btn {
        width: 100%;
        min-width: unset
    }

    .modal__footer > .btn::before {
        width: 100%;
        height: 1px;
        top: -12px;
        transform: translateY(0);
        left: 0
    }

    .content-img {
        gap: 12px
    }

    .content-img .content-img__content {
        gap: 12px
    }

    .gallery__item {
        max-width: 90%
    }

    .toc-section__list {
        grid-template-columns:repeat(2, 1fr)
    }

    .how-to .how-to__item {
        grid-template-columns:1fr;
        row-gap: 0;
        padding: 48px 16px 16px 16px;
    }

    .how-to .how-to__item::before {
        top: 16px;
        left: 50%;
        translate: -50% 0;
    }

    .how-to .how-to__item > img {
        margin-top: 20px
    }

    .how-to .how-to__item::before {
        justify-self: center
    }

    .how-to .how-to__title {
        margin-top: 20px
    }

    .how-to .how-to__descr {
        margin-top: 8px
    }

    .advantages-list {
        grid-template-columns:1fr
    }

    .advantages-list > :nth-of-type(n+9) {
        display: none
    }

    .app-block {
        flex-direction: column;
        gap: 0
    }

    .app-block > :not(:first-child) {
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, .07)
    }

    .app-block > * {
        order: 1
    }

    .app-block__advantages {
        order: 10
    }

    .app-block__btns {
        flex-direction: row
    }

    .app-block__btns .btn {
        width: unset;
        flex: 1
    }

    .app-block__btns:has(.app-block__payments) {
        flex-wrap: wrap
    }

    .app-block__btns:has(.app-block__payments) .app-block__payments {
        width: 100%
    }

    .app-block__promo {
        width: 100%
    }

    .app-block__promo-copy {
        flex: 1
    }

    .app-block__payments {
        margin-top: 4px
    }

    .comments-form .form__content {
        grid-template-columns:1fr;
        row-gap: 16px
    }

    .play-banner {
        min-height: 240px;
        padding-top: 48px;
    }

    .banner-block {
        grid-template-columns:1fr
    }

    .banner-block > * {
        order: 10
    }

    .banner-block > img, .banner-block > svg {
        order: 1;
        width: 100%;
        margin-bottom: 12px
    }

    .banner-block__info {
        order: -1
    }

    .banner-block__btns .btn {
        flex: 1;
        min-width: unset;
        width: 100%
    }
}

@media (max-width: 575.9px) {
    .container:not(.section-hero) > .btn {
        width: 100%
    }

    .bg-block {
        border: 1px solid var(--Strokes-Stroke, rgba(0, 0, 0, .07))
    }

    .bg-block, .hatched-block {
        padding: 16px
    }

    .top-block::after {
        height: 24px;
        border-radius: 24px 24px 0 0
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 16px
    }

    h1 {
        font-size: 26px;
        line-height: 32px;
    }

    h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 2rem
    }

    h3:not([class]):not(:first-child) {
        margin-top: 24px
    }

    p:not([class]) {
        margin-top: 16px
    }

    :root {
        --offsets: 16px;
        --wrapper-margin: 24px
    }

    .header__wrap {
        column-gap: 0
    }

    .header__btns .btn {
        flex: 1
    }

    .section-hero {
        padding-top: 12px;
        padding-bottom: 56px;
    }

    .section-hero h1 {
        font-size: 1.75rem;
        line-height: 2.5rem
    }

    .content-img {
        margin-top: 16px
    }

    .go-up {
        position: fixed;
        bottom: 140px;
        right: 24px
    }

    .breadcrumbs {
        padding-block: 4px;
        margin-block: 8px
    }

    :is(.bg-block,.hatched-block) .gallery-list {
        width: calc(100% + 16px);
        padding-right: 16px
    }

    .toc-section__list {
        grid-template-columns:1fr
    }

    .author-block {
        flex-direction: column
    }

    .author-block__wrap {
        grid-template-columns:1fr;
        gap: 20px
    }

    .author-block__author {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        text-align: center
    }

    .author-block__author-name {
        margin-left: 0
    }

    .author-block__soc {
        justify-content: center
    }

    .author-block__info {
        justify-content: center
    }

    .author-block__info-item {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, .07)
    }

    .author-block__info-item:nth-of-type(odd) {
        max-width: 50%
    }

    .author-block__info-item:nth-of-type(odd):last-child {
        max-width: 100%
    }

    .author-block__info-item:nth-of-type(odd):not(:last-child) {
        padding-right: 8px
    }

    .author-block__info-item:nth-of-type(even) {
        max-width: 50%;
        padding-right: 0
    }

    .author-block__info-item:nth-of-type(even)::after {
        display: none
    }

    .author-block__info-item:nth-of-type(even):not(:last-child) {
        padding-left: 8px
    }

    .author-block__info-item:not(:last-child):after {
        right: 0;
        transform: translateY(calc(-50% + 4px))
    }

    .how-to:not(:first-child) {
        margin-top: 12px
    }

    .casino-listing > .btn {
        margin-top: 16px
    }

    .casino-listing__list {
        gap: 16px
    }

    .casino-listing {
        --item-padding: 16px
    }

    .casino-listing__item {
        row-gap: 16px
    }

    .casino-listing__info {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding-bottom: 16px
    }

    .casino-listing__info-link {
        order: 5;
        margin-top: 4px;
        margin-inline: auto
    }

    .casino-listing__img {
        width: 100%;
        padding-right: 52px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .casino-listing__img::before {
        width: 24px;
        height: 24px
    }

    .casino-listing__title {
        width: 100%;
        margin-top: 16px;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        order: 10;
        font-size: .875rem;
        line-height: 1.25rem
    }

    .casino-listing__rate {
        justify-content: flex-start
    }

    .casino-listing__bonus {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 0
    }

    .casino-listing__bonus-block {
        text-align: left
    }

    .casino-listing__promo {
        width: 100%;
        margin-top: 12px
    }

    .casino-listing__promo-info {
        margin-top: 4px
    }

    .casino-listing__advantages {
        padding-top: 16px;
        gap: 8px
    }

    .casino-listing__advantages-item {
        word-spacing: 9999999px
    }

    .casino-listing__advantages-item::after {
        right: -4px
    }

    .casino-listing__btns {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
        border-top: 0
    }

    .casino-listing__btns .btn {
        width: 100%
    }

    .casino-listing__payments {
        margin: 0
    }

    .slot-list {
        grid-template-columns:repeat(2, 1fr);
        gap: 12px
    }

    .slot-list > :nth-of-type(n+9) {
        display: none
    }

    :is(.bg-block,.hatched-block) .slot-list--scroll {
        width: calc(100% + 16px);
        padding-right: 16px
    }

    .casino-top {
        gap: 24px;
        --card-padding: 16px
    }

    .casino-top:not(:first-child) {
        margin-top: 24px
    }

    .casino-top__card-title {
        font-size: 1.25rem;
        line-height: 2rem
    }

    .casino-top__card-block {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px
    }

    .casino-top__card-info > img, .casino-top__card-info > svg {
        width: 100%
    }

    .casino-top__card-title {
        margin-top: 9px;
        font-size: 1.5rem;
        line-height: 2.25rem
    }

    .casino-top__card-bonus {
        flex-direction: row;
        justify-content: flex-start
    }

    .casino-top__card-bonus::before {
        width: 56px;
        height: 56px
    }

    .casino-top__card-bonus, .casino-top__card-promo {
        padding-top: 12px;
        border-top: 1px solid rgba(95, 87, 212, .15)
    }

    .casino-top__card-promo-copy {
        width: 100%
    }

    .casino-top__card-btns {
        padding-top: 12px
    }

    .casino-top__card > :not(:first-child) {
        margin-top: 16px
    }

    .app-block {
        /*row-gap: 16px;*/
        padding: 16px
    }

    .app-block__btns {
        flex-direction: column
    }

    .written-by {
        justify-content: center;
        flex-wrap: wrap
    }

    .written-by__name, .written-by__time {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .written-by__time {
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 8px 0 0 0;
        margin: 8px 0 0 0;
        border-left: 0
    }

    .written-by__time::before {
        content: "";
        width: 280px;
        max-width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, .07);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%)
    }

    .bonus-list {
        grid-template-columns:repeat(1, 1fr)
    }

    .bonus-list > :nth-of-type(n+5) {
        display: none
    }

    .casino-list:not(:first-child) {
        margin-top: 16px
    }

    :is(.bg-block,.hatched-block) .casino-list {
        width: calc(100% + 16px);
        padding-right: 16px
    }

    .comments-list__item {
        flex-direction: column
    }

    .comments-list__time {
        margin-top: 8px
    }

    .banner-block {
        padding: 16px
    }

    .banner-block__btns {
        flex-direction: column
    }


    .small-card-list {
        gap: 12px
    }

    .small-card-list > :nth-of-type(n+5) {
        display: none
    }
}

@media (max-width: 575.9px) and (max-width: 575.9px) {
    .author-block__info {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, .07)
    }
}

@media (max-width: 1239.9px) and (min-width: 768px) {
    .header__logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%)
    }
}

@media (max-width: 991.9px) and (min-width: 576px) {
    .casino-listing__title {
        text-align: left;
        align-items: flex-start;
        height: 100%;
        justify-content: flex-start;
        padding-left: 20px;
        margin-inline: 20px 4px;
        border-left: 1px solid rgba(0, 0, 0, .07)
    }
}

@media (max-width: 1239.9px) and (min-width: 576px) {
    .casino-top__card-block {
        display: grid;
        grid-template-columns:1fr 1fr;
        column-gap: 40px;
        row-gap: 0
    }

    .casino-top__card-btns {
        grid-column: 1/3;
        margin-top: 20px;
        padding-top: 20px
    }

    .casino-top__card-btns .btn {
        flex: unset;
        width: clamp(240px, 240px, 100%)
    }

    .casino-top__card-info {
        grid-column: 1/2;
        grid-row: 1/3
    }

    .casino-top__card-info::after {
        content: "";
        position: absolute;
        top: 0;
        right: -20px;
        width: 1px;
        height: 100%;
        background: rgba(95, 87, 212, .15)
    }

    .casino-top__card-title {
        margin-top: 12px
    }

    .casino-top__card-bonus {
        grid-column: 2/3
    }

    .casino-top__card-promo {
        grid-column: 2/3;
        margin-top: 16px
    }

    .casino-top__card:not(:has(.casino-top__card-promo)) .casino-top__card-bonus {
        grid-row: 1/3
    }
}

@media (max-width: 991.9px) and (min-width: 768px) {
    .app-block {
        flex-wrap: wrap;
        row-gap: 32px
    }

    .app-block:has(.app-block__avail) .app-block__advantages {
        width: 100%
    }

    .app-block:not(:has(.app-block__avail)) .app-block__advantages {
        width: calc(50% - 16px);
        align-self: stretch;
        position: relative
    }

    .app-block:not(:has(.app-block__avail)) .app-block__advantages::before {
        content: "";
        width: calc(200% + 32px);
        height: 1px;
        position: absolute;
        left: 0;
        top: -16px;
        background-color: rgba(0, 0, 0, .07)
    }

    .app-block:not(:has(.app-block__avail)) .app-block__advantages ~ .app-block__btns {
        width: 50%
    }

    .app-block__avail ~ .app-block__btns {
        flex-direction: row;
        width: 100%
    }

    .app-block:has(.app-block__avail) .app-block__advantages, .app-block__avail, .app-block__avail ~ .app-block__btns {
        position: relative
    }

    .app-block:has(.app-block__avail) .app-block__advantages::before, .app-block__avail::before, .app-block__avail ~ .app-block__btns::before {
        content: "";
        position: absolute;
        top: -16px;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, .07)
    }

    .app-block:not(:has(.app-block__advantages)) {
        flex-wrap: nowrap
    }

    .banner-block {
        grid-template-columns:360px 1fr
    }

    .banner-block > * {
        grid-column: 1/-1
    }

    .banner-block > img, .banner-block > svg {
        grid-column: 1/2;
        grid-row: 2/3
    }

    .banner-block h2 {
        grid-column: 2/3;
        grid-row: 2/3;
        margin: 0;
        align-self: center
    }

    .banner-block__by {
        margin-top: 40px
    }

    .banner-block__btns {
        margin-top: 44px
    }
}

@media (max-width: 1239.9px) and (min-width: 992px) {
    .content-grid .app-block {
        flex-wrap: wrap
    }

    .content-grid .app-block:not(:has(.app-block__advantages)):not(:has(.app-block__avail)) .app-block__btns {
        flex: 1;
        padding-left: 0;
        border-left: 0;
        flex-direction: row;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, .07)
    }

    .banner-block {
        column-gap: 20px
    }

    .banner-block__btns .btn {
        min-width: 200px
    }
}

@media (hover: hover) {
    p:not([class]) a:hover {
        opacity: .6
    }

    ol.wp-block-list li a:hover, ol:not([class]) li a:hover, ul.wp-block-list li a:hover, ul:not([class]) li a:hover {
        opacity: .6
    }

    .form .form__rate-label:hover svg path {
        fill: #ec6b1c
    }

    .form .form__rate-label:hover svg rect {
        stroke: #ec6b1c
    }

    .form .form__rate-label:hover ~ .form__rate-label svg path {
        fill: #ec6b1c
    }

    .form .form__rate-label:hover ~ .form__rate-label svg rect {
        stroke: #ec6b1c
    }

    .header__logo:is(a):hover {
        opacity: .6
    }

    .header__logo:is(a):focus {
        opacity: .6
    }

    .header__search-result-link:hover {
        opacity: .6
    }

    .header__search-result-link:focus {
        opacity: .6
    }

    .footer a.footer__logo:hover {
        opacity: .6
    }

    .footer a.footer__logo:focus {
        opacity: .6
    }

    .footer__lang:hover {
        background: #1b1a1a
    }

    .footer__lang:focus {
        background: #1b1a1a
    }

    .footer__lang-item:hover {
        background-color: #1b1a1a
    }

    .footer__soc-link:hover {
        background: var(--Strokes-White-20, rgba(255, 255, 255, .5))
    }

    .footer__soc-link:focus {
        background: var(--Strokes-White-20, rgba(255, 255, 255, .5))
    }

    a.footer__nav-title__a:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .footer__nav-list a:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .footer__nav-list a:focus {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .modal__close:hover {
        opacity: .6
    }

    .btn--primary:hover {
        background: var(--Buttons-Primary-Hover, #c54700)
    }

    .btn--primary:focus {
        background: var(--Buttons-Primary-Hover, #c54700)
    }

    .btn--secondary:hover {
        background: var(--Buttons-Secondary-Hover, #4535b1)
    }

    .btn--secondary:focus {
        background: var(--Buttons-Secondary-Hover, #4535b1)
    }

    .btn--secondary-tr:hover {
        background: var(--Buttons-Secondary-40, rgba(95, 87, 212, .8))
    }

    .btn--secondary-tr:focus {
        background: var(--Buttons-Secondary-40, rgba(95, 87, 212, .8))
    }

    .btn--primary-line:hover {
        color: var(--Buttons-Primary-Hover, #c54700);
        border-color: var(--Buttons-Primary-Hover, #c54700)
    }

    .btn--primary-line:focus {
        color: var(--Buttons-Primary-Hover, #c54700);
        border-color: var(--Buttons-Primary-Hover, #c54700)
    }

    .btn--secondary-line:hover {
        color: var(--Buttons-Secondary-Hover, #4535b1);
        border-color: var(--Buttons-Secondary-Hover, #4535b1)
    }

    .btn--secondary-line:focus {
        color: var(--Buttons-Secondary-Hover, #4535b1);
        border-color: var(--Buttons-Secondary-Hover, #4535b1)
    }

    .btn--white-line:hover {
        border-color: var(--Strokes-White-20, rgba(255, 255, 255, .8))
    }

    .btn--white-line:focus {
        border-color: var(--Strokes-White-20, rgba(255, 255, 255, .8))
    }

    .go-up:hover {
        background: #eae5e5
    }

    .go-up:focus {
        background: #363636
    }

    .breadcrumbs a:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .breadcrumbs a:focus {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .toc-section__item a:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .toc-section__item a:focus {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .author-block__soc a:hover {
        background: var(--Strokes-White-20, rgba(255, 255, 255, .2))
    }

    .author-block__soc a:focus {
        background: var(--Strokes-White-20, rgba(255, 255, 255, .2))
    }

    .bonus-card:hover {
        box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1);
        border-color: var(--Strokes-Stroke, rgba(0, 0, 0, .07))
    }

    .slot-card:hover {
        box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1)
    }

    .advantage-card:hover {
        box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1)
    }

    .small-card:hover {
        box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1)
    }

    .casino-card:hover {
        box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1)
    }

    .app-card:hover {
        box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .1)
    }

    .app-card__link:hover {
        opacity: .7
    }

    .app-card__link:focus {
        opacity: .7
    }

    .mob-menu__link:hover {
        color: var(--Buttons-Secondary, #5f57d4)
    }

    .banner-block__by a:hover {
        opacity: .6
    }

    .banner-block__by a:focus {
        opacity: .6
    }

    .author-article__soc a:hover {
        background: var(--Strokes-White-20, rgba(255, 255, 255, .2))
    }

    .author-article__soc a:focus {
        background: var(--Strokes-White-20, rgba(255, 255, 255, .2))
    }
}

.content-btn.align-left {
    margin-right: auto;
}

.content-btn.align-center {
    margin-right: auto;
    margin-left: auto;
}

.content-btn.align-right {
    margin-left: auto;
}

.content-btn {
    margin-top: 1rem;
}

.btn:has(.triangle) {
    flex-direction: row-reverse;
}

.hatched-block > .btn {
    color: #ffffff;
    border: 1px solid #fff;
}

* + .wp-block-heading {
    margin-top: 2rem;
}

.page-404 {
    background-image: url("../img/404-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-404 .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 1rem;
}


.page-404__title {
    font-size: 6rem;
    line-height: 6.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.page-404__subtitle {
    color: #fff;
}

@media (max-width: 575px) {
    .page-404__title {
        font-size: 4rem;
        line-height: 4.5rem;
        font-weight: 700;
    }
}

/* author-article */

.author-article {
    position: relative;
    padding-top: 40px;
    padding-bottom: 72px;
}

.author-article:has(.author-article__img) {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 12px;
    align-items: center;
}

.author-article:not(:first-child) {
    margin-top: 20px
}

.author-article__title {
    color: var(--Text-wbg-Headings, #313131);
    margin-bottom: 12px;
}

.author-article__img {
    max-width: 220px;
    max-height: 220px;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    padding: 6px;
    margin: 10px;
    background: linear-gradient(90deg, #ec6b1c 0, #5f57d4 100%)
}

.author-article__soc {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.author-article__soc-item {
    display: flex
}

.author-article__soc a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--buttons-secondary-5, rgba(95, 87, 212, .05));
    transition-property: background;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s
}

.author-article__soc a svg {
    display: block
}

.author-article__soc a:active {
    background: var(--Strokes-White-20, rgba(255, 255, 255, .2))
}

.author-article__list-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.author-article__info {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px;
}

.author-article__info-item {
    position: relative;
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--Text-wbg-Subtext, #9a9a9a)
}

.author-article__info-item:not(:last-child) {
    padding-right: 24px
}

.author-article__info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, .07)
}

@media (max-width: 992px) {
    .author-article:has(.author-article__img) {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .author-article__content,
    .author-article__list-wrapper {
        display: contents;
    }

    .author-article__title {
        order: -10;
        margin-bottom: 0;
    }

    .author-article__img {
        order: -9;
        margin: 0 auto;
    }

    .author-article__info {
        order: -8;
        justify-content: center;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .author-article__info-item {
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        text-align: center;
    }

    .author-article__info-item:nth-of-type(odd):last-child {
        grid-column: 1 / -1;
    }

    .author-article__info-item:nth-of-type(odd):not(:last-child) {
        padding-right: 8px;
    }

    .author-article__info-item:nth-of-type(even) {
        padding-right: 0
    }

    .author-article__info-item:nth-of-type(even)::after {
        display: none
    }

    .author-article__info-item:not(:last-child):after {
        transform: translateY(calc(-50% + 4px))
    }

    .author-article__soc {
        order: -7;
        justify-content: center;
    }

    .author-block__descr {
        margin-top: 0;
    }
}

@media (max-width: 575.9px) {
    .author-article {
        padding-top: 12px;
        padding-bottom: 56px;
    }
}

/* cards block */
.cards {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.cards__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    overflow: hidden;
    padding: 16px;
    background: #fff;
}

.cards__item-image {
    margin-bottom: 16px;
    width: calc(100% + 2px + 32px);
    max-width: calc(100% + 2px + 32px);
    height: 180px;
    object-fit: cover;
    margin-left: -16px;
    margin-top: -16px;
}

.cards__item-title {
    margin-bottom: 8px;
    color: #313131;
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.cards__item-description:has(+ * ) {
    margin-bottom: 20px;
}

.cards__item-button {
    width: 100%;
    margin-top: auto;
    border-radius: 22px;
}

@media (max-width: 767.9px) {
    .cards__item-image  {
        height: 20vw;
    }
}

@media (max-width: 575.9px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .cards__item-image {
        height: 40vw;
    }
}
/* cards block */
/* link-list */
.link-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
}

.link-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-list__icon,
.link-list__item > svg {
    max-height: 24px;
    object-fit: contain;
    width: fit-content;
}

.link-list__link {
    color: #5f57d4;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    font-weight: 700;
    text-decoration: underline;
}

@media (hover: hover) {
    .link-list__link:hover {
        opacity: .6;
    }
}

@media (max-width: 575.9px) {
    .link-list {
        grid-template-columns: 1fr;
    }
}
/* link-list */
.play-banner__box {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.play-banner__iframe {
    width: 100%;
    height: 100%;
}

.play-banner__box-close {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    padding: 10px;
}

@media (max-width: 767.9px) {
    .play-banner:has(.active) {
        min-height: 500px;
    }
}

.wp-block-table a,
.advantage-card__descr a,
.pros-cons__list a,
.cards__item a {
    color: var(--Buttons-Secondary, #5f57d4);
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}