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

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

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

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

:active, :focus {
    outline: 0
}

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

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

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

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

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

button {
    cursor: pointer
}

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

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

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

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

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

.wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--Stroke, #f3edfa);
    border-top: 0;
    pointer-events: none
}

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

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

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

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

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

a {
    color: var(--Secondary, #2C97D9);
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: opacity
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.scrolling table {
    user-select: none
}

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

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

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

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

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

table :is(th,td):not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, .05)
}

table tr :is(td,th) {
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

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

.no-scroll {
    overflow: hidden
}

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

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

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

:root {
    --inner-offsets: 32px;
    --offsets: 26px;
    --width-container: 1280px;
    --desktop-width: calc(var(--width-container) + var(--offsets) * 2);
    --BG: #13151d;
    --Headings: #fff;
    --Text: #fff;
    --Secondary: #2c97d9;
    --Primary: linear-gradient(90deg,#9d30f2 0%,#9d30f2 100%);
    --CONTAINER: #353841;
    --Stroke:  #13151d;
	--Header: #353841;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--Stroke, #f3edfa);
    border-top: 0;
    pointer-events: none
}

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

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

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

.footer__logo {
    position: relative
}

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

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

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

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

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

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

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

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

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

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

.section-hero img {
    width: 100%
}

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

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

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

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

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

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

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

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

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


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

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


.faq {
    padding: 20px
}

.faq .faq__answer {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn--primary {
    background: var(--Primary, #07ca7c)
}

.btn--primary:active {
    background: #03975c
}

.btn--secondary, ._button--second {
    background: transparent;
	    color: #fff;
    border: 1px solid #9d30f2;
}



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

.content-img > * {
    margin: 0
}

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

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

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

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

.content-buttons .btn {
    min-width: 344px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

.page-404__link {
    margin: auto;
}

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

.text-image + .text-image {
	padding-top: 24px
}

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

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

    .text-image__content {
        display: grid;
    }

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

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

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

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

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

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


}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .header__burger {
        display: none
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .header .header-menu .item.parent:active, .header .header-menu .item:not(.parent) > :is(a,span):active {
        background: var(--Stroke, #f3edfa)
    }

    .header .header-menu .item.current.parent, .header .header-menu .item.current:not(.parent) > :is(a,span) {
        background: var(--Stroke, #f3edfa)
    }

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

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

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

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

    .header .header-menu .item.parent:hover, .header .header-menu .item:not(.parent) > :is(a,span):hover, span.header__nav__link.header__nav__link--current, span.submenu__item-link.submenu__link.submenu__link--current, .header__nav__item.item.parent:has(span) {
        background: var(--Stroke, #f3edfa)
    }

    .header .header-menu .item.parent:focus, .header .header-menu .item:not(.parent) > :is(a,span):focus {
        background: var(--Stroke, #f3edfa)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .header .header-menu > .item {
        border: 1px solid var(--Stroke, #f3edfa);
        border-top: 0
    }

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

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

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

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

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

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

    .header {
        --height: 100px;
        flex-wrap: wrap;
		justify-content: space-between
    }

    .header__lang {
        margin-right: auto
    }

    .header__burger {
        order: unset
    }

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

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

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

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

    .section-hero h1 {
        order: -2
    }

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

    .section-hero > * {
        margin: 0
    }

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

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

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

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

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

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

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

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

    .header__btns {
        gap: 4px
    }

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

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

    .footer__logos {
        gap: 8px
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .btn--primary:hover {
        background: #03975c
    }

    .btn--primary:focus {
        background: #03975c
    }

    .btn--secondary:hover, ._button--second:hover {

        background: #2375a8
    }

    .btn--secondary:focus, ._button--second:focus {
        background: #2375a8
    }

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

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

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

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

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

.last-modified-date::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--Stroke, #f3edfa);
    border-top: 0;
    pointer-events: none;
}

.brands-table * {
    margin: 0;
    padding: 0
}

.brands-table__head {
    display: none
}

.brands-table {
    font-family: Montserrat, sans-serif;
    width: 100%;
    margin: 16px 0;
    border: none !important
}

.brands-table__body {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.brands-table__item {
    border-radius: 2px;
    border: 1px solid #f5f5f5;
    overflow: hidden
}

.brands-table__item:nth-of-type(-n+3) {
    border: 1px solid #17425d
}

.brands-table__item:nth-of-type(-n+3) .bt-item__rank {
    background: #282556;
    color: #fff
}

.bt-item__list ul, .list-reset {
    list-style: none
}

.bt-item {
    display: grid;
    grid-template-columns:34px 245px 385px 1fr;
    grid-template-rows:auto;
    grid-gap: 16px;
    align-items: center;
    padding: 16px;
    background: #353841
}

@media (max-width: 900px) {
    .brands-table__body {
        flex-direction: row;
        flex-wrap: wrap
    }

    .bt-item {
        width: calc(50% - 8px);
        grid-template-columns:repeat(2, auto);
        grid-template-rows:repeat(3, auto);
        grid-template-areas:"rank rank" "rating bonus" "link link"
    }

    .bt-item__rank {
        grid-area: rank
    }

    .bt-item__rating {
        grid-area: rating
    }

    .bt-item__bonus {
        grid-area: bonus
    }

    .bt-item__link {
        grid-area: link
    }
}

@media (max-width: 700px) {
    .bt-item {
        width: 100%
    }
}

.bt-item__rank {
    font-weight: 500;
    font-size: 14px;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -16px 0 -16px -16px;
    background: #f5f5f5;
    color: #17425d;
    border: none !important
}

.bt-bonus__title, .bt-item__name, .bt-item__rt-val {
    font-weight: 500;
    color: #fff
}

.bt-item__rating {
    display: flex;
    align-items: center;
    border: none;
    padding: 0 !important;
    gap: 16px
}

.bt-item__bonus, .bt-item__link {
    border: none !important;
    padding: 0 !important
}

.bt-item__logo {
    min-width: 80px
}

.bt-item__logo img {
    width: 100px;
    object-fit: cover
}

.bt-item__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.bt-item__name {
    font-size: 18px;
    line-height: 26px;
    flex: 1 0 100%;
    text-align: center
}

.bt-item__rt-val {
    font-size: 14px;
    line-height: 16px
}

.bt-item__rt-stars {
    letter-spacing: 3px;
    font-size: 16px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background: linear-gradient(90deg, #ffbf00 var(--rating), #abb7c0 var(--rating));
    -webkit-background-clip: text
}

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

.bt-bonus {
    width: 100%;
    background: #353841;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 2px
}

.bt-bonus:first-of-type {
    border-right: 1px solid #c8c8c8
}

@media (max-width: 900px) {
    .bt-item__rank {
        margin: -16px -16px 0;
        padding: 4px !important;
        max-width: none !important
    }

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

    .bt-item__block {
        flex-direction: column
    }

    .bt-bonus:first-of-type {
        border-right: none;
        border-bottom: 1px solid #c8c8c8
    }
}

.bt-bonus__title {
    font-size: 14px;
    line-height: 140%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px
}

.bt-bonus__value {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #fff;
    text-align: center
}

.bt-link, .news-card__desc_title {
    font-size: 16px;
    line-height: 24px
}

.bt-bonus__value_dashed {
    border: 1px dashed #43483e;
    padding: 5px 16px;
    border-radius: 2px
}

.bt-bonus__icon {
    display: inline-block;
    width: 14px;
    aspect-ratio: 1/1;
    background: center center/100% no-repeat
}

.bt-bonus__icon_bonus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='15' height='15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.8 7.4v6.7H2.2V7.4m5.3 6.7v-10m0 0h-3a1.7 1.7 0 0 1 0-3.3c2.3 0 3 3.3 3 3.3Zm0 0h3a1.7 1.7 0 1 0 0-3.3C8.2.8 7.5 4 7.5 4Zm-6.7 0h13.4v3.3H.8V4.1Z' stroke='%2317425D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")
}

.bt-bonus__icon_promocode {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m10 1.9 1.1 1c.3.3.6.5 1 .5h1.5a1.4 1.4 0 0 1 1.5 1.4v1.5c0 .4.1.8.4 1l1 1.1a1.4 1.4 0 0 1 0 2l-1 1.1c-.3.3-.4.7-.4 1v1.6a1.4 1.4 0 0 1-1.5 1.4h-1.5c-.4 0-.7.2-1 .4L10 17a1.4 1.4 0 0 1-2 0l-1.1-1c-.3-.3-.6-.5-1-.5H4.3A1.4 1.4 0 0 1 3 14.1v-1.5c0-.4-.1-.8-.4-1l-1-1.2a1.4 1.4 0 0 1 0-2l1-1c.3-.3.4-.7.4-1V4.7a1.4 1.4 0 0 1 1.4-1.4H6c.4 0 .7-.2 1-.5l1-1a1.4 1.4 0 0 1 2.1 0Z' stroke='%2317425D' stroke-width='1.5' stroke-miterlimit='10'/%3e%3cpath d='m12.2 7.5-4.1 4-2.3-2.3' stroke='%2317425D' stroke-width='1.5' stroke-miterlimit='10'/%3e%3c/svg%3e")
}

.bt-link {
    font-weight: 500;
    width: 100%;
    text-align: center;
    color: #fff;
    border: 1px solid #9d30f2;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none
}

.bt-link_bg {
    background: linear-gradient(90deg,#9d30f2 0%,#9d30f2 100%);
    color: #fff;
    padding: 10px;
    border-radius: 8px
}
