*,
:after,
:before {
    box-sizing: border-box
}

li,
ol,
ol[class],
ul,
ul[class] {
    margin: 0;
    padding: 0
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
    margin: 0
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed
}

li,
ol[class],
ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    display: block;
    max-width: 100%
}

button,
input,
select,
textarea {
    border: none;
    font: inherit
}

[role=button],
button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

body.-toggle,
html.-toggle {
    overflow: hidden
}

body {
    background: rgb(19, 18, 20);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.4
}

@media (max-width:768px) {
    body {
        background: rgb(19, 18, 20);
        font-size: 14px;
        overflow-x: hidden
    }
}

.container,
.container-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%
}

.container-page {
    max-width: 1000px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3
}

.header-wrapper {
    /*     background: #0a0f1d url(../../images/header-wrapper-bg.webp) no-repeat top; */
    background-size: cover;
    margin-bottom: 64px;
    /* padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px; */
    width: 100%
}

@media (max-width:768px) {
    .header-wrapper {
        margin-bottom: 24px
    }
}

.site-header {
    /* background: linear-gradient(90.01deg, #20283e .69%, #111726 99.99%); */
    background: #000;
    /* border-radius: 10px; */
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    padding: 16px 0
}

.site-header .site-header--row {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 1680px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%
}

.site-header .site-header__logo img {
    height: auto;
    width: 124px
}

.site-header .site-header--menu-area {
    grid-gap: 16px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr max-content max-content max-content
}

@media (max-width:768px) {
    .site-header .site-header--menu-area {
        grid-gap: 16px;
        background: linear-gradient(90.01deg, #20283e .69%, #111726 99.99%);
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100% - 72px);
        left: 0;
        overflow-y: auto;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 72px;
        width: 100%;
        z-index: 99999
    }

    .site-header .site-header--menu-area.-toggle {
        display: grid
    }
}

.site-header .site-header--menu-btn {
    background: #1f2841 url(../../images/mob-menu-icon.svg) no-repeat 50%;
    background-size: 15px;
    border-radius: 4px;
    display: none;
    height: 42px;
    justify-self: flex-end;
    width: 42px
}

.site-header .site-header--menu-btn.-toggle {
    background: #1f2841 url(../../images/mob-menu-close-icon.svg) no-repeat 50%;
    background-size: 15px
}

@media (max-width:768px) {
    .site-header .site-header--menu-btn {
        display: block
    }
}

.site-header .site-header__menu {
    padding-right: 24px;
    text-align: right
}

@media (max-width:768px) {
    .site-header .site-header__menu {
        grid-column: 1/4;
        grid-row: 1;
        margin-bottom: 64px;
        padding: 0;
        text-align: left
    }
}

.site-header .site-header__menu ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 54px
}

@media (max-width:768px) {
    .site-header .site-header__menu ul {
        display: block
    }
}

.site-header .site-header__menu ul li {
    font-size: 14px;
    font-weight: 600;
    position: relative
}

.site-header .site-header__menu ul li.current-menu-item a {
    color: #c038fa
}

@media (max-width:768px) {
    .site-header .site-header__menu ul li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px
    }
}

.site-header .site-header__menu ul li a {
    color: #fff;
    text-transform: uppercase;
}

@media (min-width:768px) {
    .site-header .site-header__menu ul li.menu-item-has-children {
        padding-right: 24px;
        position: relative
    }

    .site-header .site-header__menu ul li.menu-item-has-children:after {
        background: url(../../images/arrow-down-w.svg) no-repeat 50%;
        background-size: 18px;
        content: "";
        display: inline-block;
        height: 20px;
        position: absolute;
        right: 0;
        top: -1px;
        width: 20px
    }

    .site-header .site-header__menu ul li.menu-item-has-children:hover:after {
        transform: rotate(180deg)
    }
}

.site-header .site-header__menu ul li ul {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    display: none;
    left: -20px;
    padding: 24px 20px;
    position: absolute;
    top: 100%;
    width: 240px;
    z-index: 999
}

@media (max-width:768px) {
    .site-header .site-header__menu ul li ul {
        background: transparent;
        box-shadow: none;
        display: block;
        left: unset;
        position: relative;
        top: unset;
        width: 100%
    }
}

.site-header .site-header__menu ul li ul li {
    background: transparent !important;
    text-align: left
}

.site-header .site-header__menu ul li ul li:not(:last-child) {
    border-bottom: 1px solid #d9e1e8;
    margin-bottom: 12px;
    padding-bottom: 12px
}

.site-header .site-header__menu ul li ul li a {
    background: transparent !important;
    color: #668fff;
    font-size: 13px;
    padding: 0
}

.site-header .site-header__menu ul li ul li a:hover {
    opacity: .76
}

@media (min-width:768px) {
    .site-header .site-header__menu ul li:hover>a {
        opacity: .76
    }

    .site-header .site-header__menu ul li:hover>ul {
        display: block
    }
}

.site-header .site-header__langs {
    position: relative
}

@media (max-width:768px) {
    .site-header .site-header__langs {
        grid-row: 2
    }
}

.site-header .site-header__langs .site-header__langs--current {
    background: transparent;
    border-radius: 6px;
    display: flex;
    width: max-content;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    min-height: 42px;
    padding: 5px 10px;
    place-items: center;
    text-transform: uppercase;
    border: 1px solid #b80fff;
    transition: border-color .3s ease;
}

.site-header .site-header__langs .site-header__langs--current img {
    border-radius: 4px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 24px
}

.site-header .site-header__langs .site-header__langs--current span {
    color: #fff
}

.site-header .site-header__langs ul {
    background: #000;
    border-radius: 4px;
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    display: none;
    padding: 20px;
    position: absolute;
    right: -20px;
    top: 100%;
    width: 180px;
    z-index: 9999;
    border: 1px solid #b80fff;
    transition: border-color .3s ease;
}

@media (max-width:768px) {
    .site-header .site-header__langs ul {
        background: #fff;
        bottom: 100%;
        grid-template-columns: repeat(2, 1fr);
        left: 0;
        padding: 20px 14px;
        right: unset;
        top: unset;
        width: 300px
    }
}

.site-header .site-header__langs ul li:not(:last-child) a {
    border-bottom: 1px solid #b80fff;
    margin-bottom: 6px;
    padding-bottom: 6px
}

@media (max-width:768px) {
    .site-header .site-header__langs ul li:not(:last-child) a {
        border: none;
        margin-bottom: 8px;
        padding-bottom: 8px
    }
}

.site-header .site-header__langs ul li a {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    place-items: center
}

.site-header .site-header__langs ul li a:hover {
    opacity: .64
}

.site-header .site-header__langs ul li a img {
    border-radius: 2px;
    height: 14px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 20px
}

.site-header .site-header__langs ul li a span {
    color: #fff;
    font-size: 14px
}

@media (max-width:768px) {
    .site-header .site-header__langs ul li a span {
        color: #2a334a
    }
}

.site-header .site-header__langs ul li.current-lang a {
    opacity: .64
}

.site-header .site-header__langs:hover>ul {
    display: block
}

@media (max-width:768px) {
    .site-header .site-header__langs:hover>ul {
        display: grid
    }
}

.site-header .site-header__btn-login {
    /* background: #1f2841; */
    /* border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    height: 42px;
    line-height: 42px */
    align-items: center;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .01em;
    line-height: 1.2;
    line-height: 1;
    margin: 0;
    min-height: 40px;
    min-width: 100px;
    outline: none;
    padding: 5px 15px;
    position: relative;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
    transition: background-color .3s ease, color .3s ease;
    vertical-align: middle;
    background: transparent;
    border: 1px solid #b80fff;
    ;
    transition: border-color .3s ease;
}

@media (max-width:768px) {
    .site-header .site-header__btn-login {
        grid-column: 1/5;
        grid-row: 4;
        text-align: center
    }
}

.site-header .site-header__btn-login.-reg {
    /* background: linear-gradient(87.12deg, #2cb866, #0a9f4f 99.54%) */
    background: #b80fff;
}

.site-header .site-header__btn-login.-reg a {
    grid-gap: 8px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr
}

.site-header .site-header__btn-login.-reg a i {
    background: url(../../images/reg-icon.svg) no-repeat 50%;
    background-size: contain;
    border-radius: 50%;
    display: inline-block;
    height: 18px;
    width: 18px
}

@media (max-width:768px) {
    .site-header .site-header__btn-login.-reg {
        grid-row: 3
    }
}

.site-header .site-header__btn-login a {
    color: #fff;
    display: block;
    padding: 0 32px
}

.site-header .site-header__btn-login:hover {
    opacity: .86
}

.header-banner {
    padding: 50px 0
}

@media (max-width:768px) {
    .header-banner {
        padding: 20px 0
    }
}

.header-banner .header-banner--content {
    grid-gap: 42px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px
}

@media (max-width:768px) {
    .header-banner .header-banner--content {
        display: block
    }

    .header-banner .header-banner--content img {
        display: none
    }
}

.header-banner .header-banner--content h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

@media (max-width:768px) {
    .header-banner .header-banner--content h1 {
        font-size: 25px;
    }
}

.header-banner .header-banner--content h1.single-style {
    font-size: 42px;
    font-style: normal
}

.header-banner .header-banner--content h1 span {
    display: block;
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase
}

@media (max-width:768px) {
    .header-banner .header-banner--content h1 span {
        font-size: 32px
    }
}

.header-banner .header-banner--content .header-banner--desc {
    color: #fff;
    margin-bottom: 24px;
    margin-top: 20px
}

@media (max-width:768px) {
    .header-banner .header-banner--content .header-banner--desc {
        font-size: 14px
    }
}

.header-banner .header-banner--content .header-banner--link a {
    /* background: linear-gradient(87.12deg, #2cb866, #0a9f4f 99.54%); */
    background: #b80fff;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
    padding: 0 54px;
    transition: background-color .3s ease, color .3s ease;
}

@media (max-width:768px) {
    .header-banner .header-banner--content .header-banner--link a {
        align-items: center;
        background: conic-gradient(from 0deg at 50% 50%, #793cec 0deg, #6123d5 1turn);
        border-radius: 4px;
        color: #fff;
        display: flex;
        font-size: 17px;
        font-weight: 500;
        gap: 10px;
        height: 62px;
        justify-content: center;
        padding: 15px
    }
}

.header-banner .header-banner--content .header-banner--link a:hover {
    background: #d36aff;
}

.header-banner .header-banner--links {
    grid-gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

@media (max-width:768px) {
    .header-banner .header-banner--links {
        display: block
    }
}

.header-banner .header-banner--links .header-banner--links__item {
    align-items: center;
    /* background: #14a0ff;
    border-radius: 4px; */
    background: #b80fff;
    border-radius: 6px;
    /* box-shadow: 0 0 4px 0 #14a0ff; */
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 15px 32px
}

@media (max-width:768px) {
    .header-banner .header-banner--links .header-banner--links__item:not(:last-child) {
        margin-bottom: 20px
    }
}

.header-banner .header-banner--links .header-banner--links__item .icon {
    display: inline-block;
    height: 32px;
    width: 32px
}

.header-banner .header-banner--links .header-banner--links__item .icon.icon-1 {
    background: url(../../images/login-icon.svg) no-repeat 50%;
    background-size: contain
}

.header-banner .header-banner--links .header-banner--links__item .icon.icon-2 {
    background: url(../../images/follow-icon.svg) no-repeat 50%;
    background-size: contain
}

.header-banner .header-banner--links .header-banner--links__item .icon.icon-3 {
    background: url(../../images/promo-icon.svg) no-repeat 50%;
    background-size: contain
}

.header-banner .header-banner--links .header-banner--links__item span {
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.header-banner .header-banner--links .header-banner--links__item:hover,
.header-banner .header-banner--links .header-banner--links__item:hover .arrow-icon {
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2)
}

.post-entry p:not(:last-child) {
    margin-bottom: 32px
}

.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.post-entry h2 {
    font-size: 36px
}

@media (max-width:768px) {
    .post-entry h2 {
        font-size: 26px
    }
}

.post-entry h3 {
    font-size: 28px;
    margin-bottom: 24px;
    margin-top: 16px;
    position: relative
}

@media (max-width:768px) {
    .post-entry h3 {
        font-size: 24px
    }
}

.post-entry h4 {
    font-size: 20px
}

@media (max-width:768px) {
    .post-entry h4 {
        font-size: 18px
    }
}

.post-entry a {
    color: #c038fa
}

.post-entry a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px
}

.post-entry .colored {
    background: #ecf9f1;
    border-radius: 4px;
    margin-bottom: 24px;
    padding: 32px 20px
}

.post-entry .periexomena-title {
    color: #0a0f1d;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    text-transform: uppercase;
    word-spacing: .5px
}

.post-entry .periexomena ol {
    -moz-columns: 2 !important;
    -moz-column-width: 50% !important;
    columns: 50% 2 !important;
    margin-bottom: 0 !important;
    margin-left: 12px !important
}

@media (max-width:768px) {
    .post-entry .periexomena ol {
        -moz-columns: 1 !important;
        -moz-column-width: 100% !important;
        columns: 100% 1 !important
    }
}

.post-entry .periexomena ol li {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 12px;
    position: relative
}

.post-entry .periexomena ol li:before {
    background: #1f2841;
    border-radius: 50%;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 5px
}

.post-entry .periexomena ol li a {
    color: #1f2841
}

.post-entry .periexomena ol li a:hover {
    color: #0a0f1d
}

.post-entry ul {
    margin-bottom: 24px
}

@media (min-width:768px) {
    .post-entry ul {
        grid-column-gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

.post-entry ul li {
    font-weight: 500;
    padding-left: 24px;
    position: relative
}

.post-entry ul li:not(:last-child) {
    margin-bottom: 12px
}

.post-entry ul li:before {
    background: #b80fff;
    border-radius: 50%;
    content: "";
    height: 5px;
    left: 8px;
    position: absolute;
    top: 7px;
    width: 5px
}

.post-entry .wp-block-button__link {
    background: #b80fff;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 #b80fff;
    color: #fff;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    margin-bottom: 24px;
    padding: 0 32px;
    position: relative
}

@media (max-width:768px) {
    .post-entry .wp-block-button__link {
        text-align: center;
        width: 260px
    }
}

.post-entry .wp-block-button__link:hover {
    color: #fff !important;
    opacity: .86
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
    margin: 0 auto
}

.post-entry ol:not(.g-top-ol) {
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 42px
}

.post-entry ol:not(.g-top-ol) li {
    margin: 0 0 32px;
    padding: 0;
    position: relative
}

.post-entry ol:not(.g-top-ol) li:before {
    background: transparent;
    border: 1px solid #b80fff;
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    height: 32px;
    left: -40px;
    line-height: 32px;
    position: absolute;
    text-align: center;
    top: -5px;
    width: 32px
}

.post-entry ol:not(.g-top-ol) li:not(:last-child):after {
    /* background: url(../../images/dashed-line-blue.svg) repeat-y top; */
    content: "";
    display: inline-block;
    height: 100%;
    left: -24px;
    position: absolute;
    top: 32px;
    width: 1px
}

.post-entry .wp-element-caption {
    font-size: 15px;
    font-weight: 500;
    margin-top: 16px;
    text-align: center
}

.post-entry img {
    height: auto !important
}

.has-fixed-layout {
    table-layout: fixed;
    width: 100%;
}

.addtoany_list {
    display: block !important;
    margin-top: 24px !important
}

.faq-block {
    border-radius: 10px;
    margin-bottom: 32px;
    margin-top: 32px
}

.faq-block .faq-block--title {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative
}

.faq-block .faq-block--subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: -4px
}

.faq-block .faq-block--items .faq-block--items__item {
    background: rgba(193, 27, 187, 0.3);
    border-radius: 6px;
    color: #fff;
    overflow: hidden;
    padding: 20px
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    font-size: 24px;
    font-weight: 700;
    position: relative
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    color: #fff;
    margin-top: 14px
}

.site-footer {
    background: #000;
    padding: 42px 0
}

.site-footer .site-footer--row {
    grid-gap: 24px;
    display: grid;
    grid-template-columns: 2fr 9fr 2fr;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width:1324px) {
    .site-footer .site-footer--row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center
    }
}

@media (max-width:768px) {
    .site-footer .site-footer--row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center
    }
}

/* Левая часть футера */
.site-footer .site-footer--left {
    display: flex;
    flex-direction: column;
}

.site-footer .site-footer--left .site-footer__logo {
    margin-bottom: 43px
}

.site-footer .site-footer--left .site-footer__logo img {
    max-width: 180px
}

.site-footer .site-footer--dev {
    color: #fff;
    font-size: 0.675em;
}

@media (max-width:768px) {
    .site-footer .site-footer--left .site-footer__logo {
        display: flex;
        justify-content: center;
    }

    .site-footer .site-footer--dev {
        text-align: center;
    }

    .site-footer .site-footer--dev a {
        display: flex;
        justify-content: center;
    }
}

.site-footer .site-footer--dev img {
    max-width: 100px;
}

.site-footer .site-footer--dev p {
    margin-bottom: 10px
}

/* Центральная часть футера */
.site-footer .site-footer--center {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
}

@media (max-width:768px) {
    .site-footer .site-footer--center {
        justify-content: center;
        gap: 15px;
    }
}

.site-footer .site-footer--center h3 {
    display: inline-block;
    position: relative;
    padding-top: .8333333333em;
    padding-bottom: .8333333333em;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    text-transform: uppercase;
    text-overflow: ellipsis;
    font-size: 1.125em;
    font-weight: 700;
    color: #fff;
}

.site-footer .site-footer--center h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.8571428571em;
    height: 3px;
    background-color: #b80fff;
}

.site-footer .site-footer--menu-col {
    padding: 0 10px;
}

.site-footer .site-footer--menu-col li {
    margin-bottom: 10px
}

.site-footer .site-footer--menu-col a {
    color: #ffffffc4;
    font-size: 0.7em;
    font-weight: 400;
    transition: all .3s;
}

.site-footer .site-footer--menu-col a:hover {
    color: #fff;
}

/* Правая часть футера */
.site-footer .site-footer--right {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.site-footer .site-footer--right .site-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    place-content: center
}

.site-footer .site-footer--right .site-footer__logos img {
    height: 30px;
    max-width: auto;
    width: auto
}

.site-footer .site-footer--socials {
    display: flex;
    justify-content: center;
}

.site-footer .site-footer--socials .page--author-socials {
    display: flex;
    justify-content: center;
}

.site-footer .site-footer--socials .page--author-socials a {
    align-items: center;
    background: #b80fff;
    border-radius: 4px;
    display: flex;
    height: 32px;
    justify-content: center;
    margin-left: 11px;
    width: 32px;
    transition: background-color .3s ease;
}

.site-footer .site-footer--socials .page--author-socials a:hover {
    background: #d36aff;
}

/* Copyright */
.site-footer .site-footer--copyr {
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    color: hsla(0, 0%, 100%, .5);
    font-size: 0.7em;
    margin-top: 40px;
    padding-top: 40px;
    text-align: center
}

/* Общее меню футера (если используется) */
.site-footer__menu {
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    padding: 24px 0
}

.site-footer__menu ul {
    display: flex;
    gap: 20px;
    place-content: center;
    place-items: center;
    text-align: center
}

@media (max-width:768px) {
    .site-footer__menu ul {
        flex-direction: column;
        gap: 14px;
        place-content: center
    }
}

.site-footer__menu ul li {
    display: inline-block;
    margin: 0 14px
}

.site-footer__menu ul li a {
    color: #fff;
    font-size: 0.7em;
    font-weight: 600
}

.site-footer__menu ul li a:hover {
    opacity: .76
}

.main-cta-block {
    grid-gap: 32px;
    align-items: center;
    background: #1f2841;
    border-radius: 10px;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    margin-bottom: 24px;
    padding: 32px
}

@media (max-width:768px) {
    .main-cta-block {
        grid-template-columns: 1fr;
        place-items: center
    }
}

.main-cta-block .img-w {
    background: #1f2841;
    border-radius: 50%;
    display: flex;
    height: 146px;
    padding: 8px;
    place-content: center;
    place-items: center;
    width: 146px
}

@media (max-width:768px) {
    .main-cta-block .img-w {
        height: 96px;
        width: 96px
    }
}

.main-cta-block .img-w img {
    height: auto;
    width: 100%
}

.main-cta-block .g-cta-block-data {
    padding-right: 64px
}

@media (max-width:768px) {
    .main-cta-block .g-cta-block-data {
        padding: 0
    }
}

.main-cta-block .g-cta-block-data .title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .main-cta-block .g-cta-block-data .title {
        font-size: 20px;
        margin-bottom: 16px
    }
}

.main-cta-block .g-cta-block-data .desc {
    color: #fff;
    font-size: 13px;
    opacity: .88
}

.main-cta-block .g-cta-block-code .g-cta-block-code--title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn {
    margin-bottom: 14px
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a {
    background: #fff;
    border: 1px solid rgba(255, 190, 62, .251);
    border-radius: 4px;
    cursor: pointer;
    display: block;
    height: 42px;
    line-height: 42px;
    overflow: hidden;
    position: relative;
    width: 180px
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .click-text {
    background: rgba(255, 190, 62, .251);
    border-radius: 4px;
    color: #2a334a;
    font-size: 14px;
    font-weight: 700;
    height: 40px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all .25s ease;
    width: calc(100% - 32px);
    z-index: 3
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .click-text:after {
    background: #fff url(../../images/arrow-yellow-left.svg) no-repeat 50%;
    background-size: 8px;
    border: 2px solid rgba(255, 190, 62, .251);
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    content: "";
    height: 18px;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    z-index: 4
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .hidden-text {
    color: #2a334a;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    height: 42px;
    line-height: 42px;
    padding: 0 12px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .hidden-text:focus {
    border: none;
    outline: none
}

.main-cta-block .g-cta-block-code .g-cta-block-code--btn:hover .click-text {
    left: -100%
}

.main-cta-block .g-cta-block-code .g-cta-block-code--test-str {
    font-size: 14px;
    margin: 14px 0 24px
}

@media (max-width:768px) {
    .main-cta-block .g-cta-block-code .g-cta-block-code--test-str {
        text-align: center
    }
}

.main-cta-block .g-cta-block-code .g-cta-block-code--test-str i {
    background: url(../../images/test-icon.svg) no-repeat 50%;
    background-size: contain;
    display: inline-block;
    height: 16px;
    margin-right: 6px;
    position: relative;
    top: 3px;
    width: 16px
}

.main-cta-block .g-cta-block-code .g-cta-block-code--test-str span {
    color: rgba(255, 190, 62, .251);
    font-weight: 700
}

.main-cta-block .g-cta-block-code .g-cta-block-code--test-str p {
    color: #fff;
    display: block;
    font-size: 12px;
    margin-top: 3px
}

.g-cta-block-code--link {
    display: inline-block;
    margin-bottom: 16px;
    position: relative
}

@media (max-width:768px) {
    .g-cta-block-code--link {
        display: block;
        text-align: center
    }
}

.g-cta-block-code--link .g-cta-block-code--link__btn {
    color: #29b664;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: underline
}

.g-cta-block-code--link .g-cta-block-code--link__content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    color: #242424;
    display: none;
    font-size: 13px;
    left: 50%;
    padding: 20px;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    width: 240px;
    z-index: 999
}

@media (max-width:768px) {
    .g-cta-block-code--link .g-cta-block-code--link__content {
        bottom: 100%;
        left: 50%;
        right: unset;
        top: unset;
        transform: translateX(-50%)
    }
}

.g-cta-block-code--link .g-cta-block-code--link__content a {
    color: #0855cc
}

.g-cta-block-code--link .g-cta-block-code--link__content a:hover {
    color: #2a334a
}

.g-cta-block-code--link:hover .g-cta-block-code--link__content {
    display: block
}

.g-cta-block {
    grid-gap: 20px;
    align-items: center;
    background: #1f2841 url(../../images/cta-bg-o.svg) no-repeat 50%;
    background-size: 150%;
    border: 1px solid #03ca63;
    border-radius: 10px;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    margin-bottom: 24px;
    padding: 30px 20px
}

@media (max-width:768px) {
    .g-cta-block {
        display: block;
        padding: 24px 16px
    }
}

.g-cta-block .g-cta-block__img {
    background: #dbe5ed;
    border-radius: 10px;
    display: flex;
    height: 120px;
    padding: 12px;
    place-content: center;
    place-items: center;
    width: 240px
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__img {
        margin-bottom: 16px;
        width: 100%
    }
}

.g-cta-block .g-cta-block__img img {
    height: auto;
    max-height: 42px;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    width: auto
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__data {
        margin-bottom: 16px;
        text-align: center
    }
}

.g-cta-block .g-cta-block__data .g-cta-block__area {
    display: flex;
    gap: 20px;
    margin-bottom: 12px
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__data .g-cta-block__area {
        flex-wrap: wrap
    }
}

.g-cta-block .g-cta-block__data .g-cta-block__area .title {
    color: #fff;
    font-size: 30px;
    font-weight: 600
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__data .g-cta-block__area .title {
        font-size: 20px
    }
}

.g-cta-block .g-cta-block__data .g-cta-block__area .tested {
    align-items: center;
    background: rgba(0, 118, 204, .1);
    border: 1px solid #0076cc;
    border-radius: 32px;
    display: flex;
    gap: 5px;
    line-height: 1.2;
    padding: 6px 14px 6px 8px
}

.g-cta-block .g-cta-block__data .g-cta-block__area .tested i {
    background: url(../../images/tested-icon.svg) no-repeat 50%;
    background-size: contain;
    display: block;
    height: 20px;
    width: 20px
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__data .g-cta-block__area .tested i {
        height: 12px;
        width: 12px
    }
}

.g-cta-block .g-cta-block__data .g-cta-block__area .tested span {
    color: #0076cc;
    font-size: 18px;
    font-weight: 500
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__data .g-cta-block__area .tested span {
        font-size: 14px
    }
}

.g-cta-block .g-cta-block__data .desc {
    color: #fff;
    font-size: 22px;
    font-weight: 500
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__data .desc {
        font-size: 16px
    }
}

.g-cta-block .g-cta-block__code {
    text-align: center;
    width: 300px
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__code {
        width: 100%
    }
}

.g-cta-block .g-cta-block__link {
    margin-bottom: 20px
}

.g-cta-block .g-cta-block__link a {
    background: #0076cc;
    border-radius: 10px;
    box-shadow: 0 0 4px 0 #14a0ff;
    color: #fff;
    display: block;
    font-weight: 500;
    height: 46px;
    line-height: 46px;
    text-align: center
}

@media (max-width:768px) {
    .g-cta-block .g-cta-block__link a {
        text-align: center;
        width: 100%
    }
}

.g-cta-block .g-cta-block__link a:hover {
    opacity: .76;
    text-transform: none
}

.g-cta-block .g-cta-block__updated {
    color: #fff;
    font-size: 18px;
    font-weight: 500
}

.g-popup-block {
    background: #000;
    bottom: -500px;
    box-sizing: border-box;
    left: 0;
    opacity: 0;
    padding: 26px 0;
    position: fixed;
    transition: all .65s ease-in;
    width: 100%;
    z-index: 999
}

.g-popup-block.-toggle {
    bottom: 0;
    opacity: 1
}

.g-popup-block .g-popup-block__content {
    grid-gap: 70px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content max-content 1fr max-content;
    position: relative
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content {
        grid-column-gap: 16px;
        grid-row-gap: 10px;
        align-items: flex-start;
        grid-template-columns: 100px 1fr
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__logo {
    /* background: #232323; */
    border-radius: 4px;
    padding: 4px 8px
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__logo {
        padding: 20px 8px
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__logo img {
    height: 72px;
    max-width: 180px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__logo img {
        height: 100%;
        max-width: 100%
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__rating {
    text-align: center
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__rating {
        display: flex;
        gap: 6px;
        grid-column: 2/3;
        grid-row: 1;
        place-items: center;
        text-align: left
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_title {
        font-size: 10px;
        margin-bottom: 0
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars {
    background: url(../../images/star-icon.svg) no-repeat 0;
    background-size: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding-left: 20px
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars {
        font-size: 13px
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars span {
    font-size: 22px
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars span {
        font-size: 15px
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__bonus {
    text-align: center
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__bonus {
        grid-column: 2/3;
        grid-row: 1;
        margin-top: 26px;
        text-align: left
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_title {
        font-size: 17px;
        margin-bottom: 8px
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
    color: #fff;
    font-size: 20px;
    font-weight: 500
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
        font-size: 16px
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text span,
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text strong {
    color: rgba(255, 190, 62, .251);
    font-weight: 700
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-cta-link {
        grid-column: 1/3;
        grid-row: 2;
        text-align: center
    }
}

.g-popup-block .g-popup-block__content .g-popup-cta-link a {
    background: #b80fff;
    border-radius: 6px;
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 500;
    font-weight: 700;
    height: 52px;
    line-height: 52px;
    padding: 0 58px;
    text-transform: uppercase
}

.g-popup-block .g-popup-block__content .g-popup-cta-link a:hover {
    opacity: .86
}

.g-popup-block .g-popup-block__content .g-popup-block__close-btn {
    background: url(../../images/g-close-icon.svg) no-repeat 50%;
    background-size: contain;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 35px;
    position: absolute;
    right: -80px;
    top: -44px;
    width: 35px
}

@media (max-width:768px) {
    .g-popup-block .g-popup-block__content .g-popup-block__close-btn {
        height: 24px;
        right: 14px;
        top: -38px;
        width: 24px
    }
}

.g-popup-block .g-popup-block__content .g-popup-block__close-btn:hover {
    opacity: .86
}

@media (max-width:768px) {
    .g-table-wrapper {
        overflow-x: auto;
        padding-bottom: 6px;
        width: calc(100% + 20px)
    }

    .g-table-wrapper table {
        width: 780px
    }
}

.g-toc-block {
    background: #5a3373;
    /* border: 1px solid #363a46; */
    border-radius: 10px;
    margin-bottom: 32px;
    padding: 20px 32px 24px
}

@media (min-width:768px) {
    .g-toc-block {
        margin-left: -32px;
        margin-right: -32px;
        padding: 12px 16px
    }
}

.g-toc-block .g-toc-block--title {
    background: url(../../images/toc-icon.svg) no-repeat 100%;
    background-size: 24px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700
}

.g-toc-block ol {
    grid-column-gap: 32px;
    background: #3d0653;
    border: 1px solid #3d0653;
    border-radius: 10px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-top: 20px;
    padding: 30px 20px 12px
}

@media (max-width:768px) {
    .g-toc-block ol {
        background: transparent;
        border: none;
        padding: 0
    }
}

.g-toc-block ol li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative
}

.g-toc-block ol li:before {
    background: url(../../images/arrow-blue.svg) no-repeat 50%;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 16px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 16px
}

.g-toc-block ol li a {
    color: #fff
}

.g-toc-block ol li a:hover {
    color: #fff;
    opacity: .76
}

.g-toc-block.-toggle .g-toc-block--title {
    background: url(../../images/toc-icon-toggle.svg) no-repeat 100%;
    background-size: 24px
}

.g-toc-block.-toggle ol {
    display: grid
}

@media (max-width:768px) {
    .g-toc-block.-toggle ol {
        display: block
    }
}

.is-layout-constrained {
    border-radius: 6px;
    margin-bottom: 32px;
    margin-left: -32px;
    margin-right: -32px;
    padding: 24px 32px
}

@media (max-width:768px) {
    .is-layout-constrained {
        margin-left: -20px;
        margin-right: -20px;
        padding: 24px 16px
    }
}

.has-cyan-bluish-gray-background-color {
    background: #1f2841
}

.wp-block-media-text {
    grid-gap: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

@media (max-width:768px) {
    .wp-block-media-text {
        grid-gap: 24p;
        grid-template-columns: 1fr
    }

    .wp-block-button {
        text-align: center
    }
}

.has-text-align-center,
.wp-block-button.aligncenter {
    text-align: center
}

.wp-block-columns {
    grid-gap: 24px;
    display: grid;
    margin-bottom: 32px
}

.wp-block-columns.wp-container-8 {
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width:768px) {
    .wp-block-columns.wp-container-8 {
        grid-template-columns: 1fr
    }
}

.wp-block-columns.wp-container-11 {
    grid-template-columns: repeat(2, 1fr)
}

@media (max-width:768px) {
    .wp-block-columns.wp-container-11 {
        grid-template-columns: 1fr
    }
}

.wp-block-columns .wp-block-column {
    background: #121418;
    border-radius: 6px;
    padding: 24px 20px
}

.wp-block-columns h3 {
    font-size: 20px
}

.is-content-justification-center {
    display: flex
}

.breadcrumbs {
    color: #9f9f9f;
    font-size: 14px;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px
    }
}

.breadcrumbs a {
    color: #fff
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs .breadcrumb_last {
    color: #9f9f9f
}

.hero-bonus-block {
    background: #1f2841;
    border-radius: 10px;
    height: 100%;
    padding: 32px;
}

@media (max-width:768px) {
    .hero-bonus-block {
        background: linear-gradient(90deg, #5b2e7f, #b80fff) !important;
        height: auto;
        margin-top: 10px;
        min-height: 90px;
        padding: 32px 16px;

    }


}

.hero-bonus-block .hero-bonus-block__line {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    margin-bottom: 20px
}

@media (max-width:768px) {
    .hero-bonus-block .hero-bonus-block__line {
        display: block;
        text-align: center
    }
}

.hero-bonus-block .hero-bonus-block__text {
    font-size: 16px;
    line-height: 1.1;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: baseline;
}

@media (max-width:768px) {
    .hero-bonus-block .hero-bonus-block__text {
        text-align: center;
        color: #fff;
    }
}

.hero-bonus-block .hero-bonus-block__text span {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase
}

@media (max-width:768px) {
    .hero-bonus-block .hero-bonus-block__text span {
        display: block;
        font-size: 22px;
        color: #fff;
    }
}

.hero-bonus-block .hero-bonus-block__summ {
    color: #cabe5e;
    font-size: 32px;
    font-weight: 800;
    text-decoration: stroke;
}

@media (max-width:768px) {
    .hero-bonus-block .hero-bonus-block__summ {
        font-size: 36px;
        color: #fff;
    }
}

.hero-bonus-block .hero-bonus-block__link a {
    align-items: center;
    background: #29b664;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(255, 190, 62, .251);
    color: #fff;
    display: inline-flex;
    gap: 8px;
    height: 46px;
    line-height: 44px;
    padding: 0 32px
}

@media (max-width:768px) {
    .hero-bonus-block .hero-bonus-block__link a {
        place-content: center;
        width: 100%
    }
}

.hero-bonus-block .hero-bonus-block__link a i {
    background: url(../../images/bonus-icon.svg) no-repeat 50%;
    background-size: contain;
    display: inline-block;
    height: 24px;
    width: 24px
}

.hero-bonus-block .hero-bonus-block__link a span {
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.hero-bonus-block .hero-bonus-block__link a:hover {
    opacity: .86
}

.wp-block-group {
    background: #3b234b;
    border-radius: 10px;
    margin-bottom: 32px;
    padding: 54px 30px
}

@media (max-width:768px) {
    .wp-block-group {
        border-radius: 0;
        padding: 24px 16px
    }
}

.not-found {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 50vh;
    justify-content: center;
    padding-bottom: 64px
}

.not-found>* {
    margin: 15px 0
}

.not-found h1 {
    font-size: 55px
}

.not-found h2 {
    font-size: 40px
}

.not-found a {
    background: #29b664;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 10px 25px
}

.author {
    background: linear-gradient(90.01deg, #20283e .69%, #111726 99.99%);
    border-radius: 10px;
    display: flex;
    margin: 35px 0;
    padding: 35px
}

.author--image {
    margin-right: 20px;
    max-width: 230px;
    min-width: 230px;
    width: 230px
}

.author--info {
    display: flex;
    justify-content: space-between
}

.author--right {
    width: 100%
}

.author--name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px
}

.author--position {
    font-size: 18px
}

.author--socials {
    display: flex
}

.author--social {
    align-items: center;
    background: rgba(20, 160, 255, .3);
    border-radius: 4px;
    display: flex;
    height: 42px;
    justify-content: center;
    margin-left: 10px;
    padding: 8px;
    width: 42px
}

.author--desc {
    margin-top: 35px
}

@media (max-width:768px) {
    .author {
        align-items: center;
        flex-direction: column;
        padding: 20px
    }

    .author--image {
        margin-bottom: 20px;
        margin-right: 0;
        max-width: 100%
    }

    .author--info {
        flex-direction: column;
        justify-content: flex-start
    }

    .author--social {
        margin-left: 0;
        margin-right: 10px
    }

    .author--position {
        margin-bottom: 15px
    }
}


/* 
    Tables Fix Casiny v2
*/

.wp-block-table {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    background: rgba(59, 35, 75, 0.3);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(59, 35, 75, 0.4);
    border: 1px solid rgba(59, 35, 75, 0.5);
    -webkit-overflow-scrolling: touch;
}

.wp-block-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0;
    background: transparent;
    font-family: inherit;
}

.wp-block-table table thead {
    background: rgb(59, 35, 75);
    border-bottom: 2px solid rgb(75, 45, 95);
}

.wp-block-table table th {
    padding: 16px 24px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid rgba(75, 45, 95, 0.6);
    background: transparent;
    white-space: nowrap;
    position: relative;
}

.wp-block-table table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192, 56, 243, 0.5), transparent);
}

.wp-block-table table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 35, 75, 0.3);
}

.wp-block-table table tbody tr:nth-child(even) {
    background: rgba(59, 35, 75, 0.2);
}

.wp-block-table table tbody tr:nth-child(odd) {
    background: rgba(59, 35, 75, 0.1);
}

.wp-block-table table tbody tr:hover {
    background: rgba(75, 45, 95, 0.4) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 35, 75, 0.3);
}

.wp-block-table table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(59, 35, 75, 0.2);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: all 0.3s ease;
}


.wp-block-table table td:first-child {
    font-weight: 600;
    color: #ffffff;
    min-width: 200px;
    white-space: nowrap;
    background: rgba(59, 35, 75, 0.1);
    border-right: 1px solid rgba(75, 45, 95, 0.3);
}

.wp-block-table table td:not(:first-child) {
    color: rgba(255, 255, 255, 0.85);
    min-width: 250px;
}

.wp-block-table table a {
    color: rgb(192, 56, 243);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
}

.wp-block-table table a:hover {
    color: #ffffff;
    background: rgba(192, 56, 243, 0.2);
    text-decoration: none;
    transform: translateY(-1px);
}

.wp-block-table table,
.wp-block-table th,
.wp-block-table td {
    border: none !important;
}


.wp-block-table::-webkit-scrollbar {
    height: 8px;
}

.wp-block-table::-webkit-scrollbar-track {
    background: rgba(59, 35, 75, 0.3);
    border-radius: 4px;
}

.wp-block-table::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgb(59, 35, 75), rgb(75, 45, 95));
    border-radius: 4px;
    border: 1px solid rgba(192, 56, 243, 0.3);
}

.wp-block-table::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgb(75, 45, 95), rgb(192, 56, 243));
}

@media (max-width: 768px) {
    .wp-block-table table th {
        padding: 12px 16px;
        font-size: 16px;
    }

    .wp-block-table table td {
        padding: 12px 16px;
        font-size: 14px;
    }

    .wp-block-table table td:first-child {
        min-width: 150px;
    }

    .wp-block-table table td:not(:first-child) {
        min-width: 200px;
    }
}


@media (max-width: 480px) {
    .wp-block-table {
        margin: 16px 0;
        border-radius: 8px;
    }

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

    .wp-block-table table th {
        padding: 10px 12px;
        font-size: 14px;
    }

    .wp-block-table table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .wp-block-table table td:first-child {
        min-width: 120px;
    }

    .wp-block-table table td:not(:first-child) {
        min-width: 180px;
    }
}

.wp-block-table {
    scrollbar-width: thin;
    scrollbar-color: rgb(75, 45, 95) rgba(59, 35, 75, 0.3);
}

.wp-block-columns {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ================================
   ФИЛЬТРЫ ИГР
   ================================ */
.game-filters {
    background: #3B234B;
    padding: 20px 60px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 4px 20px rgba(59, 35, 75, 0.3);
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    position: relative;
}

/* Десктопная версия фильтров - всегда видна */
.filter-tabs-desktop {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

/* Мобильная версия фильтров - скрыта по умолчанию */
.filter-tabs-mobile {
    display: none;
    flex: 1;
}



.filter-tabs {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    background: transparent;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.filter-tab:hover {
    background: #7D00B1;
    color: var(--text-primary);
    border: 1px solid #7D00B1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 0, 177, 0.4);
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: 1px solid #9333ea;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.filter-tab .icon {
    font-size: 16px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.providers-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.search-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--text-primary);
}

.providers-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-primary);
    white-space: nowrap;
}

.providers-dropdown:hover {
    background: #7D00B1;
    color: var(--text-primary);
    border: 1px solid #7D00B1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 0, 177, 0.4);
}

.providers-dropdown::after {
    content: '▼';
    font-size: 10px;
    color: inherit;
    transition: transform 0.3s ease;
}

.providers-dropdown:hover::after {
    transform: rotate(180deg);
}

/* ================================
   ДРОПДАУН КАТЕГОРИЙ
   ================================ */
.categories-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.categories-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-primary);
    white-space: nowrap;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.categories-dropdown-trigger:hover {
    background: #7D00B1;
    color: #fff;
    border: 1px solid #7D00B1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 0, 177, 0.4);
}

.categories-dropdown-trigger .icon {
    font-size: 16px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: inherit;
    margin-left: auto;
}

.categories-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.categories-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #2A1A3A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    max-height: 300px;
    overflow-y: auto;
}

.categories-dropdown.open .categories-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background: rgba(125, 0, 177, 0.3);
    color: #fff;
}

.dropdown-item .icon {
    font-size: 16px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
}

/* ================================
   СЕКЦИИ ИГР
   ================================ */
.games-section {
    margin: 32px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    /*padding: 0 60px;*/
    width: 100%;
    box-sizing: border-box;
}

.games-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.section-title .icon {
    color: #ff6b35;
    font-size: 16px;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.show-all {
    color: rgb(192, 56, 243);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.show-all:hover {
    color: #7c3aed;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.slider-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ================================
   КАРТОЧКИ ИГР
   ================================ */
.games-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.games-grid {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.games-grid.no-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(192, 56, 243) transparent;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.games-grid.no-slider::-webkit-scrollbar {
    height: 6px;
}

.games-grid.no-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.games-grid.no-slider::-webkit-scrollbar-thumb {
    background: rgb(192, 56, 243);
    border-radius: 3px;
}

.games-grid.no-slider::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.game-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    min-width: 180px;
    max-width: 180px;
    width: 180px;
    flex-shrink: 0;
    transform: translateY(0);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.game-card:hover {
    transform: translateY(0);
    box-shadow: none;
    background: transparent;
}

.game-card.glow-effect {
    box-shadow: none;
}

.game-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: none;
    box-shadow: none;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover .game-image::before {
    opacity: 1;
}

.game-image::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #B811FB;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(184, 17, 251, 0.4);
}

.game-card:hover .game-image::after {
    opacity: 1;
    visibility: visible;
}

.provider-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    border: none;
    backdrop-filter: blur(5px);
}

.play-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 45px));
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.game-card:hover .play-text {
    opacity: 1;
    visibility: visible;
}

.game-info {
    padding: 16px 4px 0 4px;
    background: transparent;
    border: none;
}

.game-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.3;
    text-align: left;
}

.game-provider {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-align: left;
}

/* ================================
   ПОИСК ИГР
   ================================ */
.game-search {
    width: 240px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: #fff;
    font-size: 13px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.game-search:focus {
    outline: none;
    border-color: rgb(192, 56, 243);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.game-search::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   МОДАЛЬНЫЕ ОКНА
   ================================ */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 32px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #ff6b35;
}

.auth-modal .modal-content {
    max-width: 420px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.auth-form input {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-form input:focus {
    outline: none;
    border-color: rgb(192, 56, 243);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.auth-switch {
    margin-top: 16px;
    color: #888;
    font-size: 14px;
}

.auth-switch a {
    color: rgb(192, 56, 243);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-switch a:hover {
    color: #7c3aed;
}

.game-provider-info {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}

.modal-game-info {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 24px 0;
}

.loading-spinner {
    margin: 24px 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(139, 92, 246, 0.3);
    border-top: 4px solid rgb(192, 56, 243);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.modal-buttons .btn {
    flex: 1;
    max-width: 160px;
}

/* ================================
   ПРОВАЙДЕРЫ
   ================================ */
.providers-section-main {
    margin: 60px 0;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.providers-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.providers-grid {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.provider-card {
    background: rgb(59, 35, 75);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
    max-width: 140px;
    width: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-sizing: border-box;
}

.provider-card:hover {
    background: rgba(59, 35, 75, 0.8);
    transform: translateY(-2px);
}

.provider-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 1.2;
}

/* ================================
   УЛУЧШЕННАЯ АДАПТИВНОСТЬ ДЛЯ СТРЕЛОЧЕК
   ================================ */

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .slider-controls {
        gap: 6px;
    }
    
    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
        background: rgba(139, 92, 246, 0.8);
        border: 1px solid rgba(139, 92, 246, 0.6);
    }
    
    .slider-btn:hover:not(:disabled) {
        background: rgba(139, 92, 246, 1);
        border-color: rgba(139, 92, 246, 1);
        transform: scale(1.1);
    }
}

/* Адаптивность для маленьких экранов */
@media (max-width: 480px) {
    .section-controls {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: space-between;
        align-items: center;
    }
    
    .slider-controls {
        gap: 6px;
        flex-shrink: 0;
    }
    
    .slider-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
        background: rgba(139, 92, 246, 0.9);
        border: 1px solid rgba(139, 92, 246, 1);
        min-width: 26px; /* Фиксированная минимальная ширина */
    }
    
    .show-all {
        font-size: 12px;
        padding: 6px 12px;
        min-width: auto;
        flex-shrink: 0;
    }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 390px) {
    .section-controls {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        position: relative;
    }
    
    .slider-controls {
        gap: 4px;
        flex-shrink: 0;
        order: 2;
    }
    
    .slider-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        min-width: 28px !important;
        border: 2px solid rgba(139, 92, 246, 1) !important;
        background: rgba(139, 92, 246, 1) !important;
        color: #ffffff !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3) !important;
        backdrop-filter: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .slider-btn:hover:not(:disabled) {
        background: rgba(139, 92, 246, 0.8) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5) !important;
    }
    
    .show-all {
        font-size: 12px;
        padding: 6px 10px;
        order: 1;
        flex-grow: 1;
        text-align: left;
    }
}

/* Дополнительная поддержка для экранов менее 360px */
@media (max-width: 360px) {
    .slider-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
        min-width: 26px !important;
    }
    
    .show-all {
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* Принудительное отображение стрелочек на мобильных устройствах */
@media (max-width: 480px) {
    .slider-controls {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slider-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .slider-btn i {
        display: block !important;
        color: #ffffff !important;
        font-size: inherit !important;
    }
} 