@charset "UTF-8";
@font-face {
    font-family: Poppins;
    font-display: swap;
    src: url(../fonts/Poppins-Medium.woff2) format("woff2"), url(../fonts/Poppins-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Poppins;
    font-display: swap;
    src: url(../fonts/Poppins-Regular.woff2) format("woff2"), url(../fonts/Poppins-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url(../fonts/Roboto-Bold.woff2) format("woff2"), url(../fonts/Roboto-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url(../fonts/Roboto-Regular.woff2) format("woff2"), url(../fonts/Roboto-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

*, :after, :before {
    -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 {
    height: auto;
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400
}

p {
    margin-top: 1rem
}

.wrapper {
    margin-top: calc(var(--wrapper-margin) * 2)
}

.wrapper:first-child {
    margin: 0
}

.wrapper.reset {
    margin-block: 0
}

.wrapper > :not(.container) {
    max-width: var(--width-container);
    margin-inline: auto
}

.wrapper > :not(:first-child) {
    margin-top: 24px;
}

.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
}

.container > .btn {
    margin-top: 32px;
    margin-inline: auto
}

.container .container {
    padding-inline: 0
}

.no-scroll {
    overflow: hidden
}

@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: 10px;
        scrollbar-color: var(--primary-simple) transparent
    }
}

html::-webkit-scrollbar {
    width: 10px
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--primary)
}

html::-webkit-scrollbar-track {
    background: 0 0;
    -webkit-box-shadow: inset 0 0 4px 0 #6d6d6d;
    box-shadow: inset 0 0 4px 0 #6d6d6d
}

body {
    background: var(--bg, #fdf7ff);
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    font-family: Poppins
}

.hidden-svg {
    display: none
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 16px
}

h1 {
    font-size: 57px;
    line-height: 120%;
    font-weight: 400
}

h2 {
    font-size: 32px;
    line-height: 136%;
    font-weight: 400;
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

h2 svg {
    max-width: 44px;
    max-height: 44px
}

h2 svg path {
    fill: var(--primary-simple)
}

h3 {
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    margin-top: 20px
}

h4, h5, h6 {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500
}

p {
    margin-top: 0
}

p:not([class]) {
    margin-top: 16px
}

p:not([class]) a {
    color: var(--primary-simple);
    text-decoration: underline;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity
}

p:not([class]) a:active, p:not([class]) a:focus {
    opacity: .6
}

p:not([class]) + img, p:not([class]) + picture {
    display: block;
    margin-top: 20px
}

img {
    max-width: 100%
}

picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

ol:not([class]),
ol.wp-block-list {
    margin-top: 20px;
    counter-reset: custom-counter;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

ol:not([class]) li,
ol.wp-block-list li {
    position: relative;
    counter-increment: custom-counter;
    padding-left: 48px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    /*font-size: 25px;*/
    /*line-height: 136%;*/
    /*font-weight: 400;*/
    color: var(--on-surface)
}

ol:not([class]) li p,
ol.wp-block-list li p
{
    /*font-size: 18px;*/
    /*line-height: 136%;*/
    /*font-weight: 400;*/
    margin-top: 8px;
    color: var(--on-surface-var)
}

ol:not([class]) li::before,
ol.wp-block-list li::before
{
    content: counter(custom-counter);
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 2px;
    background: var(--tertiary);
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    border-radius: 8px;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-tertiary)
}

ul:not([class]),
ul.wp-block-list {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

ul:not([class]) li,
ul.wp-block-list li
{
    position: relative;
    padding-left: 26px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface)
}

ul:not([class]) li p,
ul.wp-block-list li p
{
    margin-top: 0;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

ul:not([class]) li p:not(:first-child),
ul.wp-block-list li p:not(:first-child)
{
    margin-top: 8px
}

ul:not([class]) li::before,
ul.wp-block-list li::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    margin: 6px;
    border-radius: 1.2px;
    background: var(--primary)
}

table:not([class]) {
    width: 100%;
    table-layout: auto;
    border-spacing: 0;
    overflow: hidden
}

:root {
    --height: 0px;
    --offsets: 20px;
    --width-container: 1280px;
    --wrapper-margin: 60px;
    --bg: #fdf7ff;
    --star-color: #ffa959;
    --star-bg: transparent;
    --primary: linear-gradient(180deg, #846aaf 0%, #625690 100%);
    --primary-simple: #846aaf;
    --on-primary: #ffffff;
    --primary-cont: #e7deff;
    --on-primary-cont: #1e1048;
    --primary-fixed: #e7deff;
    --primary-fixed-dim: #ccbeff;
    --on-primary-fixed: #1e1048;
    --on-primary-fixed-var: #4a3e76;
    --secondary: #615b71;
    --on-secondary: #ffffff;
    --secondary-cont: #e7dff8;
    --on-secondary-cont: #1d192b;
    --secondary-fixed: #e7dff8;
    --secondary-fixed-dim: #cac3dc;
    --on-secondary-fixed: #1d192b;
    --on-secondary-fixed-var: #494458;
    --tertiary: #7d5262;
    --tertiary: #7d5262;
    --on-tertiary: #ffffff;
    --tertiary-cont: #ffd9e4;
    --on-tertiary-cont: #31111f;
    --tertiary-fixed: #ffd9e4;
    --tertiary-fixed-dim: #ffd9e4;
    --on-tertiary-fixed: #31111f;
    --on-tertiary-fixed-var: #623b4a;
    --error: #ba1a1a;
    --on-error: #fff;
    --error-cont: #ffdad6;
    --on-error-cont: #410002;
    --surface: #fdf7ff;
    --surface-dim: #ddd8e0;
    --surface-bright: #fdf7ff;
    --surf-cont: #f1ecf4;
    --surf-cont-lowest: #ffffff;
    --surf-cont-low: #f7f2fa;
    --surf-cont-high: #ece6ee;
    --surf-cont-highest: #e6e1e9;
    --on-surface: #1c1b20;
    --on-surface-var: #48454e;
    --outline: #79757f;
    --outline-var: #cac4cf;
    --inverse-surface: #312f35;
    --inverse-on-surface: #f4eff7;
    --inverse-primary: #ccbeff;
    --scrim: #000000;
    --shadow: #000000;
    --primary-opacity-8: rgba(103, 80, 164, 0.0784313725);
    --primary-opacity-12: rgba(103, 80, 164, 0.1215686275);
    --primary-cont-opacity-16: rgba(234, 221, 255, 0.1607843137);
    --on-primary-opacity-8: rgba(255, 255, 255, 0.0784313725);
    --on-primary-opacity-12: rgba(255, 255, 255, 0.1215686275);
    --on-surface-opacity-8: rgba(29, 27, 32, 0.0784313725);
    --on-surface-opacity-12: rgba(29, 27, 32, 0.1215686275);
    --on-secondary-opacity-8: rgba(29, 25, 43, 0.0784313725);
    --on-secondary-opacity-12: rgba(29, 25, 43, 0.1215686275);
    --on-surface-var-opacity-8: rgba(73, 69, 79, 0.0784313725);
    --on-surface-var-opacity-12: rgba(73, 69, 79, 0.1215686275);
    --on-primary-container-opacity-8: rgba(33, 0, 93, 0.0784313725);
    --on-primary-container-opacity-12: rgba(33, 0, 93, 0.1215686275);
    --primary-dark: #ccbeff;
    --on-primary-dark: #33275e;
    --outline-dark: #938f99;
    --outline-var-dark: #48454e;
    --primary-opacity-8-dark: rgba(208, 188, 255, 0.0784313725);
    --primary-opacity-12-dark: rgba(208, 188, 255, 0.1215686275);
    --on-primary-opacity-8-dark: rgba(56, 30, 114, 0.0784313725);
    --on-primary-opacity-12-dark: rgba(56, 30, 114, 0.1215686275);
    --on-surface-opacity-8-dark: rgba(230, 224, 233, 0.0784313725);
    --on-surface-opacity-12-dark: rgba(230, 224, 233, 0.1215686275);
    --on-surface-var-opacity-8-dark: rgba(202, 196, 208, 0.0784313725);
    --on-surface-var-opacity-12-dark: rgba(202, 196, 208, 0.1215686275);
    --on-surface-dark: #e6e0e9;
    --on-surface-var-dark: #bfc9c2
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding-block: 8px;
    background: var(--primary);
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3019607843);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3019607843)
}

.header__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content -webkit-max-content 1fr -webkit-max-content -webkit-max-content;
    -ms-grid-columns: max-content max-content 1fr max-content max-content;
    grid-template-columns:-webkit-max-content -webkit-max-content 1fr -webkit-max-content -webkit-max-content;
    grid-template-columns:max-content max-content 1fr max-content max-content;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 8px
}

.header__logo {
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity
}

.header__logo img {
    max-width: 150px;
    max-height: 44px;
    -o-object-fit: contain;
    object-fit: contain
}

.header__nav {
    width: 100%
}

.header__burger {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 18px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.header__burger::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.header__burger:active::after, .header__burger:focus::after {
    background: var(--on-surface-var-opacity-12-dark)
}

.header__burger.active .header__burger-wrap:before {
    top: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .3s ease .1s, -webkit-transform .3s ease-out .5s;
    transition: top .3s ease .1s, -webkit-transform .3s ease-out .5s;
    transition: top .3s ease .1s, transform .3s ease-out .5s;
    transition: top .3s ease .1s, transform .3s ease-out .5s, -webkit-transform .3s ease-out .5s
}

.header__burger.active .header__burger-wrap span {
    opacity: 0
}

.header__burger.active .header__burger-wrap::after {
    bottom: 5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom .3s ease .1s, -webkit-transform .3s ease-out .5s;
    transition: bottom .3s ease .1s, -webkit-transform .3s ease-out .5s;
    transition: bottom .3s ease .1s, transform .3s ease-out .5s;
    transition: bottom .3s ease .1s, transform .3s ease-out .5s, -webkit-transform .3s ease-out .5s
}

.header__burger-wrap {
    position: relative;
    width: 100%;
    height: 100%
}

.header__burger-wrap span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .3s ease .3s, background .2s;
    transition: opacity .3s ease .3s, background .2s
}

.header__burger-wrap span, .header__burger-wrap::after, .header__burger-wrap::before {
    width: 100%;
    height: 2px;
    background: var(--on-primary)
}

.header__burger-wrap::after, .header__burger-wrap::before {
    content: "";
    position: absolute
}

.header__burger-wrap::before {
    top: 0;
    -webkit-transition: top .3s ease .3s, background .2s, -webkit-transform .3s ease-out .1s;
    transition: top .3s ease .3s, background .2s, -webkit-transform .3s ease-out .1s;
    transition: top .3s ease .3s, transform .3s ease-out .1s, background .2s;
    transition: top .3s ease .3s, transform .3s ease-out .1s, background .2s, -webkit-transform .3s ease-out .1s
}

.header__burger-wrap::after {
    bottom: 0;
    -webkit-transition: bottom .3s ease .3s, background .2s, -webkit-transform .3s ease-out .1s;
    transition: bottom .3s ease .3s, background .2s, -webkit-transform .3s ease-out .1s;
    transition: bottom .3s ease .3s, transform .3s ease-out .1s, background .2s;
    transition: bottom .3s ease .3s, transform .3s ease-out .1s, background .2s, -webkit-transform .3s ease-out .1s
}

.header .header-menu .submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@supports not selector(::-webkit-scrollbar) {
    .header .header-menu .submenu {
        scrollbar-width: thin;
        scrollbar-color: #846aaf transparent
    }
}

.header .header-menu .submenu::-webkit-scrollbar {
    width: 4px
}

.header .header-menu .submenu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #846aaf;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.header .header-menu .item.parent {
    cursor: pointer
}

.header .header-menu .item a {
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.header .header-menu .item svg {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: transform
}

.footer {
    background: var(--surf-cont);
    padding-block: 120px 80px;
    margin-block: calc(var(--wrapper-margin) * 2) 0
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 32px
}

.footer__logo {
    position: relative;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity;
    margin-right: auto
}

.footer__logo img {
    max-width: 165px;
    max-height: 80px;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.footer__nav-list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 16px
}

.footer__nav-list a {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--outline);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: color
}

.footer__nav-list a:focus {
    color: var(--primary-simple)
}

.footer__logos {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--outline-var)
}

.footer__logos img {
    width: auto;
    max-height: 48px;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__rights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden
}

.footer__rights span {
    font-size: 14px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    text-align: center
}

.footer__info {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    text-align: left;
    padding-top: 32px;
    border-top: 1px solid var(--outline-var)
}

.footer__info p {
    margin-top: 16px
}

.footer__info p:first-child {
    margin-top: 0
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--outline-var);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse
}

.footer__bottom p {
    font-size: 14px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    margin-right: auto;
    margin-top: 0
}

.footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    row-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer__links a {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--outline);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: color
}

.footer__links a:active, .footer__links a:focus {
    color: var(--primary-simple)
}

.section-hero {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-block: var(--wrapper-margin, 60px) 0
}

.section-hero h1 {
    /*margin-bottom: 0;*/
    text-align: center
}

.section-hero .btn, .section-hero p {
    text-align: center;
    margin-top: 24px
}

.section-faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 32px
}

.section-faq__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.section-faq__content p {
    max-width: 522px
}

.section-faq__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.section-faq__item {
    position: relative
}

.section-faq__item::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--outline-var);
    -webkit-transition-property: top;
    transition-property: top;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: top
}

.section-faq__item p {
    margin-block: 8px
}

.section-faq__item[open]::after {
    top: 0
}

.section-faq__item[open] summary {
    border-radius: 16px 16px 0 0
}

.section-faq__item[open] summary svg {
    -webkit-transform: translate(0, -50%) rotate(-180deg);
    -ms-transform: translate(0, -50%) rotate(-180deg);
    transform: translate(0, -50%) rotate(-180deg)
}

.section-faq summary {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    min-height: 64px;
    padding: 8px 0;
    padding-right: 48px;
    color: var(--on-surface);
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    cursor: pointer;
    list-style: none
}

.section-faq summary:active::after {
    background: var(--on-surface-var-opacity-12)
}

.section-faq summary::marker {
    content: ""
}

.section-faq summary::-webkit-details-marker {
    display: none
}

.section-faq summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.section-faq summary svg {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: transform
}

.section-faq summary svg path {
    fill: var(--on-surface-var)
}

.section-faq p {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var)
}

.cr-section-hero {
    padding-block: 32px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    color: var(--on-surface)
}

.cr-section-hero h1 {
    font-size: 57px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 32px
}

.cr-section-hero__bonus {
    min-width: 420px;
    max-width: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078)
}

.cr-section-hero__bonus img {
    width: 100%;
    border-radius: 16px
}

.cr-section-hero__bonus-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    text-align: center
}

.cr-section-hero__bonus-info span {
    font-size: 32px;
    line-height: 136%;
    font-weight: 400
}

.cr-section-hero__bonus-copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.cr-section-hero__bonus-copy-text {
    font-family: Roboto
}

.cr-section-hero__bonus-copy-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cr-section-hero__bonus-copy-wrap > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.cr-section-hero__bonus-copy > .btn {
    width: 100%
}

.cr-section-hero__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.cr-section-hero__rate-payout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cr-section-hero__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%)
}

.cr-section-hero__rate::after, .cr-section-hero__rate::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.cr-section-hero__rate::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.cr-section-hero__rate::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.cr-section-hero__payout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

.cr-section-hero__payout svg {
    width: 24px;
    height: 24px
}

.cr-section-hero__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--on-surface-var);
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

.cr-section-hero__author-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cr-section-hero__author-name p {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cr-section-hero__author-name span {
    color: var(--on-surface)
}

.cr-section-hero__author-img {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-simple)
}

.cr-section-hero__author-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.cr-section-hero__soc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.cr-section-hero__soc-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.cr-section-hero__soc-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.cr-section-hero__soc-list li a:active, .cr-section-hero__soc-list li a:focus {
    background: var(--primary-opacity-12-dark)
}

.cr-section-hero__soc-list li svg {
    width: 24px;
    height: 24px
}

.cr-section-hero time {
    padding-left: 8px;
    border-left: 1px solid var(--outline-var);
    margin-top: 0
}

.cr-section-hero__descr {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    margin-top: 20px
}

.cr-section-hero__descr p:first-child {
    margin-top: 0
}

.cr-section-hero__info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px
}

.cr-section-hero__info-item {
    border-radius: 16px;
    padding: 24px;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    background: var(--surface);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.cr-section-hero__info-item_col .cr-section-hero__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.cr-section-hero__info-item_col .cr-section-hero__info-list > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px
}

.cr-section-hero__info-header {
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--outline-var)
}

.cr-section-hero__table th {
    vertical-align: center;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--tertiary);
    margin-top: 0
}

.cr-section-hero__table td {
    vertical-align: top;
    color: var(--on-surface-var);
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

.cr-section-hero__table td, .cr-section-hero__table th {
    text-align: left
}

.cr-section-hero__table-list {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    row-gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cr-section-hero__table-tr {
    min-width: calc((100% - 40px) / 3);
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    color: var(--on-surface-var);
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

.cr-section-hero__table-tr span {
    display: block;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--tertiary)
}

.cr-section-hero__table-inner-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cr-section-hero__table-inner-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4px
}

.cr-section-hero__table-inner-list li svg {
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px
}

.pr-section-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 32px !important
}

.pr-section-hero h1 {
    margin-bottom: 20px
}

.pr-section-hero__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.pr-section-hero__content .btn {
    margin-top: 32px
}

.pr-section-hero__review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    max-width: 408px;
    min-width: 408px;
    padding: 24px;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    border-radius: 16px;
    overflow: hidden
}

.pr-section-hero__review img {
    width: calc(100% + 48px);
    max-width: calc(100% + 48px);
    margin-left: -24px;
    margin-top: -24px;
    aspect-ratio: 408/212;
    -o-object-fit: cover;
    object-fit: cover
}

.pr-section-hero__review-rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px
}

.pr-section-hero__review-rate p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 0;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.pr-section-hero__review-rate p span {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--tertiary)
}

.pr-section-hero__review-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 20px
}

.pr-section-hero__review-info li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.pr-section-hero__review-info li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    width: 1px;
    height: 100%;
    background: var(--outline-var)
}

.pr-section-hero__review-info li span {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--tertiary);
    text-align: center
}

.pr-section-hero__demo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1280/550
}

.pr-section-hero__demo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 20, 33, .8);
    z-index: 1
}

.pr-section-hero__demo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.pr-section-hero__demo .btn {
    z-index: 2
}

.pr-section-hero__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%)
}

.pr-section-hero__rate::after, .pr-section-hero__rate::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.pr-section-hero__rate::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.pr-section-hero__rate::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.pr-section-hero__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--on-surface-var);
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

.pr-section-hero__author-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: nowrap
}

.pr-section-hero__author-name p {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    white-space: normal
}

.pr-section-hero__author-name span {
    color: var(--on-surface)
}

.pr-section-hero__author-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-simple)
}

.pr-section-hero__author-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.pr-section-hero__soc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.pr-section-hero__soc-list li {
    width: 24px;
    height: 24px
}

.pr-section-hero__soc-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 50%;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.pr-section-hero__soc-list li a:active, .pr-section-hero__soc-list li a:focus {
    background: var(--primary-opacity-12)
}

.pr-section-hero__soc-list li svg {
    max-width: 24px;
    max-height: 24px
}

.pr-section-hero__soc-list li svg path {
    fill: var(--primary-simple)
}

.pr-section-hero__date {
    padding-left: 8px;
    border-left: 1px solid var(--outline-var);
    margin-top: 0
}

.pr-section-hero__descr {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    margin-top: 20px
}

.pr-section-hero__descr p:first-child {
    margin-top: 0
}

.btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    border-radius: 100px;
    font-family: Poppins;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    line-height: 24px;
    color: var(--on-primary);
    -webkit-transition-property: background, color, border-color, -webkit-box-shadow;
    transition-property: background, color, border-color, -webkit-box-shadow;
    transition-property: background, box-shadow, color, border-color;
    transition-property: background, box-shadow, color, border-color, -webkit-box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background, box-shadow, color, border-color;
    cursor: pointer;
    overflow: hidden
}

.btn svg {
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px
}

.btn svg path {
    fill: currentColor
}

.btn:has(svg) {
    padding: 8px 16px
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.btn_copy {
    padding: 8px;
    border-radius: 3px;
    border: 1px dashed currentColor;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--primary-simple);
    letter-spacing: .1px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.btn_copy:active, .btn_copy:focus {
    background: var(--primary-opacity-12)
}

.btn_copy svg {
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px
}

.btn_copy svg path {
    fill: currentColor
}

.btn_primary {
    background: var(--primary);
    color: var(--on-primary)
}

.btn_primary:active::after, .btn_primary:focus::after {
    background: var(--on-primary-opacity-12)
}

.btn_primary.disabled, .btn_primary[disabled] {
    background: 0 0;
    color: var(--on-surface)
}

.btn_primary.disabled::after, .btn_primary[disabled]::after {
    background: var(--on-surfce-opacity-12)
}

.btn_primary-dark {
    background: var(--primary-dark);
    color: var(--on-primary-dark)
}

.btn_primary-dark:active::after, .btn_primary-dark:focus::after {
    background: var(--on-primary-opacity-12-dark)
}

.btn_primary-dark.disabled, .btn_primary-dark[disabled] {
    background: 0 0;
    color: var(--on-surface)
}

.btn_primary-dark.disabled::after, .btn_primary-dark[disabled]::after {
    background: var(--on-surfce-opacity-12-dark)
}

.btn_outline {
    padding: 7px 23px;
    background: 0 0;
    color: var(--primary-simple);
    border: 1px solid var(--outline)
}

.btn_outline::after {
    position: absolute;
    inset: 1px
}

.btn_outline:focus {
    border-color: var(--primary)
}

.btn_outline:focus::after {
    background: var(--primary-opacity-12)
}

.btn_outline:active::after {
    background: var(--primary-opacity-12)
}

.btn_outline.disabled, .btn_outline[disabled] {
    border-color: var(--on-surfce-opacity-12);
    color: var(--on-surface)
}

.btn_outline-dark {
    padding: 7px 23px;
    background: 0 0;
    color: var(--primary-dark);
    border: 1px solid var(--outline-dark)
}

.btn_outline-dark::after {
    position: absolute;
    inset: 1px
}

.btn_outline-dark:focus {
    border-color: var(--primary-dark)
}

.btn_outline-dark:focus::after {
    background: var(--primary-opacity-12-dark)
}

.btn_outline-dark:active::after {
    background: var(--primary-opacity-12-dark)
}

.btn_outline-dark.disabled, .btn_outline-dark[disabled] {
    border-color: var(--on-surfce-opacity-12-dark);
    color: var(--on-surface-dark)
}

.btn_text {
    padding: 8px 12px;
    background: 0 0;
    color: var(--primary-simple)
}

.btn_text:active::after, .btn_text:focus::after {
    background: var(--primary-opacity-12)
}

.btn_text.disabled, .btn_text[disabled] {
    color: var(--on-surface)
}

.btn_text-dark {
    padding: 8px 12px;
    background: 0 0;
    color: var(--primary-dark)
}

.btn_text-dark:active::after, .btn_text-dark:focus::after {
    background: var(--primary-opacity-12-dark)
}

.btn_text-dark.disabled, .btn_text-dark[disabled] {
    color: var(--on-surface-dark)
}

.btn_elevated {
    background: var(--surf-cont-low);
    color: var(--primary-simple);
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078)
}

.btn_elevated:active, .btn_elevated:focus {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078)
}

.btn_elevated:active::after, .btn_elevated:focus::after {
    background: var(--primary-opacity-12)
}

.btn_elevated.disabled, .btn_elevated[disabled] {
    color: var(--on-surface)
}

.btn_elevated.disabled::after, .btn_elevated[disabled]::after {
    background: var(--on-surfce-opacity-12)
}

.btn_tonal {
    background: var(--secondary-cont);
    color: var(--on-secondary-cont)
}

.btn_tonal:active::after, .btn_tonal:focus::after {
    background: var(--on-secondary-opacity-12)
}

.btn_tonal.disabled, .btn_tonal[disabled] {
    color: var(--on-surface)
}

.btn_tonal.disabled::after, .btn_tonal[disabled]::after {
    background: var(--on-surfce-opacity-12)
}

.content {
    position: relative;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: box-shadow;
    border-radius: 16px;
    background: var(--primary);
    margin-block: -32px !important
}

.content.active {
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078)
}

.content.active .content__header {
    margin-bottom: -6px
}

.content.active .content__header svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.content.active .content__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.content__header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 32px;
    cursor: pointer;
    font-size: 32px;
    line-height: 136%;
    font-weight: 400;
    color: var(--surface)
}

.content__header h2, .content__header h3 {
    margin: 0;
    font-size: 32px;
    line-height: 136%;
    font-weight: 400
}

.content__header svg {
    position: relative;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin: 4px;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: transform
}

.content__header::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 36px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.content__header:active::after, .content__header:focus::after {
    background: var(--on-surface-var-opacity-12-dark)
}

.content__nav {
    display: none;
    margin-inline: 32px;
    padding: 16px 0 24px;
    border-top: 1px solid var(--outline-var)
}

.content__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 8px
}

.content__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.content__item a {
    padding: 10px 12px;
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background;
    border-radius: 100px
}

.content__item a:active, .content__item a:focus {
    background: var(--primary-opacity-12-dark)
}

.casinos-list {
    margin-top: 52px!important;
}

.casinos-list__list {
    counter-reset: casinos-list;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.casinos-list.hidden tr:nth-of-type(n+9) {
    display: none
}

.casinos-list > .btn {
    margin-inline: auto;
    margin-top: 32px
}

.casinos-list__table {
    width: 100%
}

.casinos-list__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: stretch;
    flex-direction: stretch
}

.casinos-list__table tr:nth-child(1) .casinos-list__item::after {
    content: url('data:image/svg+xml,<svg width="33" height="30" viewBox="0 0 33 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M26.699 3.222H6.333c-.916 0-1.661-.723-1.661-1.611S5.417 0 6.333 0h20.353c.915 0 1.66.723 1.66 1.611.014.888-.732 1.611-1.647 1.611" fill="url(%23a)"/><path d="M27.008 3.222v9.92c0 5.48-4.578 9.92-10.228 9.92h-.51c-3.401 0-6.41-1.611-8.267-4.072a9.7 9.7 0 0 1-1.504-2.905 9.5 9.5 0 0 1-.458-2.943v-9.92z" fill="url(%23b)"/><path d="M25.008 18.99c0 .012.013.012.013.025 3.898.28 5.912-1.51 6.932-3.21.694-1.14 1.034-2.46 1.047-3.792V9.666c0-.393-.04-.786-.118-1.167-.902-4.123-5.624-3.818-5.9-3.793v2.715l.014-.025s3.296-.267 3.23 3.019c.027 1.192 0 1.7 0 1.7s.367 3.818-3.662 4.059c-.013-.038-.026-.064-.039-.102a9.9 9.9 0 0 1-1.517 2.918" fill="url(%23c)"/><path d="M7.992 18.99c0 .012-.013.012-.013.025-3.898.28-5.912-1.51-6.933-3.21C.353 14.666.013 13.346 0 12.014V9.666C0 9.273.04 8.88.118 8.5c.902-4.123 5.624-3.818 5.899-3.793v2.715l-.013-.025s-3.296-.267-3.231 3.019c-.026 1.192 0 1.7 0 1.7s-.366 3.818 3.662 4.059c.013-.038.027-.064.04-.102a10.2 10.2 0 0 0 1.517 2.918" fill="url(%23d)"/><path d="M18.337 22.846H14.48v5.086h3.858z" fill="url(%23e)"/><path d="M20.643 27.933h-8.607a.27.27 0 0 0-.274.266V30h9.143v-1.801c.013-.14-.118-.266-.262-.266" fill="url(%23f)"/><path d="m17.281 7.065.72 1.408a.84.84 0 0 0 .64.444l1.61.228c.692.102.967.926.47 1.396l-1.164 1.103a.83.83 0 0 0-.248.723l.274 1.548c.118.672-.601 1.18-1.23.863l-1.438-.736a.86.86 0 0 0-.785 0l-1.439.736c-.615.317-1.347-.19-1.23-.863l.275-1.548a.77.77 0 0 0-.248-.723l-1.164-1.103c-.497-.47-.223-1.307.47-1.396l1.61-.228a.86.86 0 0 0 .64-.444l.72-1.408c.314-.609 1.203-.609 1.517 0" fill="%23fff"/><defs><linearGradient id="a" x1="4.677" y1="1.605" x2="28.085" y2="1.605" gradientUnits="userSpaceOnUse"><stop stop-color="%23FFE64F"/><stop offset=".249" stop-color="%23FFC936"/><stop offset=".5" stop-color="%23FFF744"/><stop offset=".785" stop-color="%23FFC836"/><stop offset="1" stop-color="%23FFE64E"/></linearGradient><linearGradient id="b" x1="6.03" y1="13.141" x2="27.003" y2="13.141" gradientUnits="userSpaceOnUse"><stop stop-color="%23FFE961"/><stop offset=".249" stop-color="%23FFC936"/><stop offset=".5" stop-color="%23FFDF42"/><stop offset=".785" stop-color="%23FFC836"/><stop offset="1" stop-color="%23FFE961"/></linearGradient><linearGradient id="e" x1="14.415" y1="25.394" x2="18.389" y2="25.394" gradientUnits="userSpaceOnUse"><stop stop-color="%23FFE64F"/><stop offset=".894" stop-color="%23FFAB36"/><stop offset="1" stop-color="%23FFE64E"/></linearGradient><linearGradient id="f" x1="11.794" y1="28.069" x2="20.977" y2="30.052" gradientUnits="userSpaceOnUse"><stop stop-color="%23FFE64F"/><stop offset=".894" stop-color="%23FFAB36"/><stop offset="1" stop-color="%23FFE64E"/></linearGradient><radialGradient id="c" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(19.2906 0 0 18.7081 30.44 11.346)"><stop stop-color="%23FFE64F"/><stop offset=".249" stop-color="%23FFC936"/><stop offset=".5" stop-color="%23FFDF42"/><stop offset=".785" stop-color="%23FFC836"/><stop offset="1" stop-color="%23FFE64E"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-19.2906 0 0 -18.7081 2.258 9.821)"><stop stop-color="%23FFE64F"/><stop offset=".249" stop-color="%23FFC936"/><stop offset=".5" stop-color="%23FFDF42"/><stop offset=".785" stop-color="%23FFC836"/><stop offset="1" stop-color="%23FFE64E"/></radialGradient></defs></svg>')
}

.casinos-list__table tr:nth-child(2) .casinos-list__item::after {
    content: url('data:image/svg+xml,<svg width="33" height="30" viewBox="0 0 33 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M26.699 3.222H6.333c-.916 0-1.661-.723-1.661-1.611S5.417 0 6.333 0h20.353c.915 0 1.66.723 1.66 1.611.014.888-.732 1.611-1.647 1.611" fill="url(%23a)"/><path d="M27.008 3.222v9.92c0 5.48-4.578 9.92-10.228 9.92h-.51c-3.401 0-6.41-1.611-8.267-4.072a9.7 9.7 0 0 1-1.504-2.905 9.5 9.5 0 0 1-.458-2.943v-9.92z" fill="url(%23b)"/><path d="M25.008 18.99c0 .012.013.012.013.025 3.898.28 5.912-1.51 6.932-3.21.694-1.14 1.034-2.46 1.047-3.792V9.666c0-.393-.04-.786-.118-1.167-.902-4.123-5.624-3.818-5.9-3.793v2.715l.014-.025s3.296-.267 3.23 3.019c.027 1.192 0 1.7 0 1.7s.367 3.818-3.662 4.059c-.013-.038-.026-.064-.039-.102a9.9 9.9 0 0 1-1.517 2.918" fill="url(%23c)"/><path d="M7.992 18.99c0 .012-.013.012-.013.025-3.898.28-5.912-1.51-6.933-3.21C.353 14.666.013 13.346 0 12.014V9.666C0 9.273.04 8.88.118 8.5c.902-4.123 5.624-3.818 5.899-3.793v2.715l-.013-.025s-3.296-.267-3.231 3.019c-.026 1.192 0 1.7 0 1.7s-.366 3.818 3.662 4.059c.013-.038.027-.064.04-.102a10.2 10.2 0 0 0 1.517 2.918" fill="url(%23d)"/><path d="M18.337 22.846H14.48v5.086h3.858z" fill="url(%23e)"/><path d="M20.643 27.933h-8.607a.27.27 0 0 0-.274.266V30h9.143v-1.801c.013-.14-.118-.266-.262-.266" fill="url(%23f)"/><path d="m17.281 7.065.72 1.408a.84.84 0 0 0 .64.444l1.61.228c.692.102.967.926.47 1.396l-1.164 1.103a.83.83 0 0 0-.248.723l.274 1.548c.118.672-.601 1.18-1.23.863l-1.438-.736a.86.86 0 0 0-.785 0l-1.439.736c-.615.317-1.347-.19-1.23-.863l.275-1.548a.77.77 0 0 0-.248-.723l-1.164-1.103c-.497-.47-.223-1.307.47-1.396l1.61-.228a.86.86 0 0 0 .64-.444l.72-1.408c.314-.609 1.203-.609 1.517 0" fill="%23fff"/><defs><linearGradient id="a" x1="4.659" y1="1.611" x2="28.341" y2="1.611" gradientUnits="userSpaceOnUse"><stop stop-color="%23ACACAC"/><stop offset=".206" stop-color="%238C8C8C"/><stop offset=".5" stop-color="%23C8C2C2"/><stop offset=".849" stop-color="%23888"/><stop offset="1" stop-color="%23A7A7A7"/></linearGradient><linearGradient id="b" x1="6.03" y1="13.141" x2="27.003" y2="13.141" gradientUnits="userSpaceOnUse"><stop stop-color="%238C8C8C"/><stop offset=".249" stop-color="%23ACACAC"/><stop offset=".5" stop-color="%23D7D7D7"/><stop offset=".785" stop-color="%23A7A7A7"/><stop offset="1" stop-color="%23888"/></linearGradient><linearGradient id="e" x1="14.415" y1="25.394" x2="18.389" y2="25.394" gradientUnits="userSpaceOnUse"><stop stop-color="%239A9A9A"/><stop offset=".894" stop-color="%23949494"/><stop offset="1" stop-color="%23CECECE"/></linearGradient><linearGradient id="f" x1="11.794" y1="28.069" x2="20.977" y2="30.052" gradientUnits="userSpaceOnUse"><stop stop-color="%23C4C4C4"/><stop offset=".894" stop-color="%238A8A8A"/><stop offset="1" stop-color="%23A3A3A3"/></linearGradient><radialGradient id="c" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(19.2906 0 0 18.7081 30.44 11.346)"><stop stop-color="%23909090"/><stop offset=".249" stop-color="%23B4B4B4"/><stop offset=".5" stop-color="%238E8E8E"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(19.2906 0 0 18.7081 5.432 11.346)"><stop stop-color="%23909090"/><stop offset=".249" stop-color="%23B4B4B4"/><stop offset=".5" stop-color="%238E8E8E"/></radialGradient></defs></svg>')
}

.casinos-list__table tr:nth-child(3) .casinos-list__item::after {
    content: url('data:image/svg+xml,<svg width="33" height="30" viewBox="0 0 33 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M26.699 3.222H6.333c-.916 0-1.661-.723-1.661-1.611S5.417 0 6.333 0h20.353c.915 0 1.66.723 1.66 1.611.014.888-.732 1.611-1.647 1.611" fill="url(%23a)"/><path d="M27.008 3.222v9.92c0 5.48-4.578 9.92-10.228 9.92h-.51c-3.401 0-6.41-1.611-8.267-4.072a9.7 9.7 0 0 1-1.504-2.905 9.5 9.5 0 0 1-.458-2.943v-9.92z" fill="url(%23b)"/><path d="M25.008 18.99c0 .012.013.012.013.025 3.898.28 5.912-1.51 6.932-3.21.694-1.14 1.034-2.46 1.047-3.792V9.666c0-.393-.04-.786-.118-1.167-.902-4.123-5.624-3.818-5.9-3.793v2.715l.014-.025s3.296-.267 3.23 3.019c.027 1.192 0 1.7 0 1.7s.367 3.818-3.662 4.059c-.013-.038-.026-.064-.039-.102a9.9 9.9 0 0 1-1.517 2.918" fill="url(%23c)"/><path d="M7.992 18.99c0 .012-.013.012-.013.025-3.898.28-5.912-1.51-6.933-3.21C.353 14.666.013 13.346 0 12.014V9.666C0 9.273.04 8.88.118 8.5c.902-4.123 5.624-3.818 5.899-3.793v2.715l-.013-.025s-3.296-.267-3.231 3.019c-.026 1.192 0 1.7 0 1.7s-.366 3.818 3.662 4.059c.013-.038.027-.064.04-.102a10.2 10.2 0 0 0 1.517 2.918" fill="url(%23d)"/><path d="M18.337 22.846H14.48v5.086h3.858z" fill="url(%23e)"/><path d="M20.643 27.933h-8.607a.27.27 0 0 0-.274.266V30h9.143v-1.801c.013-.14-.118-.266-.262-.266" fill="url(%23f)"/><path d="m17.281 7.065.72 1.408a.84.84 0 0 0 .64.444l1.61.228c.692.102.967.926.47 1.396l-1.164 1.103a.83.83 0 0 0-.248.723l.274 1.548c.118.672-.601 1.18-1.23.863l-1.438-.736a.86.86 0 0 0-.785 0l-1.439.736c-.615.317-1.347-.19-1.23-.863l.275-1.548a.77.77 0 0 0-.248-.723l-1.164-1.103c-.497-.47-.223-1.307.47-1.396l1.61-.228a.86.86 0 0 0 .64-.444l.72-1.408c.314-.609 1.203-.609 1.517 0" fill="%23fff"/><defs><linearGradient id="a" x1="4.677" y1="1.605" x2="28.085" y2="1.605" gradientUnits="userSpaceOnUse"><stop stop-color="%23D9A06D"/><stop offset=".249" stop-color="%23B48056"/><stop offset=".5" stop-color="%23E4AB78"/><stop offset=".785" stop-color="%23B58157"/><stop offset="1" stop-color="%23D59B69"/></linearGradient><linearGradient id="b" x1="6.03" y1="13.141" x2="27.003" y2="13.141" gradientUnits="userSpaceOnUse"><stop stop-color="%23D79D6B"/><stop offset=".249" stop-color="%23B38056"/><stop offset=".5" stop-color="%23E5AB79"/><stop offset=".785" stop-color="%23B58156"/><stop offset="1" stop-color="%23D69D6A"/></linearGradient><linearGradient id="e" x1="14.415" y1="25.394" x2="18.389" y2="25.394" gradientUnits="userSpaceOnUse"><stop stop-color="%23CF9666"/><stop offset=".894" stop-color="%23B58257"/><stop offset="1" stop-color="%23E2A977"/></linearGradient><linearGradient id="f" x1="11.794" y1="28.069" x2="20.977" y2="30.052" gradientUnits="userSpaceOnUse"><stop stop-color="%23CD9565"/><stop offset=".894" stop-color="%23B58257"/><stop offset="1" stop-color="%23DEA574"/></linearGradient><radialGradient id="c" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-19.2906 0 0 -18.7081 27.266 9.821)"><stop stop-color="%23DCA270"/><stop offset=".249" stop-color="%23B78257"/><stop offset=".5" stop-color="%23E4AA78"/><stop offset=".785" stop-color="%23C29064"/><stop offset="1" stop-color="%23DAA06E"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-19.2906 0 0 -18.7081 2.258 9.821)"><stop stop-color="%23DCA270"/><stop offset=".249" stop-color="%23B78257"/><stop offset=".5" stop-color="%23E4AA78"/><stop offset=".785" stop-color="%23C29064"/><stop offset="1" stop-color="%23DAA06E"/></radialGradient></defs></svg>')
}

.casinos-list__table tr:nth-of-type(-n+3) .casinos-list__item::after {
    width: 33px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0
}

.casinos-list__table tr:nth-of-type(-n+3) .casinos-list__item::before {
    width: 105px;
    height: 40px
}

.casinos-list__table tr:nth-of-type(-n+3):nth-of-type(2) .casinos-list__item::after, .casinos-list__table tr:nth-of-type(-n+3):nth-of-type(3) .casinos-list__item::after {
    top: 33px;
    left: 12px
}

.casinos-list__table tr:nth-child(2) .casinos-list__item::before, .casinos-list__table tr:nth-child(3) .casinos-list__item::before {
    content: "";
    padding-left: 40px
}

.casinos-list__table tr:nth-child(1) .casinos-list__item::before {
    content: counter(casinos-list) "st place";
    width: 180px;
    height: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px 70px 0 0;
    border: 0;
    left: 0;
    top: -27px;
    z-index: -1
}

.casinos-list__table tr:nth-child(1) .casinos-list__item::after {
    top: -4px;
    left: 20px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.casinos-list__table tr:nth-child(2) .casinos-list__item::before {
    content: counter(casinos-list) "st place"
}

.casinos-list__table tr:nth-child(3) .casinos-list__item::before {
    content: counter(casinos-list) "rd place"
}

.casinos-list__item {
    position: relative;
    counter-increment: casinos-list;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    background: var(--surface);
    border-radius: 16px
}

.casinos-list__item::before {
    content: counter(casinos-list) " place";
    position: absolute;
    top: 28px;
    left: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    padding: 4px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 136%;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--surface);
    background: var(--primary);
    color: var(--on-primary)
}

.casinos-list__img {
    margin: 16px;
    border-radius: 16px;
    overflow: hidden;
    width: 289px;
    max-width: 289px
}

.casinos-list__img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 289/108
}

.casinos-list__bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--primary-simple);
    padding: 16px
}

.casinos-list__bonus p {
    margin-top: 0
}

.casinos-list__rate {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%)
}

.casinos-list__rate::after, .casinos-list__rate::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.casinos-list__rate::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.casinos-list__rate::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.casinos-list__payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding: 16px;
    width: 100%;
    max-width: 280px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var)
}

.casinos-list__payment p {
    margin-top: 0
}

.casinos-list__payment-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.casinos-list__payment a.casinos-list__payment-item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity
}

.casinos-list__payment a.casinos-list__payment-item:active, .casinos-list__payment a.casinos-list__payment-item:focus {
    opacity: .6
}

.casinos-list__payment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 32px;
    padding: 2px;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    background: var(--surface)
}

.casinos-list__payment-item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.casinos-list__btns {
    background: var(--surf-cont-low);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0 16px 16px 0;
    padding: 20px 16px
}

.casinos-list__btns .btn {
    width: 100%
}

.benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.benefits > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.benefits__content p {
    color: var(--on-surface-var)
}

.benefits__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 16px;
    padding: 24px;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078)
}

.benefits__list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc((100% - 8px) / 2);
    flex: 1 1 calc((100% - 8px) / 2);
    border-radius: 16px;
    padding: 24px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-primary);
    background: var(--primary)
}

.benefits__list li::before {
    width: 40px;
    height: 40px;
    content: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 40c11.046 0 20-8.954 20-20S31.046 0 20 0 0 8.954 0 20s8.954 20 20 20" fill="%23E7DEFF"/><path d="M17 24.17 12.83 20l-1.42 1.41L17 27l12-12-1.41-1.41z" fill="url(%23a)"/><defs><linearGradient id="a" x1="20.205" y1="13.59" x2="20.205" y2="27" gradientUnits="userSpaceOnUse"><stop stop-color="%23846AAF"/><stop offset="1" stop-color="%23625690"/></linearGradient></defs></svg>')
}

.content-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.content-img > img {
    width: 100%
}

.content-img__content picture, .content-img__content > img {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 50%
}

.content-img__content ol:not([class]) li,
.content-img__content ul:not([class]) li,
.content-img__content .wp-block-list li {
    flex: 1 1 100%
}

.content-img__content > :not(:first-child) {
    margin-top: 16px;
}

.content-img > * {
    max-width: 50%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1
}

.content-img > :first-child:last-child {
    max-width: 100%
}

.games-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.games-list__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.games-list__header h2 {
    margin-bottom: 0
}

.games-list__table {
    width: 100%
}

.games-list__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch
}

.games-list__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    gap: 20px
}

.games-list__item {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    width: 100%
}

.games-list__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.games-list__item:hover .games-list__info {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.games-list__info {
    position: relative;
    height: 100%;
    padding: 16px;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    min-height: 260px;
    background: rgba(0, 0, 0, .6);
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    text-align: center;
    color: var(--surface);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: transform
}

.games-list__info p {
    margin-top: 0
}

.games-list__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    margin-block: auto
}

.games-list__btns .btn {
    width: 100%
}

.games-list__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    color: var(--on-surface-dark);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.games-list__rate .btn {
    width: 107px
}

.games-list__rate-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%)
}

.games-list__rate-wrap::after, .games-list__rate-wrap::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.games-list__rate-wrap::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.games-list__rate-wrap::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.table-block {
    display: flex;
    flex-direction: column
}

.table-block:not(:first-child) {
    margin-top: 32px
}

.table-block p:first-of-type {
    margin-top: 20px
}

.table-block h2 {
    margin-bottom: 0
}

.table-block__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px
}

.table-block__header h2 {
    margin-bottom: 0
}

.table-block__header .btn {
    padding-block: 8px
}

.table-block .table-block__table {
    margin-top: 32px;
    width: 100%;
    table-layout: auto;
    border-spacing: 0 8px;
    overflow: hidden
}

.table-block .table-block__table:first-child {
    margin-top: 0
}

.table-block .table-block__table td .mob-text, .table-block .table-block__table th .mob-text {
    margin: 0
}

.table-block .table-block__table td.center, .table-block .table-block__table th.center {
    text-align: center
}

.table-block .table-block__table td.center .cell, .table-block .table-block__table th.center .cell {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.table-block .table-block__table td.center .cell > *, .table-block .table-block__table th.center .cell > * {
    margin-inline: auto
}

.table-block .table-block__table td span, .table-block .table-block__table td .js-copy__text, .table-block .table-block__table th span {
    color: var(--on-surface-var)
}

.table-block .table-block__table td.name .cell, .table-block .table-block__table th.name .cell {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.table-block .table-block__table td.name .cell img, .table-block .table-block__table th.name .cell img {
    max-width: 20px;
    max-height: 20px;
    -o-object-fit: contain;
    object-fit: contain
}

.table-block .table-block__table:not([class*=table-block__table_]) {
    border-collapse: separate
}

.table-block .table-block__table:not([class*=table-block__table_]) tr td:first-child, .table-block .table-block__table:not([class*=table-block__table_]) tr th:first-child {
    border-radius: 8px 0 0 8px
}

.table-block .table-block__table:not([class*=table-block__table_]) tr td:last-child, .table-block .table-block__table:not([class*=table-block__table_]) tr th:last-child {
    border-radius: 0 8px 8px 0
}

.table-block .table-block__table:not([class*=table-block__table_]) thead tr {
    background: var(--tertiary)
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th {
    height: 84px;
    color: var(--on-tertiary);
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    text-align: left;
    padding: 30px 32px
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th:first-child {
    padding-left: 32px
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th:last-child {
    padding-right: 32px
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th:not(:first-child) {
    padding-left: 16px
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th:not(:last-child) {
    padding-right: 16px
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th:first-child {
    border-top-left-radius: 16px
}

.table-block .table-block__table:not([class*=table-block__table_]) thead th:last-child {
    border-top-right-radius: 16px
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody tr {
    background: var(--surf-cont-low)
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody td {
    height: 80px;
    padding: 16px 32px
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody td:first-child {
    padding-left: 32px
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody td:last-child {
    padding-right: 32px
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody td:not(:first-child) {
    padding-left: 16px
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody td:not(:last-child) {
    padding-right: 16px
}

.table-block .table-block__table:not([class*=table-block__table_]) tbody .cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px
}

.table-block .table-block__table_list tbody tr td:first-child {
    text-align: center
}

.table-block .table-block__table_cards {
    border-collapse: separate;
    border-spacing: 0 8px;
    color: var(--on-surface);
    text-align: left
}

.table-block .table-block__table_cards thead {
    color: var(--on-tertiary)
}

.table-block .table-block__table_cards thead tr td:first-child {
    border-top-left-radius: 16px
}

.table-block .table-block__table_cards thead tr td:last-child {
    border-top-right-radius: 16px
}

.table-block .table-block__table_cards tr td:first-child, .table-block .table-block__table_cards tr th:first-child {
    border-radius: 8px 0 0 8px
}

.table-block .table-block__table_cards tr td:last-child, .table-block .table-block__table_cards tr th:last-child {
    border-radius: 0 8px 8px 0
}

.table-block .table-block__table_cards tr:last-child td:first-child {
    border-bottom-left-radius: 16px
}

.table-block .table-block__table_cards tr:last-child td:last-child {
    border-bottom-right-radius: 16px
}

.table-block .table-block__table_cards tr th {
    height: 84px;
    background: var(--tertiary);
    font-size: 18px;
    line-height: 136%;
    font-weight: 500
}

.table-block .table-block__table_cards tr th:first-child {
    border-top-left-radius: 16px
}

.table-block .table-block__table_cards tr th:last-child {
    border-top-right-radius: 16px
}

.table-block .table-block__table_cards tr td, .table-block .table-block__table_cards tr th {
    padding: 16px 32px
}

.table-block .table-block__table_cards tr td:first-child, .table-block .table-block__table_cards tr th:first-child {
    padding-left: 32px
}

.table-block .table-block__table_cards tr td:last-child, .table-block .table-block__table_cards tr th:last-child {
    padding-right: 32px
}

.table-block .table-block__table_cards tr td:not(:first-child), .table-block .table-block__table_cards tr th:not(:first-child) {
    padding-left: 16px
}

.table-block .table-block__table_cards tr td:not(:last-child), .table-block .table-block__table_cards tr th:not(:last-child) {
    padding-right: 16px
}

.table-block .table-block__table_cards tr td {
    height: 80px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    background: var(--surf-cont-low)
}

.table-block .table-block__table_cards tr td .btn_copy {
    width: 100%
}

.table-block .table-block__table_cards .cell {
    width: 100%
}

.table-block .table-block__table_separated tr td {
    height: 80px
}

.table-block .table-block__table_separated tr td:first-child {
    padding-right: 8px;
    height: 100%;
    vertical-align: middle;
    padding: 16px 32px;
    border-radius: 8px;
    background: var(--tertiary);
    color: var(--on-tertiary)
}

.table-block .table-block__table_separated tr td:not(:first-child) {
    background: var(--surf-cont-low);
    color: var(--on-surface);
    padding-block: 16px
}

.table-block .table-block__table_separated tr td:nth-of-type(2) {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-left: 32px;
    padding-right: 16px
}

.table-block .table-block__table_separated tr td:nth-of-type(2):last-child {
    padding-inline: 32px
}

.table-block .table-block__table_separated tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-right: 32px;
    padding-left: 16px
}

.table-block .table-block__table_separated tr td:not(:nth-of-type(2)):not(:first-child):not(:last-child) {
    padding: 16px
}

.author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns:auto auto 1fr;
    gap: 0;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px
}

.author__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.author__img {
    -ms-grid-row-align: center;
    align-self: center;
    width: 54px;
    height: 54px;
    margin: 3px;
    border-radius: 50%;
    border: 2px solid var(--primary-simple);
    overflow: hidden;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3
}

.author__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.author__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px
}

.author__name {
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    margin-bottom: 8px;
    grid-column: 2/-1
}

.author__position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3
}

.author__rate {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface);
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3
}

.author__rate::after, .author__rate::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.author__rate::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.author__rate::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.author__exp {
    margin-top: 8px;
    display: block;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--tertiary);
    text-align: center
}

.author__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.author__descr {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface);
    grid-column: 1/-1;
    margin-top: 16px
}

.author__bottom {
    grid-column: 1/-1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--outline-var)
}

.author__soc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.author__soc-list li {
    width: 32px;
    height: 32px
}

.author__soc-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 50%;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.author__soc-list li a:active, .author__soc-list li a:focus {
    background: var(--primary-opacity-12)
}

.author__soc-list li svg {
    max-width: 32px;
    max-height: 32px
}

.author__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    row-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface)
}

.author__info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.author__info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 32px;
    padding: 3px 15px;
    border-radius: 8px;
    border: 1px solid var(--outline);
    -webkit-transition-property: background, border-color;
    transition-property: background, border-color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background, border-color
}

.fixed-el {
    position: fixed;
    left: 4px;
    bottom: 8px;
    width: calc(100% - 8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    z-index: 80;
    padding: 8px;
    border-radius: 16px;
    background: var(--tertiary);
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078)
}

.fixed-el__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 2px;
    font-size: 14px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-tertiary)
}

.fixed-el__main img {
    max-width: 60px;
    max-height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 8px
}

.fixed-el__main span {
    color: var(--tertiary-cont)
}

.fixed-el > .btn {
    border-radius: 8px;
    padding: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 145px;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
    margin-left: auto
}

.go-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    position: fixed;
    bottom: 80px;
    right: 32px;
    z-index: 70;
    background: var(--primary-cont);
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    cursor: pointer;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: box-shadow
}

.go-up:not(.active) {
    display: none
}

.go-up svg path {
    stroke: var(--on-primary-cont)
}

.go-up::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: 0 0;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.go-up:focus::after {
    background: var(--on-primary-container-opacity-12)
}

.go-up:active::after {
    background: var(--on-primary-container-opacity-12);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border-radius: 50% 70% 0 80%;
    -webkit-transform: translate(20px, 30px);
    -ms-transform: translate(20px, 30px);
    transform: translate(20px, 30px);
    -webkit-animation: upPressed .5s forwards;
    animation: upPressed .5s forwards
}

@-webkit-keyframes upPressed {
    0% {
        -webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%)
    }
    100% {
        -webkit-transform: translate(-30px, -30px);
        transform: translate(-30px, -30px)
    }
}

@keyframes upPressed {
    0% {
        -webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%)
    }
    100% {
        -webkit-transform: translate(-30px, -30px);
        transform: translate(-30px, -30px)
    }
}

.go-up svg {
    max-width: 24px;
    max-height: 24px
}

.breadcrumbs .container {
    margin-top: 32px
}

.breadcrumbs__list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 8px;
    border-radius: 8px;
    padding: 4px 8px;
    border: 1px solid var(--primary-simple)
}

.breadcrumbs li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px
}

.breadcrumbs li:not(:last-child) {
    padding-right: 34px
}

.breadcrumbs li:not(:last-child)::after {
    content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.677 3 5.25 4.41 9.886 9 5.25 13.59 6.677 15l6.073-6z" fill="%23CAC4CF"/></svg>');
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 18px;
    height: 18px
}

.breadcrumbs li:last-child a, .breadcrumbs li:last-child span {
    color: var(--primary-simple);
    background: var(--primary-cont-opacity-16)
}

.breadcrumbs li:last-child a:active, .breadcrumbs li:last-child a:focus {
    background: var(--primary-opacity-12)
}

.breadcrumbs a, .breadcrumbs span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--outline);
    -webkit-transition-property: background, color;
    transition-property: background, color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background, color
}

.breadcrumbs a:focus {
    color: var(--primary-simple)
}

.img-gallery {
    overflow: hidden
}

.img-gallery .swiper-grid-column > .swiper-wrapper {
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
    -ms-flex-direction: unset !important;
    flex-direction: unset !important
}

.img-gallery .swiper-wrapper .swiper-slide {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .1490196078)
}

.img-gallery .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.img-gallery .swiper-wrapper .swiper-slide a:active::after, .img-gallery .swiper-wrapper .swiper-slide a:focus::after {
    background: rgba(0, 0, 0, .6)
}

.img-gallery .swiper-wrapper .swiper-slide a:active img, .img-gallery .swiper-wrapper .swiper-slide a:focus img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.img-gallery .swiper-wrapper .swiper-slide a:active::before, .img-gallery .swiper-wrapper .swiper-slide a:focus::before {
    opacity: 1
}

.img-gallery .swiper-wrapper .swiper-slide a::after, .img-gallery .swiper-wrapper .swiper-slide a::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none
}

.img-gallery .swiper-wrapper .swiper-slide a::before {
    z-index: 3;
    background: url(../img/svg/search.svg) center/contain no-repeat;
    background-size: 44px 44px;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity
}

.img-gallery .swiper-wrapper .swiper-slide a::after {
    z-index: 2;
    background: 0 0;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.img-gallery .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: transform
}

.img-gallery .swiper-pagination {
    position: relative;
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.img-gallery .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    position: relative;
    cursor: pointer
}

.img-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    background: var(--primary)
}

.img-gallery .swiper-pagination .swiper-pagination-bullet::after, .img-gallery .swiper-pagination .swiper-pagination-bullet::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.img-gallery .swiper-pagination .swiper-pagination-bullet::after {
    background: var(--on-primary-opacity-8);
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity;
    opacity: 0
}

.img-gallery .swiper-pagination .swiper-pagination-bullet::before {
    background: var(--on-surface-opacity-12);
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background
}

.pros-cons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.pros-cons h2 {
    width: 100%;
    max-width: 522px
}

.pros-cons__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.pros-cons__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch
}

.pros-cons__item_pros {
    background: #fdf7ff
}

.pros-cons__item_pros .pros-cons__title {
    background: var(--primary)
}

.pros-cons__item_pros ul li::before {
    content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.004 5.656 19.372 4l-7.894 11.035L5.004 8.5l-2 2 8.474 9.5z" fill="url(%23a)"/><defs><linearGradient id="a" x1="12.504" y1="4" x2="12.504" y2="20" gradientUnits="userSpaceOnUse"><stop stop-color="%23846AAF"/><stop offset="1" stop-color="%23625690"/></linearGradient></defs></svg>')
}

.pros-cons__item_cons {
    background: #ffedea
}

.pros-cons__item_cons .pros-cons__title {
    background: var(--error)
}

.pros-cons__item_cons ul li::before {
    content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.59 19 19 17.59 13.41 12 19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41z" fill="%23BA1A1A"/></svg>')
}

.pros-cons__title {
    padding: 16px 24px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-primary)
}

.pros-cons__title svg {
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px
}

.pros-cons__inner-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.pros-cons__inner-list li {
    position: relative;
    width: 100%;
    padding: 16px 24px;
    padding-left: 64px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface)
}

.pros-cons__inner-list li::before {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    left: 24px
}

.reviews-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.reviews-list__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.reviews-list__header h2 {
    margin-bottom: 0
}

.reviews-list__table {
    width: 100%
}

.reviews-list__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    max-width: calc((100% - 40px) / 3)
}

.reviews-list__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.reviews-list__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    color: var(--on-surface)
}

.reviews-list__item > img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px
}

.reviews-list__item p:not([class]) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.reviews-list__item .btn {
    width: 100%;
    white-space: nowrap;
    margin-top: 20px
}

.reviews-list__title {
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    margin-top: 20px
}

.reviews-list__rate-payout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: nowrap;
    margin-top: auto;
    padding-top: 20px
}

.reviews-list__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%)
}

.reviews-list__rate::after, .reviews-list__rate::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.reviews-list__rate::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.reviews-list__rate::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.reviews-list__payout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 4px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400
}

.reviews-list__payout svg {
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px
}

.pokies-list {
    margin-top: 20px
}

.pokies-list__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    gap: 20px
}

.pokies-list__table {
    width: 100%
}

.pokies-list__table .pokies-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.pokies-list.hidden .pokies-list__item:nth-of-type(n+9) {
    display: none
}

.pokies-list > .btn {
    margin-inline: auto;
    margin-top: 32px
}

.pokies-list__item {
    width: 100%;
    border-radius: 16px;
    background: var(--surface);
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px
}

.pokies-list img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px
}

.pokies-list__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface);
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.pokies-list__rate {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--on-surface);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    --percent: calc(var(--rating, 4.5) / 5 * 100%);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-inline: auto
}

.pokies-list__rate::after, .pokies-list__rate::before {
    font-size: 24px;
    line-height: 22px;
    height: 24px;
    letter-spacing: 0
}

.pokies-list__rate::before {
    content: "★★★★★";
    display: block;
    background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(var(--star-bg)));
    background: linear-gradient(90deg, var(--star-color) var(--percent), var(--star-bg) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.pokies-list__rate::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "☆☆☆☆☆";
    display: block;
    letter-spacing: 0;
    color: var(--star-color)
}

.pokies-list__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.pokies-list__btns .btn {
    width: 100%
}

.pokies-list__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px
}

.pokies-list__info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    text-align: right;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--outline-var)
}

.pokies-list__info li span {
    font-size: 18px;
    line-height: 136%;
    font-weight: 500;
    color: var(--tertiary);
    text-align: left
}

.pokies-list__info li:first-child {
    padding-top: 16px;
    border-top: 1px solid var(--outline-var)
}

.icon-list {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
    width: 100%
}

.icon-list__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.icon-list__info p {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    margin-top: 0
}

.icon-list__info .icon-list__title {
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface)
}

.icon-list svg,
.icon-list img
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px
}

.tabs-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 32px
}

.tabs-block__trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    min-width: 180px;
    min-height: 48px;
    padding: 8px;
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-surface-var);
    -webkit-transition-property: background, border-color;
    transition-property: background, border-color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background, border-color;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    border-bottom: 2px solid transparent
}

.tabs-block__trigger-list {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-bottom: 1px solid var(--surf-cont-highest);
    overflow-x: auto
}

.tabs-block__trigger:focus {
    background: var(--on-surface-opacity-12)
}

.tabs-block__trigger:active {
    background: var(--on-surface-opacity-8)
}

.tabs-block__trigger:active::after {
    opacity: 1;
    width: 120%
}

.tabs-block__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 56px;
    height: 120px;
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: var(--on-surface-opacity-12);
    opacity: 0;
    pointer-events: none;
    -webkit-transition-property: opacity, width;
    transition-property: opacity, width;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: opacity, width
}

.tabs-block__trigger.active {
    border-color: var(--primary-simple)
}

.tabs-block__item:not(.active) {
    display: none
}

.preview-block .tabs-block__item:not(.active) {
    display: block!important;
}

.providers-list {
    position: relative;
    color: var(--on-surface)
}

.providers-list h2 {
    margin-bottom: 20px
}

.providers-list__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px
}

.providers-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc((100% - 80px) / 5);
    flex: 1 1 calc((100% - 80px) / 5);
    width: 100%;
    -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px
}

.hero-links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: var(--wrapper-margin, 60px)
}

.hero-links li {
    background: var(--secondary-cont);
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 min-content;
    flex: 1 1 min-content
}

.hero-links .links__button {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    font-size: 25px;
    line-height: 136%;
    font-weight: 400;
    color: var(--on-secondary-cont);
    -webkit-transition-property: background, -webkit-box-shadow;
    transition-property: background, -webkit-box-shadow;
    transition-property: background, box-shadow;
    transition-property: background, box-shadow, -webkit-box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background, box-shadow;
    background: transparent;
    width: 100%;
}

.hero-links .links__button::after {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    will-change: background;
    pointer-events: none
}

.hero-links .links__button:active, .hero-links .links__button:focus {
    background: var(--on-secondary-opacity-12)
}

.hero-links .links__button svg {
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px
}

.hero-links .links__button svg path {
    fill: currentColor
}

@media (min-width: 576px) {
    .table-block .table-block__table:not([class*=table-block__table_]) thead tr td:first-child {
        border-top-left-radius: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead tr td:last-child {
        border-top-right-radius: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody tr:last-child td:first-child {
        border-bottom-left-radius: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody tr:last-child td:last-child {
        border-bottom-right-radius: 16px
    }

    .fixed-el {
        display: none
    }
}

@media (min-width: 768px) {
    .footer__nav-list li:nth-of-type(-n+4) > a, .footer__nav-list li:nth-of-type(-n+4) > span {
        font-size: 18px;
        line-height: 136%;
        font-weight: 500;
        color: var(--primary-simple)
    }

    .footer__nav-list li:nth-of-type(-n+4) > a {
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        will-change: color
    }

    .footer__nav-list li:nth-of-type(-n+4) > a:focus {
        color: var(--on-primary-cont)
    }

    .cr-section-hero__bonus {
        position: sticky;
        top: 80px
    }

    .table-block .table-block__table td .mob-text, .table-block .table-block__table th .mob-text {
        display: none
    }

    .table-block .table-block__table_list tbody tr td:nth-child(2), .table-block .table-block__table_list tbody tr td:nth-child(3), .table-block .table-block__table_list tbody tr td:nth-child(4) {
        width: 25%
    }

    .table-block .table-block__table_cards .cell:not(:has(a)) {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden
    }

    .table-block .table-block__table_separated tr:first-child td:first-child {
        border-top-left-radius: 16px
    }

    .table-block .table-block__table_separated tr:first-child td:last-child {
        border-top-right-radius: 16px
    }

    .table-block .table-block__table_separated tr:last-child td:first-child {
        border-bottom-left-radius: 16px
    }

    .table-block .table-block__table_separated tr:last-child td:last-child {
        border-bottom-right-radius: 16px
    }
}

@media (min-width: 768px) and (hover: hover) {
    .footer__nav-list li:nth-of-type(-n+4) > a:hover {
        color: var(--on-primary-cont)
    }
}

@media (min-width: 992px) {
    .header__logo {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .header__nav {
        display: contents
    }

    .header__burger {
        display: none
    }

    .header .header-menu {
        row-gap: 10px;
        display: contents
    }

    .header .header-menu > .item.parent, .header .header-menu > .item:not(.parent) > a, .header .header-menu > .item:not(.parent) > span {
        padding: 10px 16px;
        border-radius: 100px;
        color: var(--primary-dark)
    }

    .header .header-menu > .item > svg {
        min-width: 18px;
        min-height: 18px;
        max-width: 18px;
        max-height: 18px
    }

    .header .header-menu > .item > svg path {
        fill: var(--primary-dark)
    }

    .header .header-menu > .item.parent:active, .header .header-menu > .item.parent:focus, .header .header-menu > .item:not(.parent) a:active, .header .header-menu > .item:not(.parent) a:focus {
        background: var(--primary-opacity-12-dark)
    }

    .header .header-menu > .item.parent.current, .header .header-menu > .item:not(.parent).current a {
        background: var(--primary-opacity-8-dark)
    }

    .header .header-menu > .item.parent {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .header .header-menu > .item:nth-of-type(1) {
        z-index: calc(20 - 1)
    }

    .header .header-menu > .item:nth-of-type(2) {
        z-index: calc(20 - 2)
    }

    .header .header-menu > .item:nth-of-type(3) {
        z-index: calc(20 - 3)
    }

    .header .header-menu > .item:nth-of-type(4) {
        z-index: calc(20 - 4)
    }

    .header .header-menu > .item:nth-of-type(5) {
        z-index: calc(20 - 5)
    }

    .header .header-menu > .item:nth-of-type(6) {
        z-index: calc(20 - 6)
    }

    .header .header-menu > .item:nth-of-type(7) {
        z-index: calc(20 - 7)
    }

    .header .header-menu > .item:nth-of-type(8) {
        z-index: calc(20 - 8)
    }

    .header .header-menu > .item:nth-of-type(9) {
        z-index: calc(20 - 9)
    }

    .header .header-menu > .item:nth-of-type(10) {
        z-index: calc(20 - 10)
    }

    .header .header-menu > .item:nth-of-type(11) {
        z-index: calc(20 - 11)
    }

    .header .header-menu > .item:nth-of-type(12) {
        z-index: calc(20 - 12)
    }

    .header .header-menu > .item:nth-of-type(13) {
        z-index: calc(20 - 13)
    }

    .header .header-menu > .item:nth-of-type(14) {
        z-index: calc(20 - 14)
    }

    .header .header-menu > .item:nth-of-type(15) {
        z-index: calc(20 - 15)
    }

    .header .header-menu > .item:nth-of-type(16) {
        z-index: calc(20 - 16)
    }

    .header .header-menu > .item:nth-of-type(17) {
        z-index: calc(20 - 17)
    }

    .header .header-menu > .item:nth-of-type(18) {
        z-index: calc(20 - 18)
    }

    .header .header-menu > .item:nth-of-type(19) {
        z-index: calc(20 - 19)
    }

    .header .header-menu > .item:nth-of-type(20) {
        z-index: calc(20 - 20)
    }

    .header .header-menu > .item:nth-of-type(n) {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .header .header-menu > .item:nth-of-type(1), .header .header-menu > .item:nth-of-type(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .header .header-menu > .item:nth-of-type(3), .header .header-menu > .item:nth-of-type(4) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .header .header-menu .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 8px
    }

    .header .header-menu .item_left .submenu {
        left: unset;
        right: 0
    }

    .header .header-menu .item_left .submenu .item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .header .header-menu .item_left .submenu .item svg {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .header .header-menu .item_left .submenu .submenu {
        top: 0;
        left: 0;
        -webkit-transform: translateX(calc(-100% + 2px));
        -ms-transform: translateX(calc(-100% + 2px));
        transform: translateX(calc(-100% + 2px))
    }

    .header .header-menu .submenu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 100%;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        max-width: 300px;
        background: var(--primary);
        /*color: var(--on-surface-dark);*/
        display: none;
        border-radius: 4px;
        padding-block: 8px;
        -webkit-box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078);
        box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .1490196078)
    }

    .header .header-menu .submenu::before {
        content: "";
        width: 100%;
        height: 15px;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, calc(-100% + 5px));
        -ms-transform: translate(0, calc(-100% + 5px));
        transform: translate(0, calc(-100% + 5px))
    }

    .header .header-menu .submenu .submenu {
        top: 0;
        left: 100%;
        min-width: unset
    }

    .header .header-menu .submenu .submenu:not(:has(.sumbenu)) {
        max-height: 300px;
        overflow-y: auto
    }

    @supports not selector(::-webkit-scrollbar) {
        .header .header-menu .submenu .submenu:not(:has(.sumbenu)) {
            scrollbar-width: thin;
            scrollbar-color: #fff transparent
        }
    }.header .header-menu .submenu .submenu:not(:has(.sumbenu))::-webkit-scrollbar {
         width: 4px
     }

    .header .header-menu .submenu .submenu:not(:has(.sumbenu))::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #fff;
        border-radius: 9px;
        border: 4px solid transparent
    }

    .header .header-menu .submenu .submenu:not(:has(.sumbenu))::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 9px
    }

    .header .header-menu .submenu .submenu::before {
        width: 4px;
        height: 100%;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0)
    }

    .header .header-menu .submenu .item.parent, .header .header-menu .submenu .item:not(.parent) > a, .header .header-menu .submenu .item:not(.parent) > span {
        padding: 10px 16px;
        min-height: 48px
    }

    .header .header-menu .submenu .item:not(.parent) a, .header .header-menu .submenu .item:not(.parent) span {
        width: 100%
    }

    .header .header-menu .submenu .item svg {
        min-width: 24px;
        min-height: 24px;
        max-width: 24px;
        max-height: 24px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .header .header-menu .submenu .item svg path {
        fill: var(--on-surface-var-dark)
    }

    .header .header-menu .submenu .item.parent:active, .header .header-menu .submenu .item.parent:focus, .header .header-menu .submenu .item:not(.parent) a:active, .header .header-menu .submenu .item:not(.parent) a:focus {
        background: var(--on-surface-opacity-12-dark)
    }

    .header .header-menu .submenu .item.parent.current, .header .header-menu .submenu .item:not(.parent).current a {
        background: var(--on-surface-opacity-8-dark)
    }
}

@media (min-width: 992px) and (hover: hover) {
    .header .header-menu > .item.parent:hover, .header .header-menu > .item:not(.parent) a:hover {
        background: var(--primary-opacity-8-dark)
    }

    .header .header-menu > .item.parent:hover > svg {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    .header .header-menu > .item.parent:hover > .submenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header .header-menu .submenu .item.parent:hover, .header .header-menu .submenu .item:not(.parent) a:hover {
        background: var(--on-surface-opacity-8-dark)
    }

    .header .header-menu .submenu .item:hover .submenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media (max-width: 1320px) {
    .wrapper > :not(.container) {
        margin-inline: 20px;
        max-width: calc(100% - var(--offsets, 20px) * 2)
    }
}

@media (max-width: 1239.9px) {
    .cr-section-hero__bonus {
        min-width: 300px
    }

    .casinos-list__item {
        gap: 16px
    }

    .casinos-list__img {
        max-width: 250px
    }

    .casinos-list__payment {
        max-width: 230px
    }

    .games-list__list {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr)
    }

    .pokies-list__list {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 991.9px) {
    .header__wrap {
        -ms-grid-columns: -webkit-max-content 1fr;
        -ms-grid-columns: max-content 1fr;
        grid-template-columns:-webkit-max-content 1fr;
        grid-template-columns:max-content 1fr;
        gap: 10px
    }

    .header__nav {
        position: fixed;
        top: 64px;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        overflow-y: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background: var(--secondary-cont)
    }

    @supports not selector(::-webkit-scrollbar) {
        .header__nav {
            scrollbar-width: thin;
            scrollbar-color: #846aaf transparent
        }
    }.header__nav::-webkit-scrollbar {
         width: 4px
     }

    .header__nav::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #846aaf;
        border-radius: 9px;
        border: 4px solid transparent
    }

    .header__nav::-webkit-scrollbar-track {
        background: 0 0;
        border-radius: 9px
    }

    .header__nav:not(.active) {
        display: none
    }

    .header .header-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .header .header-menu .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        color: var(--on-surface)
    }

    .header .header-menu .item.parent, .header .header-menu .item:not(.parent) > a, .header .header-menu .item:not(.parent) > span {
        padding: 14px 16px;
        min-height: 48px
    }

    .header .header-menu .item svg {
        position: absolute;
        top: 12px;
        right: 16px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        min-width: 24px;
        min-height: 24px;
        max-width: 24px;
        max-height: 24px
    }

    .header .header-menu .item svg path {
        fill: var(--on-surface-var)
    }

    .header .header-menu .item:not(.parent) a, .header .header-menu .item:not(.parent) span {
        width: 100%
    }

    .header .header-menu .item.parent.active > svg {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    .header .header-menu .item.parent.active > .submenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header .header-menu .item.parent:active, .header .header-menu .item.parent:focus, .header .header-menu .item:not(.parent) a:active, .header .header-menu .item:not(.parent) a:focus {
        background: var(--on-surface-opacity-12)
    }

    .header .header-menu .item.parent.current, .header .header-menu .item:not(.parent).current a {
        background: var(--on-surface-opacity-8)
    }

    .header .header-menu > .item > .submenu {
        width: calc(100% + 32px);
        margin-left: -16px
    }

    .header .header-menu > .item > .submenu > .item.parent, .header .header-menu > .item > .submenu > .item:not(.parent) > a, .header .header-menu > .item > .submenu > .item:not(.parent) > span {
        padding: 14px 16px 14px 28px
    }

    .header .header-menu > .item > .submenu > .item.parent svg {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .header .header-menu .submenu {
        position: relative;
        top: 14px;
        left: 0;
        width: 100%;
        padding-block: 0;
        background: var(--secondary-cont);
        display: none
    }

    .header .header-menu .submenu .submenu {
        display: none;
        overflow-y: auto
    }

    .header .header-menu .submenu .item.parent.active {
        position: fixed;
        top: 64px;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--secondary-cont);
        z-index: 10;
        padding: 0;
        -webkit-transition-duration: 0s;
        transition-duration: 0s
    }

    .header .header-menu .submenu .item.parent.active svg {
        display: none
    }

    .header .header-menu .submenu .item.parent.active > a, .header .header-menu .submenu .item.parent.active > span {
        padding: 8px 16px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 4px
    }

    .header .header-menu .submenu .item.parent.active > a:active, .header .header-menu .submenu .item.parent.active > a:focus, .header .header-menu .submenu .item.parent.active > span:active, .header .header-menu .submenu .item.parent.active > span:focus {
        background: var(--on-surface-opacity-12)
    }

    .header .header-menu .submenu .item.parent.active > a::before, .header .header-menu .submenu .item.parent.active > span::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"><path d="M32 23H19.83l5.59-5.59L24 16l-8 8 8 8 1.41-1.41L19.83 25H32z" fill="%2348454E"/></svg>');
        display: block;
        width: 48px;
        height: 48px
    }

    .header .header-menu .submenu .item.parent.active .submenu {
        top: 0
    }

    .cr-section-hero time {
        width: 100%;
        border-top: 1px solid var(--outline-var);
        border-left: 0;
        padding-left: 0;
        padding-top: 8px
    }

    .pr-section-hero__review {
        padding: 16px;
        max-width: 320px;
        min-width: 320px
    }

    .pr-section-hero__review img {
        width: calc(100% + 32px);
        max-width: calc(100% + 32px);
        margin-left: -16px;
        margin-top: -16px
    }

    .pr-section-hero__review-rate {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .pr-section-hero__date {
        width: 100%;
        border-top: 1px solid var(--outline-var);
        border-left: 0;
        padding-left: 0;
        padding-top: 8px
    }

    .content__list {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr)
    }

    .casinos-list__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .casinos-list__table tr:nth-of-type(-n+3):nth-of-type(2) .casinos-list__item::after, .casinos-list__table tr:nth-of-type(-n+3):nth-of-type(3) .casinos-list__item::after {
        top: 14px;
        left: 14px
    }

    .casinos-list__table tr {
        max-width: calc((100% - 20px) / 2);
        width: 100%
    }

    .casinos-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 16px
    }

    .casinos-list__item::before {
        top: 8px;
        left: 8px;
        border-radius: 12px
    }

    .casinos-list__img {
        width: 100%;
        max-width: 100%;
        margin: 0
    }

    .casinos-list__img img {
        aspect-ratio: 296/124
    }

    .casinos-list__bonus {
        padding: 0
    }

    .casinos-list__payment {
        max-width: 100%;
        padding: 0
    }

    .casinos-list__payment-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .casinos-list__btns {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 16px;
        width: calc(100% + 32px);
        max-width: calc(100% + 32px);
        margin-left: -16px;
        margin-bottom: -16px;
        padding: 16px;
        border-radius: 0 0 16px 16px
    }

    .casinos-list__btns .btn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .benefits {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .content-img {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .content-img__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .content-img__content p:first-of-type {
        margin-top: 0
    }

    .content-img__content picture, .content-img__content picture img, .content-img__content > img {
        float: unset;
        -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
        order: 100;
        width: 100%;
        max-width: 100%
    }

    .content-img__content picture, .content-img__content > img {
        margin: 20px 0 0
    }

    .content-img > * {
        max-width: 100%
    }

    .games-list__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .table-block .table-block__table_cards {
        padding: 12px 20px
    }

    .table-block .table-block__table_cards tr td, .table-block .table-block__table_cards tr th {
        padding: 8px 16px
    }

    .table-block .table-block__table_cards tr td:first-child, .table-block .table-block__table_cards tr th:first-child {
        padding-left: 16px
    }

    .table-block .table-block__table_cards tr td:last-child, .table-block .table-block__table_cards tr th:last-child {
        padding-right: 16px
    }

    .table-block .table-block__table_cards tr td:not(:first-child), .table-block .table-block__table_cards tr th:not(:first-child) {
        padding-left: 4px
    }

    .table-block .table-block__table_cards tr td:not(:last-child), .table-block .table-block__table_cards tr th:not(:last-child) {
        padding-right: 4px
    }

    .pros-cons {
        gap: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .pokies-list__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .providers-list__item {
        -ms-flex-preferred-size: calc((100% - 40px) / 3);
        flex-basis: calc((100% - 40px) / 3)
    }
}

@media (max-width: 991.9px) and (hover: hover) {
    .header .header-menu .item.parent:hover, .header .header-menu .item:not(.parent) a:hover {
        background: var(--on-surface-opacity-8)
    }

    .header .header-menu .submenu .item.parent.active > a:hover, .header .header-menu .submenu .item.parent.active > span:hover {
        background: var(--on-surface-opacity-8)
    }
}

@media (max-width: 767.9px) {
    ol:not([class]),
    ol.wp-block-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }

    .footer__nav-list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .cr-section-hero {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cr-section-hero__bonus {
        min-width: unset;
        width: 100%;
        max-width: 420px;
        margin-inline: auto
    }

    .pr-section-hero h1 {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .pr-section-hero__content {
        display: contents
    }

    .pr-section-hero__content-block {
        display: contents
    }

    .pr-section-hero__content .btn {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .pr-section-hero__review {
        max-width: 100%;
        min-width: unset;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .pr-section-hero__review-rate {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .pr-section-hero__demo {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .pr-section-hero__author {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        margin-top: 20px
    }

    .pr-section-hero__descr {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .content__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .casinos-list__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .casinos-list__table tr {
        max-width: 100%
    }

    .table-block .table-block__table_list tbody tr td:first-child {
        display: none
    }

    .table-block .table-block__table_cards {
        padding: 0;
        background: 0 0;
        border-spacing: 0
    }

    .table-block .table-block__table_cards thead {
        display: none
    }

    .table-block .table-block__table_cards tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 8px
    }

    .table-block .table-block__table_cards tr:not(:last-child) {
        margin-bottom: 20px
    }

    .table-block .table-block__table_cards tr td, .table-block .table-block__table_cards tr th {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .table-block .table-block__table_cards tr td:nth-of-type(n), .table-block .table-block__table_cards tr th:nth-of-type(n) {
        border-radius: 8px;
        padding: 6px 16px
    }

    .table-block .table-block__table_cards tr td:nth-of-type(n).name, .table-block .table-block__table_cards tr th:nth-of-type(n).name {
        border-radius: 16px 16px 8px 8px
    }

    .table-block .table-block__table_cards tr td.center, .table-block .table-block__table_cards tr th.center {
        min-height: unset
    }

    .table-block .table-block__table_cards tr td.name {
        background: var(--tertiary);
        color: var(--on-tertiary);
        gap: 0
    }

    .table-block .table-block__table_cards tr td.name img {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-right: 8px
    }

    .table-block .table-block__table_cards tr td {
        height: unset
    }

    .table-block .table-block__table_cards tr td:not(.has-btn) {
        min-height: 54px
    }

    .table-block .table-block__table_cards tr td.name {
        min-height: 56px
    }

    .table-block .table-block__table_cards tr td.has-btn {
        padding: 0;
        background: 0 0;
        width: 100%
    }

    .table-block .table-block__table_cards tr td.has-btn .btn, .table-block .table-block__table_cards tr td.has-btn .cell {
        width: 100%
    }

    .table-block .table-block__table_cards tr td:last-child {
        border-radius: 8px 8px 16px 16px
    }

    .table-block .table-block__table_separated {
        padding: 0;
        border-spacing: 0
    }

    .table-block .table-block__table_separated tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 8px
    }

    .table-block .table-block__table_separated tr:not(:last-child) {
        margin-bottom: 20px
    }

    .table-block .table-block__table_separated tr td {
        width: 100%;
        height: unset;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .table-block .table-block__table_separated tr td:not(.has-btn) {
        min-height: 54px
    }

    .table-block .table-block__table_separated tr td:first-child {
        min-height: 56px
    }

    .table-block .table-block__table_separated tr td .cell {
        width: 100%
    }

    .table-block .table-block__table_separated tr td:first-child {
        padding-right: 0;
        padding: 16px;
        border-radius: 16px 16px 8px 8px
    }

    .table-block .table-block__table_separated tr td:not(:first-child) {
        border-radius: 8px
    }

    .table-block .table-block__table_separated tr td:nth-of-type(2) {
        padding-left: 16px
    }

    .table-block .table-block__table_separated tr td:nth-of-type(2):last-child {
        padding-inline: 16px
    }

    .table-block .table-block__table_separated tr td:last-child {
        padding-right: 16px;
        border-radius: 8px;
        border-bottom-right-radius: 16px;
        border-bottom-left-radius: 16px
    }

    .pros-cons__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .reviews-list__table tr {
        max-width: calc((100% - 20px) / 2)
    }
}

@media (max-width: 575.9px) {
    .wrapper > :not(.container) {
        margin-inline: 16px
    }



    .wrapper.reset {
        margin-block: 0
    }

    .container {
        padding: 0 var(--offsets-m, 16px)
    }

    .section-hero {
        padding: 32px var(--offsets-m, 16px) 0 var(--offsets-m, 16px);
    }

    .container > .btn {
        margin-top: 28px;
        width: 100%
    }

    body {
        font-size: 14px
    }

    h1 {
        font-size: 40px
    }

    h2 {
        font-size: 22px
    }

    h2 {
        margin-bottom: 28px
    }

    h2 svg {
        max-width: 32px;
        max-height: 32px
    }

    h3 {
        font-size: 18px
    }

    h4, h5, h6 {
        font-size: 14px
    }

    ol:not([class]),
    ol.wp-block-list{
        margin-top: 16px;
        gap: 16px
    }

    /*ol:not([class]) li,*/
    /*ol.wp-block-list li {*/
    /*    font-size: 18px*/
    /*}*/

    ol:not([class]) li p,
    ol.wp-block-list li p
    {
        font-size: 14px
    }

    ul:not([class]),
    ul.wp-block-list
    {
        margin-top: 16px;
        gap: 16px
    }

    ul:not([class]) li,
    ul.wp-block-list li
    {
        font-size: 14px
    }

    ul:not([class]) li p,
    ul.wp-block-list li p
    {
        font-size: 14px
    }

    :root {
        --offsets: 16px;
        --wrapper-margin: 28px
    }

    .header__wrap {
        gap: 6px
    }

    .header__logo {
        margin-inline: auto
    }

    .footer {
        padding-block: 56px
    }

    .footer .container {
        gap: 28px
    }

    .footer__nav-list {
        -ms-grid-columns:(1fr) [ 1 ];
        grid-template-columns:repeat(1, 1fr)
    }

    .footer__nav-list a {
        font-size: 14px
    }

    .footer__logos {
        padding-top: 28px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .footer__logos {
        gap: 16px
    }

    .footer__logos img {
        max-height: 32px
    }

    .footer__info {
        font-size: 14px
    }

    .footer__info {
        padding-top: 28px
    }

    .footer__bottom {
        padding-top: 28px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .footer__links a {
        font-size: 14px
    }

    .section-hero .btn {
        margin-top: 20px;
        width: 100%
    }

    .section-faq {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 28px
    }

    .section-faq__item::after {
        top: 4px
    }

    .section-faq__item[open]::after {
        top: -3px
    }

    .section-faq summary {
        font-size: 14px
    }

    .section-faq summary {
        padding: 4px 0;
        padding-right: 48px;
        min-height: 56px
    }

    .section-faq p {
        font-size: 14px
    }

    .cr-section-hero {
        padding-block: 28px 0
    }

    .cr-section-hero h1 {
        font-size: 40px
    }

    .cr-section-hero h1 {
        margin-bottom: 28px
    }

    .cr-section-hero__bonus {
        gap: 16px;
        padding: 16px
    }

    .cr-section-hero__bonus-info {
        font-size: 18px
    }

    .cr-section-hero__bonus-info span {
        font-size: 22px
    }

    .cr-section-hero__bonus-copy {
        gap: 16px
    }

    .cr-section-hero__rate-payout {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .cr-section-hero__rate {
        font-size: 14px
    }

    .cr-section-hero__rate::after, .cr-section-hero__rate::before {
        font-size: 18px;
        line-height: 16px;
        height: 18px;
        letter-spacing: 0
    }

    .cr-section-hero__payout {
        font-size: 14px
    }

    .cr-section-hero__payout svg {
        width: 15px;
        height: 15px
    }

    .cr-section-hero__author {
        font-size: 14px
    }

    .cr-section-hero__author-img {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px
    }

    .cr-section-hero__descr {
        font-size: 14px
    }

    .cr-section-hero__info-item {
        padding: 16px
    }

    .cr-section-hero__info-item {
        padding: 16px
    }

    .cr-section-hero__info-header {
        font-size: 18px
    }

    .cr-section-hero__table th {
        font-size: 14px
    }

    .cr-section-hero__table td {
        font-size: 14px
    }

    .cr-section-hero__table-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cr-section-hero__table-tr {
        font-size: 14px
    }

    .cr-section-hero__table-tr {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 16px;
        row-gap: 8px;
        min-width: unset;
        width: 100%
    }

    .cr-section-hero__table-tr > * {
        min-width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2)
    }

    .cr-section-hero__table-tr span {
        font-size: 14px
    }

    .pr-section-hero {
        margin-top: 28px !important
    }

    .pr-section-hero h1 {
        margin-bottom: 28px
    }

    .pr-section-hero__content .btn {
        width: 100%;
        margin-top: 20px
    }

    .pr-section-hero__review {
        padding: 16px
    }

    .pr-section-hero__review img {
        aspect-ratio: 328/160
    }

    .pr-section-hero__review-rate p {
        font-size: 14px
    }

    .pr-section-hero__review-rate p span {
        font-size: 14px
    }

    .pr-section-hero__review-info {
        margin-top: 16px;
        gap: 8px
    }

    .pr-section-hero__review-info li {
        font-size: 14px
    }

    .pr-section-hero__review-info li {
        gap: 8px
    }

    .pr-section-hero__review-info li:not(:last-child)::after {
        left: calc(100% + 4px)
    }

    .pr-section-hero__review-info li span {
        font-size: 14px
    }

    .pr-section-hero__demo {
        margin-top: 20px;
        aspect-ratio: 328/220
    }

    .pr-section-hero__rate {
        font-size: 14px
    }

    .pr-section-hero__rate::after, .pr-section-hero__rate::before {
        font-size: 18px;
        line-height: 16px;
        height: 18px;
        letter-spacing: 0
    }

    .pr-section-hero__author {
        font-size: 14px
    }

    .pr-section-hero__author-name p {
        display: inline
    }

    .pr-section-hero__author-img {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px
    }

    .pr-section-hero__descr {
        font-size: 14px
    }

    .btn_copy {
        padding: 7px;
        gap: 4px;
        font-size: 12px;
        line-height: 16px
    }

    .content {
        margin-block: -8px !important
    }

    .content.active .content__header {
        margin-bottom: 0
    }

    .content__header {
        font-size: 22px
    }

    .content__header {
        padding: 16px
    }

    .content__header h2, .content__header h3 {
        font-size: 22px
    }

    .content__header::after {
        right: 20px
    }

    .content__nav {
        padding: 16px 0 16px;
        margin-inline: 16px
    }

    .content__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr;
        row-gap: 16px
    }

    .content__item a {
        font-size: 14px
    }

    .content__item a {
        padding: 8px 12px
    }

    .casinos-list {
        margin-top: 48px
    }

    .casinos-list > .btn {
        width: 100%;
        margin-top: 28px
    }

    .casinos-list__table tr:nth-of-type(-n+3) .casinos-list__item::before {
        width: 113px;
        height: 42px
    }

    .casinos-list__table tr:nth-child(1) .casinos-list__item::before {
        width: 180px;
        height: 43px
    }

    .casinos-list__item::before {
        width: 113px;
        height: 42px
    }

    .casinos-list__bonus {
        font-size: 18px
    }

    .casinos-list__bonus {
        gap: 8px
    }

    .casinos-list__rate {
        font-size: 14px
    }

    .casinos-list__rate::after, .casinos-list__rate::before {
        font-size: 18px;
        line-height: 16px;
        height: 18px;
        letter-spacing: 0
    }

    .casinos-list__payment {
        font-size: 14px
    }

    .casinos-list__payment-item {
        width: 42px;
        height: 24px
    }

    .casinos-list__btns .btn {
        max-width: 100%;
        min-height: 40px;
        padding: 8px 4px
    }

    .benefits__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 16px
    }

    .benefits__list li {
        font-size: 14px
    }

    .benefits__list li {
        padding: 16px
    }

    .benefits__list li::before {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        transform: scale(.8);
        margin: -4px
    }

    .games-list h2 {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .games-list .games-list__table {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .games-list .games-list__header .btn {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 28px;
        margin-inline: auto;
        width: 100%
    }

    .games-list__header {
        margin-bottom: 28px;
        display: contents
    }

    .games-list__header h2 {
        margin-bottom: 28px
    }

    .games-list__list {
        gap: 16px
    }

    .games-list__info {
        font-size: 14px
    }

    .games-list__info {
        gap: 7px;
        min-height: 139px;
        padding: 6px 8px
    }

    .games-list__btns {
        gap: 4px
    }

    .games-list__btns .btn {
        font-size: 14px;
        line-height: 136%;
        font-weight: 500;
        padding: 8px
    }

    .games-list__rate .btn {
        padding: 0;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        width: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-right: 18px
    }

    .games-list__rate .btn::after {
        display: none
    }

    .games-list__rate-wrap::after, .games-list__rate-wrap::before {
        font-size: 16px;
        line-height: 14px;
        height: 16px;
        letter-spacing: 0
    }

    .table-block:not(:first-child) {
        margin-top: 20px
    }

    .table-block__header {
        display: contents
    }

    .table-block__header h2 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .table-block__header > .btn {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 20px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%
    }

    .table-block .table-block__table {
        margin-top: 28px
    }

    .table-block .table-block__table:first-child {
        margin-top: 0
    }

    .table-block .table-block__table td.name .cell, .table-block .table-block__table th.name .cell {
        font-size: 14px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) {
        border-collapse: collapse;
        -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
        box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
        border-radius: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) th:not(:last-child) {
        border-right: 1px solid var(--outline-var)
    }

    .table-block .table-block__table:not([class*=table-block__table_]) th:not(:last-child) {
        border-right: 1px solid var(--outline-var)
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tr:not(:last-child) td {
        border-bottom: 1px solid var(--outline-var)
    }

    .table-block .table-block__table:not([class*=table-block__table_]) td:not(:last-child) {
        border-right: 1px solid var(--outline-var)
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tr td:first-child, .table-block .table-block__table:not([class*=table-block__table_]) tr th:first-child {
        border-radius: 0
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tr td:last-child, .table-block .table-block__table:not([class*=table-block__table_]) tr th:last-child {
        border-radius: 0
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead th {
        font-size: 14px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead th {
        height: 54px;
        text-align: center;
        padding: 16px 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead th:first-child {
        padding-left: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead th:last-child {
        padding-right: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead th:not(:first-child) {
        padding-left: 4px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) thead th:not(:last-child) {
        padding-right: 4px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody tr:nth-of-type(odd) {
        background: 0 0
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody td {
        padding: 8px 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody td:first-child {
        padding-left: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody td:last-child {
        padding-right: 16px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody td:not(:first-child) {
        padding-left: 4px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody td:not(:last-child) {
        padding-right: 4px
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody td.name .cell img {
        max-width: 24px;
        max-height: 24px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .table-block .table-block__table:not([class*=table-block__table_]) tbody .cell {
        gap: 8px;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .table-block .table-block__table_cards tr td {
        font-size: 14px
    }

    .table-block .table-block__table_cards tr td .btn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .author__name {
        font-size: 18px
    }

    .author__position {
        font-size: 14px
    }

    .author__rate::after, .author__rate::before {
        font-size: 18px;
        line-height: 16px;
        height: 18px;
        letter-spacing: 0
    }

    .author__rate {
        font-size: 14px
    }

    .author__exp {
        font-size: 14px
    }

    .author__descr {
        font-size: 14px
    }

    .author__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .author__info {
        font-size: 14px
    }

    .author__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .go-up {
        position: fixed;
        bottom: 100px;
        right: 16px
    }

    .breadcrumbs .container {
        margin-top: 28px
    }

    .breadcrumbs li:not(:last-child) {
        padding-right: 26px
    }

    .breadcrumbs li:not(:last-child)::after {
        right: 4px
    }

    .img-gallery {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding-inline: 16px
    }

    .img-gallery .swiper-wrapper {
        height: calc(100vw - var(--offsets, 16px) * 2)
    }

    .img-gallery .swiper-pagination {
        margin-top: 28px
    }

    .pros-cons__title {
        font-size: 18px
    }

    .pros-cons__title svg {
        min-width: 24px;
        min-height: 24px;
        max-width: 24px;
        max-height: 24px
    }

    .pros-cons__inner-list li {
        font-size: 14px
    }

    .pros-cons__inner-list li::before {
        width: 18px;
        height: 18px;
        left: 16px
    }

    .pros-cons__inner-list li {
        padding: 16px;
        padding-left: 50px
    }

    .reviews-list__header {
        display: contents
    }

    .reviews-list__header .btn {
        width: 100%;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        margin-top: 28px
    }

    .reviews-list__table tr {
        max-width: 100%
    }

    .reviews-list__list {
        margin-top: 28px
    }

    .reviews-list__item .btn {
        margin-top: 16px
    }

    .reviews-list__item {
        padding: 16px
    }

    .reviews-list__title {
        font-size: 18px
    }

    .reviews-list__title {
        margin-top: 16px
    }

    .reviews-list__rate-payout {
        padding-top: 16px
    }

    .reviews-list__rate {
        font-size: 14px
    }

    .reviews-list__rate::after, .reviews-list__rate::before {
        font-size: 18px;
        line-height: 16px;
        height: 18px;
        letter-spacing: 0
    }

    .reviews-list__payout {
        font-size: 14px
    }

    .reviews-list__payout svg {
        min-width: 18px;
        min-height: 18px;
        max-width: 18px;
        max-height: 18px
    }

    .pokies-list__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr;
        gap: 28px
    }

    .pokies-list > .btn {
        width: 100%;
        margin-top: 28px
    }

    .pokies-list__item {
        gap: 8px
    }

    .pokies-list__title {
        font-size: 14px
    }

    .pokies-list__rate {
        font-size: 14px
    }

    .pokies-list__rate::after, .pokies-list__rate::before {
        font-size: 18px;
        line-height: 16px;
        height: 18px;
        letter-spacing: 0
    }

    .pokies-list__rate {
        margin-inline: 0 auto
    }

    .pokies-list__info li {
        font-size: 14px
    }

    .pokies-list__info li span {
        font-size: 14px
    }

    .pokies-list__info li:first-child {
        padding-top: 8px
    }

    .pokies-list__info li {
        gap: 8px;
        padding-bottom: 8px
    }

    .pokies-list__info {
        gap: 8px
    }

    .icon-list {
        gap: 16px
    }

    .icon-list__info p {
        font-size: 14px
    }

    .icon-list__info .icon-list__title {
        font-size: 18px
    }

    .tabs-block__trigger {
        font-size: 14px;
        line-height: 136%;
        font-weight: 500;
        min-width: 164px
    }

    .providers-list__list {
        margin-top: 28px;
        gap: 16px
    }

    .providers-list__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2)
    }

    .hero-links {
        gap: 16px
    }

    .hero-links .links__button {
        font-size: 18px
    }

    .hero-links .links__button {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 8px;
        text-align: center
    }

    .hero-links .links__button svg {
        min-width: 32px;
        min-height: 32px;
        max-width: 32px;
        max-height: 32px
    }
}

@media (min-width: 768px) and (max-width: 575.9px) {
    .footer__nav-list li:nth-of-type(-n+4) > a, .footer__nav-list li:nth-of-type(-n+4) > span {
        font-size: 14px
    }
}

@media (hover: hover) {
    p:not([class]) a:hover {
        opacity: .6
    }

    .header__logo:hover {
        opacity: .6
    }

    .header__burger:hover::after {
        background: var(--on-surface-var-opacity-8-dark)
    }

    .footer__logo:hover {
        opacity: .6
    }

    .footer__nav-list a:hover {
        color: var(--on-surface-var)
    }

    .footer__links a:hover {
        color: var(--on-surface-var)
    }

    .section-faq summary:hover::after {
        background: var(--on-surface-var-opacity-8)
    }

    .cr-section-hero__soc-list li a:hover {
        background: var(--primary-opacity-8-dark)
    }

    .pr-section-hero__soc-list li a:hover {
        background: var(--primary-opacity-8)
    }

    .btn_copy:hover {
        background: var(--primary-opacity-8)
    }

    .btn_primary:hover {
        -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3019607843);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3019607843)
    }

    .btn_primary:hover::after {
        background: var(--on-primary-opacity-8)
    }

    .btn_primary-dark:hover {
        -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3019607843);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3019607843)
    }

    .btn_primary-dark:hover::after {
        background: var(--on-primary-opacity-8-dark)
    }

    .btn_outline:hover::after {
        background: var(--primary-opacity-8)
    }

    .btn_outline-dark:hover::after {
        background: var(--primary-opacity-8-dark)
    }

    .btn_text:hover::after {
        background: var(--primary-opacity-8)
    }

    .btn_text-dark:hover::after {
        background: var(--primary-opacity-8-dark)
    }

    .btn_elevated:hover {
        -webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .1490196078);
        box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .1490196078)
    }

    .btn_elevated:hover::after {
        background: var(--primary-opacity-8)
    }

    .btn_tonal:hover {
        -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
        box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078)
    }

    .btn_tonal:hover::after {
        background: var(--on-secondary-opacity-8)
    }

    .content__header:hover::after {
        background: var(--on-surface-var-opacity-8-dark)
    }

    .content__item a:hover {
        background: var(--primary-opacity-8-dark)
    }

    .casinos-list__payment a.casinos-list__payment-item:hover {
        opacity: .6
    }

    .author__soc-list li a:hover {
        background: var(--primary-opacity-8)
    }

    .go-up:hover {
        -webkit-box-shadow: 0 6px 10px 4px rgba(0, 0, 0, .1490196078);
        box-shadow: 0 6px 10px 4px rgba(0, 0, 0, .1490196078)
    }

    .go-up:hover::after {
        background: var(--on-primary-container-opacity-8)
    }

    .breadcrumbs li:last-child a:hover {
        background: var(--primary-opacity-12)
    }

    .breadcrumbs a:hover {
        background: var(--primary-opacity-8);
        color: var(--on-surface-var)
    }

    .img-gallery .swiper-wrapper .swiper-slide a:hover::after {
        background: rgba(0, 0, 0, .6)
    }

    .img-gallery .swiper-wrapper .swiper-slide a:hover img {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }

    .img-gallery .swiper-wrapper .swiper-slide a:hover::before {
        opacity: 1
    }

    .img-gallery .swiper-pagination .swiper-pagination-bullet:hover::before {
        background: var(--primary)
    }

    .img-gallery .swiper-pagination .swiper-pagination-bullet:hover::after {
        opacity: 1
    }

    .tabs-block__trigger:hover {
        background: var(--on-surface-opacity-8)
    }

    .hero-links .links__button:hover {
        -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078);
        box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1490196078)
    }

    .hero-links .links__button:hover::after {
        background: var(--on-secondary-opacity-8)
    }
}

.js-copy__text {
    margin-top: 0!important;
}

/* wp-block-table */
.wp-block-table {
    width: 100%;
    overflow: auto;
}

.wp-block-table table {
    width: 100%;
}

.wp-block-table table.has-fixed-layout {
    table-layout: fixed;
}

.wp-block-table table thead tr {
    background: var(--tertiary);
    color: var(--on-tertiary);
}

.wp-block-table table tbody tr {
    background: var(--surf-cont-low);
}

.wp-block-table th,
.wp-block-table td {
    padding: 16px 32px;
}

@media (max-width: 1024px) {
    .wp-block-table table:has( td:nth-child(3) ) { min-width: 600px }
    .wp-block-table table:has( td:nth-child(4) ) { min-width: 800px }
    .wp-block-table table:has( td:nth-child(5) ) { min-width: 1000px }

    .wp-block-table table.has-fixed-layout {
        table-layout: auto;
    }
}