:root {
    --offsets: 25px;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg-header: #0a519e;
    --color-border-header: #0a519e;
    --color-bg-second-header: #fb4d00;
    --color-header-link: #ffffff;
    --color-header-sublink: #903107;
    --color-header-link-hover: #ffba00;
    --color-header-sublink-hover: #000000;
    --color-footer-link: #69a3e0;
    --color-footer-link-hover: #ffba00;
    --color-bg-footer: #003266;
    --color-border-footer: #2e3340;
    --color-font-dark: #fff;
    --color-font-darkgray: #656d87;
    --color-accent-blue: #448ede;
    --color-accent-hover-blue: #448ede81;
    --color-accent-red: #fb4d00;
    --color-accent-hover-red: #fb4b0081;
    --color-bg-first-button: #1b96f3;
    --color-bg-second-button: #089e4e;
    --ff-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --ff-secondary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.container {
    max-width: 1480px;
    padding: 0 var(--offsets);
    margin: 0 auto
}

main .container {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 25px;
    overflow: hidden
}

.container-full {
    max-width: 100%
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

p {
    font-weight: 400;
    margin-top: 1rem
}

a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-accent-blue)
}

a:hover {
    text-decoration: none
}

ol,
ul {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    padding-left: 25px;
    margin-top: 1rem
}

ul:not([class]) {
    list-style: none
}

ul:not([class]) li {
    position: relative
}

ul:not([class]) li::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #448ede
}

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

h1 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

h3 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 2.1rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

h4 {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.9rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

h5 {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.7rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

h6 {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem
}

.wrapper>.wp-block-table,
.wrapper>blockquote,
.wrapper>h1,
.wrapper>h2,
.wrapper>h3,
.wrapper>h4,
.wrapper>h5,
.wrapper>h6,
.wrapper>ol,
.wrapper>p,
.wrapper>ul {
    padding: 0 var(--offsets);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto
}

.wrapper>ol,
.wrapper>ul {
    padding-left: 50px
}

.wrapper blockquote,
blockquote {
    padding: 1rem var(--offsets) 1rem 2rem;
    border-left: 5px solid var(--main-accent-bg-color);
    background-color: #f0f8ff;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin-top: 1rem
}

.wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%)
}

.scroll-lock {
    overflow: hidden
}

.text-accent {
    color: var(--color-accent-red)
}

.global-title,
h2 {
    margin: 0 0 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    color: #fff
}

.global-title p,
h2 p {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin: 0
}

html {
    height: 100%;
    font-size: 18px;
    line-height: 27px
}

body {
    background-color: #dde4ec;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.get-image {
    margin: 0;
    display: block;
    line-height: 1
}

a,
button {
    font-family: inherit
}

.button {
    border: 1px solid transparent;
    border-radius: 45px;
    padding: 19px;
    outline: 0;
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    text-decoration: none;
    text-align: center;
    color: var(--color-white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.button .get-image {
    margin-right: 10px;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.button img {
    width: 16px;
    height: 16px
}

.button--accent-red {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red)
}

.button--accent-blue {
    background-color: var(--color-accent-blue);
    border-color: var(--color-accent-blue)
}

body {
    font-family: var(--ff-primary);
    overflow-x: hidden;
    color: var(--color-font-darkgray)
}

.header {
    background-color: var(--color-bg-header)
}

.header__container {
    max-width: 1480px;
    padding: 0 var(--offsets);
    margin: 0 auto;
    position: relative;
    z-index: 50;
    padding-top: 20px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 110;
    margin-right: 20px
}

.header__logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 35px
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.header__wrapper._active {
    top: 100%;
    height: calc(100vh - 53px)
}

.header__toggle-button {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: none;
    outline: 0;
    cursor: pointer;
    z-index: 110;
    margin-left: 20px
}

.header__toggle-button svg {
    fill: var(--color-white);
    -webkit-transition: fill .3s ease-in-out;
    -o-transition: fill .3s ease-in-out;
    transition: fill .3s ease-in-out
}

.header__nav {
    margin: 0 40px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.header__nav._active {
    top: 100%;
    bottom: auto
}

.header__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.icon-arrow {
    display: none;
    margin-left: 5px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.icon-arrow svg {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    fill: var(--color-accent-blue)
}

.header__nav-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__nav-item:not(:last-child) {
    margin-right: 40px
}

.header__nav-item--has-children._active .icon-arrow svg {
    fill: var(--color-accent-red);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.header__nav-item--has-children .icon-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header__nav-link {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-header-link);
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.header__nav-sublist {
    min-width: 165px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: #04386e;
    -webkit-transition: max-height .3s ease-in-out;
    -o-transition: max-height .3s ease-in-out;
    transition: max-height .3s ease-in-out;
    z-index: 10;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, .25);
    box-shadow: 0 0 25px rgba(0, 0, 0, .25);
    border-radius: 10px
}

.header__nav-subitem {
    margin: 0 !important;
    width: 100%
}

.header__nav-subitem:not(:last-child) .header__nav-link {
    border-bottom: 1px solid #090f1e
}

.header__nav-subitem .icon-arrow {
    display: none
}

.header__nav-subitem .header__nav-link {
    width: 100%;
    font-family: var(--ff-primary);
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #fff
}

.header__buttons {
    position: relative;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header__button+.header__button {
    margin-left: 10px
}

.header__select-lang {
    margin-left: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header__nav-item .get-image,
.header__nav-subitem .get-image {
    margin: 0 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header__nav-item .get-image img,
.header__nav-subitem .get-image img {
    width: 19px;
    height: 19px;
    -o-object-fit: contain;
    object-fit: contain
}

.breadcrumbs {
    margin-top: -1px;
    border-top: 1px solid #1461b3;
    background-color: #04386e
}

.breadcrumbs__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    padding: 5px var(--offsets)
}

.breadcrumbs__list_item:not(:last-child) {
    margin-right: 14px
}

.breadcrumbs__list-link {
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--color-white);
    padding: 5px 0;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.breadcrumbs__list-link svg {
    margin-left: 14px;
    fill: var(--color-header-link-hover)
}

.breadcrumbs__list-link--no-active {
    color: var(--color-header-link-hover)
}

.breadcrumbs__list-link--no-active svg {
    display: none
}

.footer {
    position: relative;
    padding: 40px 0;
    background-color: var(--color-bg-footer)
}

.footer__scroll-top {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -40px;
    display: none
}

.footer__container {
    position: relative;
    max-width: 1480px;
    padding: 0 var(--offsets);
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 270px 1fr 1fr 38px;
    grid-template-columns: 270px 1fr 1fr 38px;
    gap: 0 70px
}

.footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 38px
}

.footer__nav {
    padding: 10px 0;
    -ms-grid-column-span: 2;
    grid-column: span 2
}

.footer__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer__nav-item {
    padding: 10px 0;
    margin: 0 20px
}

.footer__nav-item a,
.footer__nav-item span {
    font-family: var(--ff-primay);
    color: var(--color-footer-link);
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__nav-item a img {
    margin-right: 10px;
    width: 19px;
    height: 19px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block
}

.footer__warning {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5
}

.footer__warning svg {
    width: 38px;
    height: 38px
}

.footer__social-list {
    grid-column: 1/-1;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__social-item {
    margin: 0 20px
}

.footer__social-link {
    display: block;
    border-radius: 100%;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.footer__social-link p {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer__social-link img {
    padding: 2px;
    display: block;
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__payments-systems {
    padding: 10px 0;
    grid-column: 1/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.payments-systems__item {
    margin: 0 auto
}

.payments-systems__item .get-image {
    margin: 5px 15px
}

.footer__links {
    grid-column: 1/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px
}

.footer__link {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.footer__link p {
    margin: 0
}

.footer__link img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 50px
}

.footer__link:not(:last-child) {
    margin-right: 40px
}

.footer__widget-1,
.footer__widget-2 {
    padding: 10px 0;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    font-size: 14px;
    line-height: 17px;
    color: #69a3e0
}

.scroll-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent
}

.scroll-top__button {
    outline: 0;
    border: none;
    background-color: transparent
}

.mobile-button {
    position: fixed;
    left: var(--offsets);
    bottom: 20px;
    right: var(--offsets);
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.mobile-button._active {
    opacity: 1;
    visibility: visible
}

.mobile-button__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: 15px 20px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fa5e00), to(#fa7c00));
    background-image: -o-linear-gradient(bottom, #fa5e00 0, #fa7c00);
    background-image: linear-gradient(0deg, #fa5e00 0, #fa7c00);
    -webkit-box-shadow: 0 20px 30px rgba(250, 65, 0, .4);
    box-shadow: 0 20px 30px rgba(250, 65, 0, .4);
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    border: none;
    outline: 0;
    text-decoration: none
}

.faq__header {
    padding: 30px;
    background-color: #f1f5ff;
    border-radius: 10px;
    margin-bottom: 10px
}

.faq__subtitle {
    margin-bottom: 10px
}

.faq__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.faq__body-item:not(:last-child) {
    margin-bottom: 20px
}

.faq__body-details {
    overflow: hidden;
    border-radius: 10px;
    outline: 0;
    border: 1px solid #0a519e;
    background-color: var(--color-white)
}

.faq__body-details[open] .faq__body-question svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.faq__body-question {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    font-family: inherit;
    color: var(--color-white);
    background-color: #0a519e;
    cursor: pointer;
    outline: 0
}

.faq__body-question svg {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-left: 30px;
    z-index: 10;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 33px;
    width: 33px
}

.faq__body-question::-webkit-details-marker {
    display: none
}

.faq__body-answer {
    color: var(--color-font-darkgrey);
    padding: 20px
}

.toc {
    margin: 1rem auto
}

.toc.container {
    background-color: #0a519e
}

.toc__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.toc__title {
    margin: 0 10px 0 0;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-accent-red);
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.toc__title svg {
    display: none;
    pointer-events: none
}

.toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: max-height .3s ease-out;
    -o-transition: max-height .3s ease-out;
    transition: max-height .3s ease-out
}

.toc__item:not(:last-child) {
    margin-right: 25px
}

.toc__link {
    font-size: 14px;
    line-height: 16px;
    color: var(--color-white);
    padding: 5px;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none
}

.slots__subtitle {
    margin-bottom: 10px
}

.slots__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    gap: 15px
}

.slots__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    background-color: #e8ecf1;
    border-radius: 15px;
    overflow: hidden
}

.slots__image {
    margin-bottom: 20px
}

.slots__image img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 250px;
    border-radius: 15px
}

.slots__description {
    margin: 0 15px 20px;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-font-dark);
    text-align: center
}

.slots__link {
    margin: auto 15px 15px;
    padding: 15px;
    border-radius: 3px;
    text-transform: uppercase
}

.screenshot-gallery__description {
    margin: 0 0 10px
}

.screenshot-gallery__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.screenshot-gallery__item p {
    margin: 0
}

.gbtn {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background-color: rgba(251, 77, 0, .3) !important
}

.video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.video__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden
}

.video.align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.video.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.video.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.video__player {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: 0;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.video._active .video__button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.video._active .video__player {
    cursor: pointer
}

.video__button svg {
    width: 56px;
    height: 56px;
    fill: var(--color-accent-red);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.steps {
    border-left: 1px solid #e8ecf1;
    list-style: none
}

.steps__item:not(:last-child) {
    margin-bottom: 20px
}

.steps__item .get-image {
    margin-top: 10px
}

.steps__counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 15px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: var(--color-font-dark)
}

.steps__counter span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    width: 36px;
    height: 36px;
    color: var(--color-white);
    background-color: var(--color-accent-red);
    border-radius: 100%
}

.steps-block .steps {
    margin-top: 1rem;
    border: none;
    padding-left: 0
}

.custom-columns {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    font-size: inherit;
    line-height: inherit
}

.custom-columns .buttons {
    margin: 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3
}

.custom-columns+.custom-columns {
    margin-top: 2rem
}

.custom-columns--added-buttons .custom-columns__content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3
}

.custom-columns--image-block,
.custom-columns--steps-block {
    -ms-grid-columns: 1fr .7fr;
    grid-template-columns: 1fr .7fr
}

.custom-columns--video-block {
    -ms-grid-columns: 1fr 1.2fr;
    grid-template-columns: 1fr 1.2fr
}

.custom-columns .get-image {
    padding: 0;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.custom-columns .get-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.custom-columns ol,
.custom-columns ul {
    font-weight: 500
}

.custom-columns__content :first-child {
    margin-top: 0
}

.custom-columns__steps {
    padding: 0 0 0 25px
}

.custom-columns__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.buttons {
    margin: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.buttons--stretch {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.buttons--stretch .buttons__button+.buttons__button {
    margin: 0
}

.buttons--stretch .buttons__button {
    width: 100%
}

.buttons--one .buttons__button {
    grid-column: 1/-1
}

.buttons.align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.buttons.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.buttons.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.buttons__button {
    min-width: 150px
}

.buttons__button+.buttons__button {
    margin-left: 20px
}

.promo.wrapper {
    margin-top: 0 !important
}

.promo .buttons,
.promo .insert-in-a-header,
.promo .rating-and-downloads {
    max-width: 650px
}

.promo__container {
    padding-top: 40px;
    padding-bottom: 25px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 58% 42%;
    grid-template-columns: 58% 42%;
    gap: 10px;
    background-color: transparent !important;
    border-radius: 0 !important
}

.promo__content>* {
    color: #b3d5f8;
    font-size: 20px;
    line-height: 24px
}

.promo__title {
    margin: 0 0 15px;
    font-weight: 900;
    font-size: 36px;
    line-height: 130%;
    color: var(--color-white);
    max-width: 550px
}

.promo__title span {
    color: var(--color-accent-red)
}

.promo__subtitle {
    margin: 0 0 15px;
    color: var(--color-white)
}

.promo__description {
    margin: 0;
    color: var(--color-white);
    font-size: 20px;
    line-height: 24px
}

.promo__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.promo__image p {
    height: 100%;
    margin: 0
}

.promo__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.rating-and-downloads {
    margin: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.rating-and-downloads.align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.rating-and-downloads.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.rating-and-downloads.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.rating-and-downloads__rating {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #0a519e
}

.rating-and-downloads__rating-star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-white)
}

.rating-and-downloads__rating-star svg {
    width: 19px;
    height: 19px;
    margin-left: 5px
}

.rating-and-downloads__download-text,
.rating-and-downloads__rating-reviews {
    font-size: 14px;
    line-height: 16px;
    color: var(--color-white);
    margin-top: 5px
}

.rating-and-downloads__download {
    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;
    padding: 0 15px
}

.rating-and-downloads__download-number {
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-white)
}

.comment-form__form {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: .6fr 1fr;
    grid-template-columns: .6fr 1fr;
    gap: 15px
}

.comment-form__textarea {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    resize: none
}

.comment-form__field {
    background-color: #e8ecf1;
    border-radius: 5px;
    padding: 25px 20px;
    border: 1px solid #e7e9ee;
    outline: 0;
    font-family: inherit;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.comment-form__field::-webkit-input-placeholder {
    font-family: inherit
}

.comment-form__field::-moz-placeholder {
    font-family: inherit
}

.comment-form__field:-ms-input-placeholder {
    font-family: inherit
}

.comment-form__field::-ms-input-placeholder {
    font-family: inherit
}

.comment-form__field::placeholder {
    font-family: inherit
}

.comment-form__field:focus {
    border-color: var(--color-header-link-hover)
}

.comment-form__field.error {
    border-color: #cf2e2e
}

.comment-form__field.success {
    border-color: #3d812c
}

.comment-form__button {
    border-radius: 5px;
    padding: 25px;
    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px
}

.comment__child {
    grid-column: 1/-1
}

.comment-form__alert {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.error {
    max-height: 100%;
    color: #cf2e2e;
    opacity: 1;
    visibility: visible
}

.success {
    max-height: 100%;
    color: #00d084;
    opacity: 1;
    visibility: visible
}

.comment {
    margin: 1rem auto;
    padding: 25px;
    background: #f1f5ff;
    border: 1px solid #d6ddf0;
    border-radius: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-min-content 1fr;
    -ms-grid-columns: min-content 1fr;
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    gap: 10px
}

.comment:first-child {
    margin-top: 1.2rem
}

.comment__author {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--color-accent-red);
    white-space: nowrap;
    margin: 0
}

.comment__date {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #0a519e;
    text-align: right
}

.comment__content {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #3d3d3d;
    grid-column: 1/-1
}

.comment__child .comment,
.comments-container {
    margin: 1rem 0
}

.button-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem
}

.button-content.alight-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.button-content.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.button-content.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end
}

.news__subtitle {
    margin: 0 0 15px
}

.news__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 25px
}

.news__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 275px 1fr;
    grid-template-columns: 275px 1fr;
    gap: 5px 25px
}

.news__item .get-image {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    border-radius: 20px;
    overflow: hidden
}

.news__item img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover
}

.news__list-title {
    display: inline-block;
    margin: 0;
    font-family: inherit;
    color: var(--color-font-dark);
    font-weight: 700;
    font-size: 20px;
    line-height: 23px
}

.news__list-description {
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    line-height: 150%
}

.select-lang {
    position: relative;
    background-color: #04386e;
    border-radius: 10px;
    border: 1px solid #04386e;
    -webkit-transition: border-color .3s ease-in-out;
    -o-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
    cursor: pointer;
    width: 90px
}

.select-lang::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 12px;
    left: 4px;
    background-image: url(../images/icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.select-lang._active {
    border-radius: 10px 10px 0 0;
    border: 1px solid var(--color-header-link-hover);
    border-bottom: 1px solid transparent
}

.select-lang._active:hover {
    border-color: var(--color-header-link-hover)
}

.select-lang._active::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.select-lang._active .select-lang__options-list {
    max-height: -webkit-min-content;
    max-height: -moz-min-content;
    max-height: min-content;
    border: 1px solid var(--color-header-link-hover);
    border-top: transparent
}

.select-lang>.select-lang__option {
    border-radius: 10px 10px 0 0
}

.select-lang__options-list {
    max-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: max-height .3s ease-in-out;
    -o-transition: max-height .3s ease-in-out;
    transition: max-height .3s ease-in-out;
    position: absolute;
    left: -1px;
    right: -1px;
    background-color: #04386e;
    border-radius: 0 0 10px 10px;
    overflow: hidden
}

.select-lang__options-list .select-lang__option {
    padding: 0
}

.select-lang__option,
.select-lang__selected {
    color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.select-lang__option p,
.select-lang__selected p {
    margin: 0
}

.select-lang__option img,
.select-lang__selected img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    width: 24px;
    height: 24px
}

.select-lang__option {
    padding: 7px 7px 7px 25px;
    -webkit-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out
}

.select-lang__option span {
    text-transform: uppercase
}

.select-lang__image {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 5px
}

.select-lang__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding: 7px 7px 7px 25px
}

.bet-on {
    margin: .8rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.bet-on.align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.bet-on.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.bet-on.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.bet-on__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 5px
}

.bet-on__item .get-image {
    width: 44px;
    height: 44px;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 5px;
    background-color: var(--color-accent-red)
}

.bet-on__item .get-image img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block
}

.bet-on__item p {
    margin: 0;
    font-size: 20px;
    line-height: 23px;
    color: var(--color-font-dark);
    font-weight: 700
}

.bet-on__item:not(:last-child) {
    margin-right: 30px
}

.wp-block-image {
    margin-top: 20px
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse
}

.wp-block-table tr:not(:last-child) {
    border-bottom: 1px solid #e8ecf1
}

.wp-block-table td,
.wp-block-table th {
    padding: 20px 25px
}

.wp-block-table td:first-child {
    font-weight: 500;
    color: var(--color-font-dark)
}

.wp-block-table+* {
    margin-top: 2rem
}

.wp-block-table.table-container {
    margin: -25px
}

.wp-block-table.table-container td {
    padding: 20px
}

.wp-block-table.insert-in-a-container {
    background-color: transparent;
    margin: 1rem 0 !important;
    font-family: inherit;
    font-size: 16px;
    line-height: 19px
}

.wp-block-table.insert-in-a-container table {
    margin: 0;
    border-collapse: collapse
}

.wp-block-table.insert-in-a-container tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.wp-block-table.insert-in-a-container tr:not(:last-child) {
    border: none;
    margin-right: 35px
}

.wp-block-table.insert-in-a-container td {
    padding: 7px 0
}

.wp-block-table.insert-in-a-container td:first-child {
    width: auto;
    font-weight: 600
}

.wp-block-table.insert-in-a-container td:not(:last-child) {
    padding-right: 15px
}

.wp-block-table.insert-in-a-header {
    margin: 1rem 0 !important;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(4, 28, 55, .3);
    border: 1px solid #0a519e
}

.wp-block-table.insert-in-a-header table {
    width: 100%;
    border-collapse: collapse
}

.wp-block-table.insert-in-a-header tr:not(:last-child) {
    border-bottom: 1px solid #0a519e
}

.wp-block-table.insert-in-a-header td {
    padding: 20px;
    width: auto !important
}

.wp-block-table.insert-in-a-header td:first-child {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-white)
}

.wp-block-table.insert-in-a-header td:last-child {
    text-align: right;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #b3d5f8
}

.custom-notes {
    position: relative;
    padding: 15px 15px 15px 25px;
    max-width: 600px;
    background: #4eb3ff1a;
    margin-top: 25px
}

.custom-notes:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: var(--color-accent-blue)
}

.custom-notes p {
    margin: 0
}

@media (hover:hover),
screen and (min-width:0\0) {

    .button--accent-red:focus,
    .button--accent-red:hover {
        background-color: #fa7c00;
        border-color: #fa7c00;
        -webkit-box-shadow: 0 20px 30px rgba(250, 65, 0, .4);
        box-shadow: 0 20px 30px rgba(250, 65, 0, .4)
    }

    .button--accent-blue:focus,
    .button--accent-blue:hover {
        background-color: #6871fa;
        border-color: #6871fa;
        -webkit-box-shadow: 0 20px 30px #4e58ec;
        box-shadow: 0 20px 30px #4e58ec
    }

    .header__toggle-button svg:focus,
    .header__toggle-button svg:hover {
        fill: var(--color-accent-red)
    }

    .header__nav-link:focus,
    .header__nav-link:hover {
        color: var(--color-header-link-hover)
    }

    .header__nav-subitem .header__nav-link:focus,
    .header__nav-subitem .header__nav-link:hover {
        color: var(--color-header-link-hover)
    }

    a.breadcrumbs__list-link:focus,
    a.breadcrumbs__list-link:hover {
        color: var(--color-header-link-hover)
    }

    .footer__nav-item a:focus,
    .footer__nav-item a:hover {
        color: var(--color-footer-link-hover)
    }

    .footer__social-link:focus,
    .footer__social-link:hover {
        -webkit-transform: scale(1.2) translateZ(0);
        transform: scale(1.2) translateZ(0)
    }

    .footer__link:focus,
    .footer__link:hover {
        -webkit-transform: scale(1.1) translateZ(0);
        transform: scale(1.1) translateZ(0)
    }

    .toc__link:focus,
    .toc__link:hover {
        color: var(--color-header-link-hover)
    }

    .gbtn:focus,
    .gbtn:hover {
        background-color: #fb4d00 !important
    }

    .video__button:focus svg,
    .video__button:hover svg {
        fill: var(--color-header-sublink)
    }

    .select-lang:focus,
    .select-lang:hover {
        border-color: var(--color-header-link-hover)
    }

    .select-lang._active .select-lang__option:focus,
    .select-lang._active .select-lang__option:hover {
        background-color: var(--color-header-link-hover)
    }
}

@media (min-width:1280px) and (hover:hover),
screen and (min-width:1280px) and (min-width:0\0) {

    .header__nav-item--has-children:focus .header__nav-sublist,
    .header__nav-item--has-children:hover .header__nav-sublist {
        display: block
    }

    .header__nav-item--has-children:focus .icon-arrow,
    .header__nav-item--has-children:hover .icon-arrow {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    .header__nav-item--has-children:focus .icon-arrow svg,
    .header__nav-item--has-children:hover .icon-arrow svg {
        fill: var(--color-accent-red)
    }
}

@media (max-width:1500px) {
    main .container {
        margin-left: 10px;
        margin-right: 10px
    }
}

@media (max-width:1439px) {

    .global-title,
    h2 {
        font-size: 32px;
        line-height: 38px
    }
}

@media screen and (max-width:1280px) {
    :root {
        --offsets: 20px
    }
}

@media (max-width:1279px) {
    .header {
        border-bottom: 1px solid #003266
    }

    .header__wrapper {
        margin: 0 auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .header__toggle-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header__nav {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: var(--color-bg-header)
    }

    .header__nav-list {
        -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;
        width: 100%
    }

    .icon-arrow {
        margin-right: 10px
    }

    .header__nav-item:not(:last-child) {
        margin-right: 0
    }

    .header__nav-item--has-children._active .icon-arrow svg {
        fill: var(--color-black)
    }

    .header__nav-item--has-children>.header__nav-link {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }

    .header__nav-item {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .header__nav-link {
        padding: 10px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }

    .header__nav-sublist {
        position: static;
        display: block;
        width: 100%;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        max-height: 0;
        overflow: hidden;
        border-radius: 0
    }

    .header__buttons {
        margin: 0 auto
    }

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

    .news__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .bet-on__item:not(:last-child) {
        margin-right: 25px
    }
}

@media screen and (max-width:1024px) {
    :root {
        --offsets: 16px
    }
}

@media (max-width:1024px) {
    html {
        font-size: 16px;
        line-height: 25px
    }
}

@media (max-width:1023px) {
    main .container {
        padding: 20px
    }

    .global-title,
    h2 {
        font-size: 26px;
        line-height: 32px
    }

    .button {
        padding: 15px 25px
    }

    .footer {
        padding: 20px 0
    }

    .footer--enable-mobile-button {
        padding-bottom: 90px
    }

    .footer__container {
        -ms-grid-columns: 150px 1fr 1fr 38px;
        grid-template-columns: 150px 1fr 1fr 38px;
        gap: 0 30px
    }

    .footer__logo img {
        max-height: 20px
    }

    .footer__link img {
        max-height: 35px
    }

    .footer__link:not(:last-child) {
        margin-right: 30px
    }

    .faq__body-item:not(:last-child) {
        margin-bottom: 10px
    }

    .faq__body-answer,
    .faq__body-question {
        padding: 15px;
        font-size: 17px;
        line-height: 20px
    }

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

    .steps {
        padding: 15px 0 0;
        border-left: none;
        border-top: 1px solid #e8ecf1
    }

    .custom-columns .buttons {
        grid-column: auto
    }

    .custom-columns--added-buttons .custom-columns__content {
        grid-row: auto
    }

    .custom-columns {
        gap: 20px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .custom-columns__video {
        margin: 0 auto
    }

    .promo__container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0
    }

    .promo__title {
        font-size: 24px;
        margin-bottom: 10px;
        width: 100%
    }

    .comment-form__form {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .comment-form__textarea {
        -ms-grid-column: 1;
        grid-column: 1/1;
        grid-row: auto
    }

    .comment-form__field {
        padding: 15px;
        font-size: 18px;
        line-height: 20px
    }

    .comment-form__alert {
        position: absolute;
        bottom: -25px;
        left: 0
    }

    .comment {
        padding: 20px
    }

    .comment__author,
    .comment__date {
        font-size: 14px
    }

    .comment__content,
    .bet-on__item p {
        font-size: 14px;
        line-height: 16px
    }

    .wp-block-table {
        overflow-x: auto;
    }
}

@media (max-width:768px) {
    html {
        font-size: 15px;
        line-height: 23px
    }
}

@media screen and (max-width:767px) {
    :root {
        --offsets: 10px
    }
}

@media (max-width:767px) {
    main .container {
        padding: 15px;
        border-radius: 5px
    }

    ul:not([class]) li::before {
        width: 8px;
        height: 8px
    }

    .wrapper {
        margin-bottom: .5rem;
        margin-top: .5rem
    }

    .global-title,
    h2 {
        font-size: 20px;
        line-height: 24px
    }

    .button {
        padding: 10px 25px
    }

    .header__container {
        padding-top: 10px;
        padding-bottom: 10px;
		justify-content: space-between;
    }

    .header__container::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        background-color: var(--color-bg-header)
    }

    .header__logo img {
        max-height: 20px
    }

    .header__wrapper {
        position: absolute;
        right: 0;
        left: 0;
        bottom: -56px;
        z-index: 40;
        background-color: #04386e
    }

    .header__toggle-button {
        margin-left: auto
    }

    .header__nav {
        position: static;
        width: 100%
    }

    .header__nav-list {
        height: auto
    }

    .icon-arrow {
        padding: 8px 10px 8px 20px
    }

    .icon-arrow svg {
        -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    .header__nav-item--has-children>.header__nav-link {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        width: calc(100% - 90px)
    }

    .header__nav-link {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 10px;
        width: 100%
    }

    .header__nav-subitem .header__nav-link {
        padding-left: 40px;
        margin-left: 0
    }

    .header__buttons {
        padding: 9px var(--offsets)
    }

    .breadcrumbs {
        margin-top: 53px
    }

    .breadcrumbs__list_item:not(:last-child) {
        margin-right: 7px
    }

    .breadcrumbs__list-link svg {
        margin-left: 7px
    }

    .footer__scroll-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .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-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer__logo {
        margin: 0 auto 10px
    }

    .footer__nav-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer__nav-item a img {
        width: 16px;
        height: 16px
    }

    .footer__nav-item a,
    .footer__nav-item span {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px
    }

    .footer__warning svg {
        width: 27px;
        height: 27px
    }

    .footer__warning {
        margin-top: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .footer__social-list {
        padding: 10px 0
    }

    .footer__social-item {
        margin: 0 15px
    }

    .footer__widget-1,
    .footer__widget-2 {
        text-align: center
    }

    .faq__header {
        padding: 15px 10px
    }

    .faq__body-details {
        border-radius: 5px
    }

    .faq__body-question svg {
        margin-left: 15px;
        height: 16px;
        width: 16px
    }

    .faq__body-question {
        padding: 10px;
        font-size: 14px;
        line-height: 16px
    }

    .faq__body-answer {
        padding: 0 10px 15px;
        font-size: 14px;
        line-height: 16px
    }

    .toc {
        margin: .5rem 0
    }

    .toc._active .toc__list {
        max-height: 100%;
        visibility: visible;
        opacity: 1
    }

    .toc._active .toc__title svg {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    .toc__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .toc__title svg {
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        display: block
    }

    .toc__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        margin-right: 0;
        width: 100%;
        cursor: pointer
    }

    .toc__list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-height: 0;
        visibility: hidden;
        opacity: 0
    }

    .toc__item:not(:last-child) {
        margin-right: 0
    }

    .slots__list {
        gap: 10px;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr)
    }

    .slots__image {
        margin-bottom: 12px
    }

    .slots__description {
        margin: 0 10px 12px
    }

    .slots__link {
        padding: 10px;
        margin: auto 10px 10px
    }

    .screenshot-gallery {
        margin-right: -15px;
        margin-left: -15px
    }

    .screenshot-gallery__description,
    .screenshot-gallery__title {
        margin-left: 15px
    }

    .screenshot-gallery__list {
        width: 100%;
        max-width: 980px;
        overflow-x: auto
    }

    .screenshot-gallery__item {
        min-width: 250px;
        max-width: 270px
    }

    .video__container {
        border-radius: 5px
    }

    .steps__item:not(:last-child) {
        margin-bottom: 15px
    }

    .steps__counter span {
        width: 26px;
        height: 26px
    }

    .steps__counter {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px
    }

    .custom-columns {
        gap: 15px
    }

    .buttons--stretch {
        gap: 10px
    }

    .buttons__button {
        padding: 10px
    }

    .buttons__button+.buttons__button {
        margin-left: 10px
    }

    .promo--no-breadcrumbs .promo__container.container {
        padding: 65px 0 0
    }

    .promo__content>* {
        font-size: 14px;
        line-height: 17px;
        text-align: center
    }

    .promo__title {
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
        text-align: center
    }

    .promo__subtitle {
        margin-bottom: 10px;
        text-align: center
    }

    .promo__description {
        font-size: 14px;
        line-height: 17px
    }

    .comment-form {
        border-radius: 5px;
        background-color: #f1f5ff;
        padding: 10px
    }

    .comment-form__field {
        font-size: 14px;
        line-height: 16px
    }

    .comment-form__button {
        padding: 15px;
        font-size: 14px;
        line-height: 16px
    }

    .comment {
        padding: 15px
    }

    .comment.container {
        margin-top: 5px;
        margin-bottom: 5px
    }

    .comments-container {
        margin: .5rem 0
    }

    .news__list {
        gap: 15px
    }

    .news__item .get-image {
        border-radius: 5px;
        grid-row: auto;
        gap: 10px
    }

    .news__item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px
    }

    .news__list-title {
        font-size: 14px;
        line-height: 16px
    }

    .news__list-description {
        font-size: 14px;
        line-height: inherit
    }

    .select-lang._active .select-lang__options-list {
        border: 1px solid var(--color-header-link-hover);
        border-top: transparent
    }

    .select-lang.mob-menu-open._active {
        border-radius: 0 0 10px 10px;
        border: 1px solid var(--color-header-link-hover);
        border-top: 1px solid transparent
    }

    .select-lang.mob-menu-open._active .select-lang__options-list {
        border-radius: 10px 10px 0 0;
        bottom: 100%;
        border: 1px solid var(--color-header-link-hover);
        border-bottom: none
    }

    .select-lang.mob-menu-open._active .select-lang__option {
        border-radius: 0 0 10px 10px;
        border-top: transparent
    }

    .bet-on__item .get-image {
        width: 24px;
        height: 24px;
        padding: 4px
    }

    .bet-on__item .get-image img {
        width: 16px;
        height: 16px
    }

    .wp-block-image {
        margin-top: 10px
    }

    .container .wp-block-table {
        background-color: unset
    }

    .wp-block-table tr:not(:last-child) {
        border-color: #e7e9ee
    }

    .wp-block-table td,
    .wp-block-table th {
        padding: 15px;
        border: 1px solid #e7e9ee
    }

    .wp-block-table {
        overflow-x: auto
    }

    .wp-block-table.table-container {
        margin: -15px;
        background-color: #f1f2f5
    }

    .wp-block-table.table-container td {
        padding: 15px
    }

    .wp-block-table.insert-in-a-container tbody {
        display: table;
        width: 100%
    }

    .wp-block-table.insert-in-a-container tr {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .wp-block-table.insert-in-a-container tr:not(:last-child) {
        margin: 0;
        border-bottom: 1px solid #04386e
    }

    .wp-block-table.insert-in-a-container td:first-child {
        color: var(--color-white)
    }

    .wp-block-table.insert-in-a-container td:last-child {
        text-align: right
    }

    .wp-block-table.insert-in-a-container td {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px;
        border: none;
        color: #b3d5f8;
        display: block !important
    }

    .wp-block-table.insert-in-a-container {
        color: var(--color-white);
        font-size: 14px;
        line-height: 16px;
        background-color: #0a519e;
        margin: .5rem -15px !important
    }

    .wp-block-table.insert-in-a-header tr:not(:last-child) {
        border-bottom: 1px solid #115eb1
    }

    .wp-block-table.insert-in-a-header td {
        padding: 10px;
        border: none
    }

    .wp-block-table.insert-in-a-header {
        background-color: #0a519e
    }

    .custom-notes:after {
        width: 2px
    }

    .custom-notes {
        padding: 10px;
        margin-top: 15px
    }
}

@media (max-width:575px) {

    .global-title,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 16px;
        line-height: 17px
    }

    html {
        font-size: 14px;
        line-height: 18px
    }

    .header__buttons {
        margin: 0;
        width: 100%
    }

    .header__button {
        padding: 10px 5px;
        width: 100%
    }

    .footer__nav-list {
        -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
    }

    .toc__list {
        width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .toc__link {
        padding-left: 0
    }

    .comment-form__alert {
        bottom: -28px
    }

    .wp-block-table td,
    .wp-block-table th,
    .wp-block-table.table-container td {
        padding: 10px
    }
}

@media (max-width:374px) {
    .buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .buttons--stretch {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    .buttons__button {
        width: 100%
    }

    .buttons__button+.buttons__button {
        margin-left: 0;
        margin-top: 10px
    }
}


@media (max-width: 1279px) {
    .header__select-lang {
        z-index: 110;
    }
}

/* Edits. 16.06.2023 */
.wrapper:first-child {
    margin-top: 2rem;
}

.footer__logo {
    left: var(--offsets);
}

@media (max-width: 1023px) {
    .footer__logo {
        left: 50%;
    }
}

.footer p {
    color: white;
}

.footer__dcma {
    text-align: left;
}

@media (max-width:768px) {
    .footer__dcma {
        text-align: center;
    }
}

.header__logo img {
    width: auto;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: unset;
    z-index: 900;
    transform: unset;
    top: unset;
}

/* Edits. 15.06.2023 */
:root {
    --color-bg-header: #090f1e;
    --color-bg-footer: #090f1e;
}

body {
    background-color: #090f1e;
    color: white;
}

.header {
    background-image: linear-gradient(92deg, #1e283f, rgba(20, 27, 46, .6));
    background-color: #090f1e;
}

main .container {
    background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46, .6) 100%);
    background-color: unset;
}

main .container:has(.game) {
    background-image: unset;
}

.wp-block-table td:first-child {
    color: white;
}

/* replace #fff -> white */

/* header lang */
.header__lang {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #000;
    border-radius: 5px;
    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
    z-index: 140;
    flex-shrink: 0;
}

.header__current-lang,
.header__lang img {
    min-width: 23px;
    height: 22px;
}

.header__current-lang {
    cursor: pointer;
}

.header__lang .header__lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    padding-left: 0;
    margin-top: 0;
    list-style: none;
    background-color: #000;
    border-radius: 0 0 5px 5px;
}

.header__lang .header__lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* header lang */


@media (max-width: 767px) {

    .header__buttons,
    .header__wrapper {
        background-color: var(--color-bg-header);
    }

    .header__wrapper._active .header__buttons {
        margin-bottom: 9px;
    }
}

.steps__item .button {
    margin: 10px auto 0;
    max-width: 280px;
    width: 100%;
}

.scroll-top {
    bottom: 80px;
}

.header__nav-item--current span.header__nav-link,
.footer__nav-item--current span {
    color: var(--color-header-link-hover);
}

.steps__item-title {
    margin-top: 0;
}

.wp-block-table:not(:last-child) {
    margin-top: 1rem;
}

.wp-block-table table {
    border: 1px solid #e8ecf1;
}

.wp-block-table td:not(:last-child) {
    border-right: 1px solid #e8ecf1;
}

.button--accent-red {
    background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
    background-color: unset;
    border: unset;
}

.button--accent-blue {
    background-image: linear-gradient(255deg, #00b7ff, #8d53e9);
    +box-shadow: 0 6px 22px 0 rgba(5, 109, 218, .3);
    background-size: 300% 100%;
    background-color: unset;
    border: unset;
}

.button--accent-red:hover,
.button--accent-blue:hover,
.button--accent-red:focus,
.button--accent-blue:focus {
    background-color: unset;
    border-color: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    opacity: .9;
}


@media (max-width: 767px) {
    .main--front-page {
        margin-top: 32px;
    }
}

.header__current-lang,
.header__lang img {
    width: 33px;
    height: 23px;
    object-fit: cover;
}

/* header lang */
.header__lang {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #000;
    border-radius: 5px;
    padding: 8px 9px;
    margin: 0 10px;
    cursor: pointer;
    z-index: 10000;
}

.header__current-lang,
.header__lang img {
    width: auto;
    height: 22px;
    object-fit: contain;
}

.header__current-lang {
    cursor: pointer;
}

.header__lang .header__lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    padding-left: 0;
    margin-top: 0;
    list-style: none;
    background-color: #000;
    border-radius: 0 0 5px 5px;
}

.header__lang .header__lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* header lang */
.header__buttons {
    margin-left: auto;
}

.header__wrapper {
    flex-grow: 1;
}

.page-header__burger {
    margin-left: 16px;
}

.header__current-lang,
.header__lang img {
    width: 32px;
    height: 22px;
    object-fit: cover;
}

.header__current-lang {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.header__lang img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.header__lang {
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.lang__code {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.header__lang .header__lang-list {
    width: 100%;
}

.header__lang .header__lang-list:before {
    content: '';
    width: 100%;
    height: 2px;
}

.header__lang .header__lang-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    padding: 0;
}

.header__lang .header__lang-list>li {
    padding: 8px 9px;
}

.header__lang,
.header__lang._open {
    border-radius: 10px;
}

.header__lang img {
    width: 32px;
    height: 23px;
    object-fit: cover;
}

.header__lang .header__lang-item p {
    margin: 0;
}

.header__lang .header__lang-list {
    background-color: unset;
}

.header__lang .header__lang-list>li {
    display: flex;
    justify-content: flex-end;
    background-color: #1f2841;
}

.header__lang .header__lang-list>li:first-child {
    border-radius: 10px 10px 0 0;
}

.header__lang .header__lang-list>li:last-child {
    border-radius: 0 0 10px 10px;
}

.header__lang-close,
.header__lang-close._show {
    display: none;
}

.header__lang .header__lang-list>li {
    position: relative;
}


.header__lang-list .lang__code {
    position: absolute;
    top: 0;
    left: 9px;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

@media (min-width: 901px) {
    .header__lang:hover .header__lang-list {
        display: flex;
    }
}

.header__lang._open .header__lang-list {
    display: flex;
}

@media (max-width: 900px) {
    .header__lang._open {
        position: absolute;
        top: 100%;
        width: 100vw;
        margin: 0 -10px;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        padding: 12px var(--offsets);
        z-index: 999;
    }

    .header__lang._open>svg {
        display: none;
    }

    .header__lang._open .header__lang-list {
        width: 100%;
    }

    .header__lang._open .header__lang-list::before {
        content: unset;
    }

    .header__lang._open .header__lang-list>li {
        background-color: #090f1e;
        padding: 0;
        margin: 0 -var(--offsets);
    }

    .header__lang._open .header__lang-list>li:first-child {
        border-radius: 0;
    }

    .header__lang._open .header__lang-list>li:last-child {
        border-radius: 0;
    }

    .header__lang._open .header__lang-list>li:not(:last-child) {
        border-bottom: 1px solid #1F2841;
    }

    .header__lang._open .header__lang-item {
        padding: 12px var(--offsets);
    }

    .header__lang-close {
        display: none;
        background: transparent;
        border: none;
    }

    .header__lang-close._show {
        display: flex;
        z-index: 999;
    }

    .header__lang._open {
        padding: 12px var(--offsets);
    }

    .header__lang._open .header__lang-list .lang__code {
        left: var(--offsets);
    }
}

@media (max-width: 767px) {
    .header__toggle-button {
        margin-left: 10px;
    }

    .header__lang {
        margin-left: auto;
    }

    .header__lang._open+.header__toggle-button {
        margin-left: auto;
    }
}


.slots__description {
    color: #000;
}

*+.advantage__list {
    margin-top: 1rem;
}

.advantage__list {
    display: grid;
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.advantage__item {
    border-radius: 15px;
    padding: 10px;
    background-color: #090f1e;
}

.advantage__item>.get-image {
    margin: 0 auto 8px;
}

.advantage__item>.get-image img {
    width: 100%;
}

.advantage__title {
    margin: 0 0 8px;
    text-align: center;
}

.advantage__text {
    margin: 0;
}

.advantage__list.col-6 {
    grid-template-columns: repeat(6, 1fr);
}

.advantage__list.col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.advantage__list.col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.advantage__list.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.advantage__list.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.advantage__list.col-1 {
    grid-template-columns: 1fr;
}



@media (max-width: 1400px) {
    .advantage__list.col-6 {
        grid-template-columns: repeat(5, 1fr);
    }

    .advantage__list.col-5 {
        grid-template-columns: repeat(4, 1fr);
    }

    .advantage__list.col-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .advantage__list.col-6 {
        grid-template-columns: repeat(4, 1fr);
    }

    .advantage__list.col-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantage__list.col-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .advantage__list.col-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantage__list.col-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage__list.col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage__list.col-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .advantage__list.col-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage__list.col-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .advantage__list.col-6 {
        grid-template-columns: 1fr;
    }

    .advantage__list.col-5 {
        grid-template-columns: 1fr;
    }

    .advantage__list.col-4 {
        grid-template-columns: 1fr;
    }
}

.payments-table .payments-table__cell-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    min-width: 150px;
}

.payments-table .payments-table__cell-wrapper .get-image {
    flex-shrink: 0;
    margin-right: 10px
}

.payments-table .payments-table__cell-wrapper .get-image img {
    width: 100%;
    height: auto;
    max-width: 80px;
    object-fit: contain
}

.payments-table__cell--1 {
    border-right: none;
    border-bottom: none;
    padding-bottom: 6px
}

.payments-table__cell--2 {
    border-bottom: none;
    border-left: none;
    padding-bottom: 6px;
    text-align: right
}

.payments-table__cell--3 {
    border-top: none;
    border-right: none;
    padding-top: 6px
}

.payments-table__cell--4 {
    border-top: none;
    border-left: none;
    padding-top: 6px;
    text-align: right
}

.wp-block-table th {
    border-bottom: 1px solid #e8ecf1;
}

/* Slots popup */
.slots-popup {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .7);
    margin: 0 !important;
}

.slots-popup._active {
    display: flex;
}

.slots-popup__title {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    padding: 10px;
}

.slots-popup__buttons {
    display: flex;
    justify-content: center;
}

.slots-popup__buttons .slots__link {
    width: unset;
    margin-bottom: 0;
}

.slots-popup__frame {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    width: 100%;
    height: 100%;
    max-width: 1380px;
    max-height: 720px;
    margin: auto;
    border-radius: 12px;
    background: #090f1e;
    padding: 8px 12px 0 12px;
}

.slots-popup__body {
    position: relative;
    grid-column: 1/4;
    grid-row: 2/3;
    margin: 8px -10px 2px -10px;
    border-radius: 10px;
    background: #D9D9D9;
    overflow: hidden;
}

.slots-popup__body iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: none;
}

.slost-popup__cross {
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .slots-popup__frame {
        max-height: unset;
        height: 80vh;
    }

    .slots-popup__frame {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto 1fr;
    }

    .slost-popup__cross {
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .slots-popup__frame .slots-popup__buttons {
        grid-column: 1/3;
        grid-row: 2/3;
    }

    .slots-popup__body {
        grid-column: 1/3;
        grid-row: 3/4;
    }
}

.promocode {
    display: grid;
    grid-template-columns: 1fr auto;
    flex-direction: column;
    align-items: center;
    gap: 20px 10px;
    border-radius: 15px;
    padding: 10px;
    background-color: #090f1e;
    max-width: 500px;
    margin: 0 auto;
}

.promocode:not(:first-child) {
    margin-top: 1rem;
}

.promocode__text,
.promocode__link {
    grid-column: 1/3;
    justify-self: center;
}

.promocode__key {
    padding: 10px;
    margin-top: 0;
    background-color: #e8ecf1;
    color: #000;
    border-radius: 15px;
    max-width: ;
}

.promocode__copy-button,
.promocode__link {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    background-color: unset;
    border: unset;
    padding: 10px;
    color: var(--color-white);
    border-radius: 15px;
    min-width: 120px;
    cursor: pointer;
}

.promocode__copy-button:hover,
.promocode__link:hover {
    opacity: .8;
}

.promocode__copy-button {
    background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
    height: 100%;
}

.promocode__link {
    background-image: linear-gradient(255deg, #00b7ff, #8d53e9);
    border-radius: 15px;
}

.tabs__list {
    list-style: none;
    margin: 0;
    border-style: solid;
    border-width: 0 2px 2px;
    border-color: var(--bg-table);
    border-radius: 0 0 20px 20px;
    padding: 24px 16px;
    background-color: #fff
}

.tabs__item> :first-child {
    margin-top: 0
}

.tabs__item> :last-child {
    margin-bottom: 0
}

@media (max-width: 767px) {
    .tabs__container {
        margin-right: -16px;
        margin-left: -16px
    }

    .tabs__list {
        border-radius: 0 0 20px 20px
    }
}

@media (max-width: 767px) {
    .tabs__container {
        margin-left: 0;
        margin-right: 0;
    }
}

.tabs .wp-block-table td>*,
.tabs table td>*,
.tabs table td {
    color: var(--text-color);
}

/* Tabs header */
.tabs__header {
    display: flex;
    padding: 1px;
    align-items: center;
    gap: 1px;
    border-radius: 8px;
    background: #090f1e;
    width: 100%;
    list-style: none;
    margin-top: 0;
    overflow-x: auto;
}

.tabs__header-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding: 11px 12px;
    border: none;
    width: 100%;
    white-space: nowrap;
    cursor: pointer;
    /*background-color: #E7E6DF;*/
}

.tabs__header-button img {
    max-height: 25px;
    width: auto;
}

.tabs__header-button._ico {
    padding: 6px 12px;
}

.tabs__header-item {
    flex: 1 1;
}

.tabs__header-button.active {
    border-radius: 8px;
    background: #FFF;
    color: #171716;
    font-size: 15px;
    font-weight: 600;
}

.tabs__content {
    margin-top: 16px;
    border: 1px solid #090f1e;
    background: #090f1e;
    border-radius: 8px;
    padding: 20px;
}

.tabs .text-image__title {
    background-color: unset;
    color: #171716;
    margin: 0;
    padding: 0;
    font-style: normal;
    grid-column: 1/-1;
}

.tabs .text-image__title>svg {
    display: none;
}

.tabs .text-image__title:before,
.tabs .text-image__title:after {
    content: unset;
}

.tabs .text-image__container {
    gap: 16px;
}

.game {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    max-width: 1240px;
    margin: auto
}

.game__header {
    display: flex;
    justify-content: center;
    background-image: linear-gradient(92deg, #1e283f, rgba(20, 27, 46, .6));
    background-color: #090f1e;
    padding: 10px 25px
}

.game iframe,
.game__content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    aspect-ratio: 16/9;
    background-color: #070a0f;
    border: none
}

@media (max-width: 767px) {
    .game iframe {
        aspect-ratio: auto;
        min-height: 90vh
    }
}

.game__btn {
    border: 1px solid;
    border-radius: 5px;
    padding: 12px 27px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-white);
    cursor: pointer;
    outline: 0;
    transition: .3s ease-in-out;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    border-color: var(--color-bg-first-button);
    background-color: var(--color-bg-first-button);
    z-index: 1;
}


.game__btn:hover {
    background-color: transparent;
}

.game__content .get-image,
.game__content .get-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

.game__content .get-image img {
    max-width: unset;
    object-fit: cover;
    filter: brightness(40%)
}

@media (max-width: 767px) {
    .game__btn {
        padding: 10px 20px
    }
}


*+.wp-block-table {
    margin-top: 1rem;
}

.wp-block-table {
    overflow: auto;
}

.wp-block-table table {
    overflow: hidden;
    border: none;
    border-collapse: collapse;
    border-radius: var(--R);
    width: 100%;
}

.wp-block-table table:has(tr td:nth-child(3)) {
    min-width: 600px;
}

.wp-block-table table:has(tr td:nth-child(4)) {
    min-width: 800px;
}

.wp-block-table table:has(tr td:nth-child(5)) {
    min-width: 800px;
}

.wp-block-table table:has(tr td:nth-child(6)) {
    min-width: 1000px;
}

.wp-block-table table:has(tr td:nth-child(7)) {
    min-width: 1200px;
}

.wp-block-table thead {
    border: none;
}