:root {
    --main-accent-bg-color: #2ecc71;
    --main-nav-color: #ffffff;
    --header-bg-color: #000000;
    --footer-bg-color: #000000;
    --content-button-bg-color: #2ecc71;
    --content-button-color: #ffffff;
    --offsets: 30px;
    --ff: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

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

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

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

p {
    margin-top: 1rem
}

.page, post, error404 {
    font-family: var(--ff);
    color: #498682;
    text-transform: capitalize;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(#9eebe0 0%, #fffaef00 100%), linear-gradient(90deg, #f1fffe 0%, #f6fff0 35.94%, #eefffe 71.88%, #fff9ee 100%);
    background-position: top, top;
    background-repeat: no-repeat, repeat;
    background-size: 100% 350px, auto;
}

@media (max-width: 767px) {
    .page, post, error404 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
    }
}

.page-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

a {
    color: #03a3a3
}

a:hover {
    text-decoration: none
}

.wp-block-list {
    padding-left: 25px;
    margin-top: 1rem
}

.wp-block-heading {
    position: relative;
    color: #0000;
    background: linear-gradient(249deg, #02d8b1 17%, #006bce 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

* + .wp-block-heading {
    margin-top: 1.5rem;
}

.has-text-align-center {
    text-align: center;
}

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

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

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.3rem;
    margin-bottom: 1rem
}

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

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

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

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


.wrapper >.wp-block-list {
    padding-left: 16px
}

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

.wrapper:last-child {
    margin-bottom: 2rem
}

.wrapper {
    margin-top: 24px;
}

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

.wp-block-table table {
    border: 1px solid #1ed0b4;
    margin-top: 1rem
}

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

.wp-block-table table th {
    padding: .5rem 1rem;
    text-align: center;
    background-color: #1ed0b4;
    color: #fff
}

.wp-block-table table td {
    padding: .5rem 1rem;
    border: 1px solid #1ed0b4;
}

.wp-block-table table td ol,
.wp-block-table table td ul {
    padding-left: 24px;
}

.wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.accent-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    padding: 16px;
    height: 40px;
    border-radius: 8px;
    padding: 0 16px;
    line-height: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #fff;
}

.accent-button.fill-button {
    background-image: radial-gradient(50% 50%, #00cdc1 0%, #24d0b1 100%);
    box-shadow: 0 0 4px #0edfd3;
}

.accent-button.fill-button:hover {
    background-image: radial-gradient(50% 50%, #04b0a6 0%, #13be9f 100%);
    box-shadow: 0 0 4px #0edfd3;
}

.accent-button.outline-button {
    background: linear-gradient(#fe500c, #fd3307, #ff5a0e);
    box-shadow: 0 0 4px #fd4707b3;
}

.accent-button.outline-button:hover {
    background: linear-gradient(#f80,#ff5c00,#ff8c00);
}


.content-button {
    margin-top: 2rem
}

.content-button.alight-left {
    text-align: left
}

.content-button.align-right {
    text-align: right
}

.content-button.align-center {
    text-align: center
}

.page-header {
    background: linear-gradient(#2ddacf -115%, #f2fff8 100%);
    box-shadow: 0 1px 4px #039c9333;
}

.page-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem 0
}

.page-header__logo {
    max-width: 150px;
    width: 100%
}

.page-header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35px;
    height: 25px;
    border-radius: 5px;
    background: #4986821a;
    padding: 8px;
    width: 44px;
    height: 36px;
}

.page-header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #117770;
    border-radius: 20%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.page-header__burger.active span:nth-of-type(1) {
    transform: translateY(9px) rotateZ(45deg)
}

.page-header__burger.active span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0)
}

.page-header__burger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotateZ(-45deg)
}

.page-header__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    margin-right: auto;
}

.main-nav__list {
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-nav__list > li {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-nav__list > li:hover > a::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.main-nav__list > li:hover .sub-menu {
    opacity: 1;
    pointer-events: auto
}

.main-nav__list > li > span.active__link {
    color: #06cebf
}

.main-nav__list > li > a, .main-nav__list > li > span {
    text-decoration: none;
    margin: 0 .5rem;
    padding: .5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    color: var(--main-nav-color)
}

.main-nav__list > li > a::after, .main-nav__list > li > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-accent-bg-color);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.main-nav .menu-item-has-children {
    position: relative
}

.main-nav .menu-item-has-children .sub-menu__arrow {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    transform: translateY(-35%);
    right: -11px;
    padding: 0 0 0 40px;
    text-align: right
}

.main-nav .menu-item-has-children .sub-menu__arrow svg {
    max-width: 15px;
    width: 100%;
    height: auto;
    fill: var(--main-accent-bg-color);
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.main-nav .menu-item-has-children.active .sub-menu__arrow svg {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg)
}

.main-nav .menu-item-has-children.active .sub-menu {
    display: block;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    top: 0;
    margin-top: 0;
    padding: 0 1rem
}

.main-nav .menu-item-has-children.active .sub-menu::before {
    display: none
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: .5rem;
    padding: .5rem 1rem;
    list-style: none;
    background-color:#00ccc0;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
    z-index: 100
}

.main-nav .sub-menu::before {
    content: "";
    position: absolute;
    top: -.5rem;
    left: 0;
    height: .5rem;
    width: 100%;
    background-color: transparent
}

.main-nav .sub-menu a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: .5rem 0;
    white-space: nowrap
}

.icon-blocks {
    padding: 2rem 0
}

.icon-blocks__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.icon-blocks__item {
    background-color: var(--main-accent-bg-color);
    width: calc(100% / 6);
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #fff
}

.icon-blocks__item:hover .icon-blocks__image {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

.icon-blocks__image {
    text-align: center;
    margin-top: 2rem;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.icon-blocks__image img {
    max-width: 100px
}

.icon-blocks__content {
    text-align: center;
    margin: 1rem 0 0;
    color: #fff;
    font-size: .9rem
}

.review {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.review__text {
    margin-top: 0;
    color: rgba(33, 33, 33, .7);
    font-weight: 400;
    margin-bottom: .5rem
}

.review__user {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.review__user-image {
    max-width: 60px;
    border-radius: 50%
}

.review__user-name {
    margin-top: 0;
    margin-left: 1rem;
    color: #6ec1e4;
    font-size: 1.1rem;
    font-weight: 600
}

.show-posts {
    background: #fbfbfb
}

.show-posts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 10px;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
    background-color: #fff
}

.show-posts__item:hover {
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1)
}

.show-posts__item:hover .show-posts__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.show-posts__image {
    height: 150px;
    overflow: hidden
}

.show-posts__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.show-posts__title {
    color: var(--main-accent-bg-color);
    margin-top: 1rem;
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 1.7rem
}

.show-posts__text {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 10px
}

.show-posts__link {
    text-decoration: underline;
    color: var(--main-accent-bg-color);
    margin-top: auto;
    padding: 0 10px
}

.show-posts__hidden-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2
}

.video {
    max-width: 650px
}

.video.align-center {
    margin: 0 auto
}

.video.align-right {
    margin-left: auto
}

.video__container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000
}

.video__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: 0 0;
    border: none
}

.video__button-shape {
    fill: #212121;
    fill-opacity: .8
}

.video__button-icon {
    fill: #fff
}

.video__button:focus {
    outline: 0
}

.video__button:focus .video__button-shape, .video__button:hover .video__button-shape {
    fill: red;
    fill-opacity: 1
}

.video__button:hover {
    cursor: pointer
}

.video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.page-footer {
    background: linear-gradient(90deg, #ddf4f3 0%, #e3f1d7 35.94%, #d5f3f1 71.88%, #fff3d9 100%);
    padding: 24px 0;
}

.page-footer__container {
    display: grid;
    gap: 1.5rem;
}

.page-footer__list {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-footer__list a {
    color: #498682;
    text-transform: capitalize;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    transition: color .2s;
    text-decoration: none;
}

.page-footer__list a:hover {
    text-decoration: underline;
}

.page-footer__list .sub-menu {
    margin: .2rem 0
}

.page-footer__text {
    color: var(--main-nav-color);
    font-weight: 300;
    font-size: .9rem;
    line-height: 1.4rem
}

.page-footer .columns__item > * {
    margin-bottom: 1rem
}

.faq__item {
    position: relative;
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 12px;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 1px 4px #039c9333;
}


.faq__question {
    margin: 0;
}

.faq__answer {
    margin: 0;
    font-weight: 400;
}

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

.toc {
    display: inline-block;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(261.26deg, #01d6a3 19.7%, #00c0a9 96.39%), linear-gradient(#2ddacf -115%, #f2fff8 100%);
    box-shadow: 0 1px 4px #039c9333;
}

.toc.active .toc__list {
    max-height: 1000px;
    margin-top: 1rem
}

.toc.active .toc__title::after {
    -webkit-transform: translateY(-30%) rotateZ(180deg);
    -ms-transform: translateY(-30%) rotate(180deg);
    transform: translateY(-30%) rotateZ(180deg)
}

.toc__title {
    margin-bottom: 0;
    display: inline-block;
    padding-right: 15px;
    position: relative;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.1rem;
}

.toc__title::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8.7px 5px 0;
    border-color: #fff transparent transparent transparent;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.toc__list {
    margin-top: 0;
    height: auto;
    max-height: 0;
    overflow: hidden
}

.toc__link {
    display: inline-block;
    color: #f8ff13;
    padding: .3rem 0
}

.page-single {
    max-width: 1440px;
    margin: 0 auto 3rem;
    padding: 0 10px
}

.breadcrumbs {
    padding: .5rem 0
}

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

.breadcrumbs__item {
    margin-right: 10px
}

.breadcrumbs__current, .breadcrumbs__link {
    font-size: 14px;
    line-height: 16px;
    font-weight: 900;
    text-decoration: none;
    color: #117770;
    padding: 4px 8px;
    border-radius: 8px;
    background: #4986821a;
}

.breadcrumbs__separator {
    color: var(--main-accent-bg-color)
}

.promocode {
    padding: 1rem 0
}

.promocode__container {
    max-width: 670px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding: 1rem 2rem
}

.promocode__title {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6rem;
    text-align: center
}

.promocode__controls {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 3px;
    background-color: #fff;
    border-radius: 8px
}

.promocode__value {
    font-size: 2rem;
    font-weight: 600;
    margin-left: 10%
}

.promocode__button {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    outline: 0;
    text-decoration: none;
    text-align: center;
    padding: .6rem 1rem;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    border-radius: 7px;
    background-color: var(--main-accent-bg-color);
    border: 2px solid var(--main-accent-bg-color);
    cursor: pointer
}

.promocode__button:hover {
    background-color: #fff;
    color: var(--main-accent-bg-color)
}

.promocode__text {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center
}

.promocode__bottom {
    display: block;
    margin: 1.2rem auto 0;
    max-width: 300px;
    width: 100%;
    padding: .6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    outline: 0;
    text-align: center;
    text-decoration: none;
    background-color: #f23e71;
    border: 2px solid #f23e71;
    border-radius: 7px;
    cursor: pointer
}

.promocode__bottom:hover {
    background-color: #fff;
    color: #f23e71
}

.mobile-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999;
}

.mobile-button__container {
    padding: 10px 1rem
}

.mobile-button__control {
    display: block;
    width: 100%
}

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

.slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.slots__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 1px 4px #039c9333;
    border: none;
    border-radius: 12px;
    background: #fff;
}

.slots__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slots__content {
    padding: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.slots__title {
    margin: 0;
    text-align: center;
}

.slots__button {
    margin-top: auto;
    width: 100%;
}

.slots__text {
    color: #000;
    font-size: .9rem;
    text-align: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 5px
}

@media (max-width: 767px) {
    .slots {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.background-block {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

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

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 1px 4px #039c9333;
}

.advantages__image {
    width: 150px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.advantages__title {
    margin-top: 1rem
}

.advantages__text {
    margin: 0;
}

@media (max-width: 550px) {
    .advantages {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.rating {
    padding: 1rem 0
}

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

.rating__item {
    font-size: 1.3rem;
    padding: 0 .2rem;
    color: #888
}

.difference__element {
    padding: 1rem;
    border: 1px solid var(--main-accent-bg-color);
    border-radius: 10px
}

.difference__list {
    list-style: none;
    padding-left: 0
}

.difference__item {
    margin: 1rem 0;
    padding-left: 25px;
    position: relative
}

.difference__item::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.difference__item_plus::before {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzY3LjgwNSAzNjcuODA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNjcuODA1IDM2Ny44MDU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIHN0eWxlPSJmaWxsOiMzQkI1NEE7IiBkPSJNMTgzLjkwMywwLjAwMWMxMDEuNTY2LDAsMTgzLjkwMiw4Mi4zMzYsMTgzLjkwMiwxODMuOTAycy04Mi4zMzYsMTgzLjkwMi0xODMuOTAyLDE4My45MDINCgkJUzAuMDAxLDI4NS40NjksMC4wMDEsMTgzLjkwM2wwLDBDLTAuMjg4LDgyLjYyNSw4MS41NzksMC4yOSwxODIuODU2LDAuMDAxQzE4My4yMDUsMCwxODMuNTU0LDAsMTgzLjkwMywwLjAwMXoiLz4NCgk8cG9seWdvbiBzdHlsZT0iZmlsbDojRDRFMUY0OyIgcG9pbnRzPSIyODUuNzgsMTMzLjIyNSAxNTUuMTY4LDI2My44MzcgODIuMDI1LDE5MS4yMTcgMTExLjgwNSwxNjEuOTYgMTU1LjE2OCwyMDQuODAxIA0KCQkyNTYuMDAxLDEwMy45NjggCSIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)
}

.difference__item_minus::before {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiBjbGFzcz0iIj48Zz48ZWxsaXBzZSBzdHlsZT0iZmlsbDojRTA0RjVGOyIgY3g9IjI1NiIgY3k9IjI1NiIgcng9IjI1NiIgcnk9IjI1NS44MzIiIGRhdGEtb3JpZ2luYWw9IiNFMDRGNUYiIGNsYXNzPSIiLz48cmVjdCB4PSIxMTMuMiIgeT0iMjI4IiBzdHlsZT0iZmlsbDojRkZGRkZGIiB3aWR0aD0iMjg1LjY3MiIgaGVpZ2h0PSI1NiIgZGF0YS1vcmlnaW5hbD0iI0ZGRDA3RCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iI0ZGRDA3RCIvPjwvZz4gPC9zdmc+Cg==)
}

.comments {
    margin: 2rem -10px -10px
}

.comments .comment {
    margin: 10px
}

.comments .comment__author {
    font-size: 1.2rem;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 0
}

.comments .comment__date {
    font-size: .9rem;
    margin-left: 15px;
    color: #a2a2a2
}

.comments .comment__content {
    padding: 10px 0 0 10px;
    margin-left: 10px;
    border-left: 1px solid var(--main-accent-bg-color);
    margin-top: 0;
    font-size: 1rem;
    font-weight: 300
}

.comments .comment__karma {
    margin-left: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.comments .comment__karma .karma__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px;
    cursor: pointer;
    outline: 0;
    border: none;
    width: 15px;
    height: 15px;
    line-height: 16px;
    border-radius: 50%;
    color: #fff;
    opacity: .1
}

.comments .comment__karma .karma__control.decrease {
    background-color: #dc3545
}

.comments .comment__karma .karma__control.increase {
    background-color: #28a745
}

.comments .comment__karma .karma__control:hover {
    opacity: 1
}

.comments .comment__karma .value {
    font-size: 1rem;
    font-weight: 300;
    color: #a2a2a2
}

.comments .comment__reply {
    background-color: transparent;
    border: none;
    outline: 0;
    cursor: pointer;
    color: #888
}

.comments .comment__child {
    padding-left: 20px;
    position: relative
}

.comment-footer {
    margin-top: 2rem
}

.comment-form-footer {
    margin: 3rem 0
}

.comment-form__title {
    text-align: center
}

.comment-form__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto 0;
    max-width: 700px
}

.comment-form__field {
    padding: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    outline: 0;
    font-size: 1rem;
    font-weight: 300;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.comment-form__field:active, .comment-form__field:focus, .comment-form__field:hover {
    border: 1px solid var(--main-accent-bg-color)
}

.comment-form__field.error {
    border: 1px solid #dc3545;
    background-color: rgba(220, 53, 69, .05)
}

.comment-form__input {
    width: calc(100% / 2 - 20px);
    margin: 10px
}

.comment-form__textarea {
    width: calc(100% - 20px);
    margin: 10px;
    min-height: 100px
}

.comment-form__button {
    margin: 10px
}

.comment-form__alert {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: .8rem;
    font-weight: 300;
    color: #000;
    opacity: 0;
    -webkit-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
    display: block;
    text-align: center;
    width: calc(100% - 20px)
}

.comment-form__alert.error {
    opacity: 1;
    color: #dc3545
}

.comment-form__alert.success {
    opacity: 1;
    color: #28a745
}

.page-404__title {
    text-align: center;
    font-size: 5rem;
    margin-top: 2rem
}

.page-404__subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    margin-top: 2rem
}

.page-404__link {
    margin: 2rem 0;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.scroll-top {
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 999;
}

.scroll-top__button {
    width: 37px;
    height: 36px;
    cursor: pointer;
    z-index: 990;
    opacity: 1;
    background-color: transparent;
    border-radius: 9px;
    transition: all .3s;
    position: fixed;
    bottom: 24px;
    right: 24px;
    transform: scale(1);
    /* box-shadow: 0 1px 4px #039c9333; */
    border: none;
    bottom: 70px;
}

.scroll-top__button:hover {
    box-shadow: 0 3px 8px #039c934d;
}

.small-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.small-icons__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 150px;
    flex: 1 1 150px;
    padding: 1rem 2rem;
    position: relative
}

.small-icons__item:not(:last-of-type):after {
    content: "";
    position: absolute;
    top: calc(50% - .5rem);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 40px;
    border-left: 1px dotted #cdcdcd
}

.small-icons__item a {
    text-decoration: none
}

.small-icons__image {
    width: 35px;
    height: 35px;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #0083c3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto
}

.small-icons__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.small-icons__text {
    text-align: center;
    margin-top: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #0083c3;
    font-size: 1rem
}

.author-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1rem 0
}

.author-block_outlined {
    border: 1px solid var(--main-accent-bg-color);
    padding: 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 1rem
}

.author-block__avatar {
    width: 60px;
    height: 60px
}

.author-block__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.author-block__avatar_scaled {
    width: 150px;
    height: 150px
}

.author-block__content {
    margin-left: 1rem;
    max-width: 600px
}

.author-block__name {
    font-size: 1rem;
    font-weight: 600
}

.author-block__description {
    font-size: .9rem;
    font-weight: 300;
    opacity: .8;
    margin-top: .5rem
}

.author-block__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin: .5rem -5px -5px
}

.author-block__social li {
    width: 25px;
    height: 25px;
    margin: 5px
}

.author-block__social li:hover {
    opacity: .7
}

.shared-items {
    margin: 2rem 0
}

.shared-items__title {
    margin: 15px 10px;
    font-size: 1.2rem;
    font-weight: 600
}

.shared-items__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -2px;
    padding-left: 0
}

.shared-items__item {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 150px;
    flex: 1 1 150px;
    margin: 2px
}

.shared-items__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 .5rem;
    background-color: #f1f1f1;
    border-radius: 10px
}

.shared-items__link svg {
    width: 30px;
    height: 30px
}

#cookie-law-div {
    z-index: 10000000;
    position: fixed;
    bottom: 3%;
    right: 2%;
    padding: 1em;
    max-width: 400px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    font-size: 15px;
    -webkit-box-shadow: rgba(23, 43, 99, .4) 0 7px 28px;
    box-shadow: rgba(23, 43, 99, .4) 0 7px 28px
}

#cookie-law-div a {
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5)
}

#cookie-law-div a:hover {
    opacity: .7
}

#cookie-law-div p {
    margin: 0;
    color: #000;
    padding-right: 50px
}

#cookie-law-div button {
    height: 20px;
    width: 20px;
    position: absolute;
    right: .5em;
    top: 20px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    line-height: 1;
    color: #fff;
    background-color: #000;
    border: none;
    opacity: .6;
    font-size: 12px;
    cursor: pointer;
    border-radius: 50px
}

#cookie-law-div button:hover {
    opacity: 1
}

.acceptButton {
    width: 113px !important;
    background-color: green !important;
    top: 124px !important
}

@media (min-width: 1024px) {
    .main-nav .menu-item-has-children .sub-menu__arrow {
        pointer-events: none
    }


}



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



@media (max-width: 1024px) {
    .page-header__container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: var(--offsets) 0;
        position: relative
    }

    .main-nav .sub-menu a {
        color: #117770;
    }

    .page-header__logo {
        max-width: 100px
    }

    .page-header__nav {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .page-header__buttons {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .page-header__burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: -16px;
        right: -16px;
        background: linear-gradient(#2ddacf -115%, #f2fff8 100%);
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity 250ms;
        -o-transition: opacity 250ms;
        transition: opacity 250ms
    }

    .main-nav.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 9999
    }

    .main-nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 1rem
    }

    .main-nav__list > li {
        width: 100%
    }

    .main-nav__list > li > a, .main-nav__list > li > span {
        display: block;
        width: 100%;
        padding: .5rem 0;
        margin: 0
    }

    .main-nav__list > li > a::after, .main-nav__list > li > span::after {
        display: none
    }

    .main-nav .menu-item-has-children {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .main-nav .menu-item-has-children .sub-menu__arrow {
        right: 0;
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        pointer-events: auto
    }

    .main-nav .sub-menu {
        display: none;
        background: none;
    }
}


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

@media (max-width: 700px) {
    .mobile-button {
        display: block
    }

    .slider__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .slider__title {
        text-align: center
    }

    .slider__button {
        margin-left: 0;
        margin-top: 1rem
    }
}

@media screen and (max-width: 700px) {
    #cookie-law-div p {
        padding-bottom: 36px
    }

    .acceptButton {
        left: calc(50% - 60px)
    }
}

@media (max-width: 650px) {
    .main-nav .sub-menu {
        max-width: 100%
    }

    .icon-blocks__item {
        width: calc(100% / 2)
    }
}

@media (max-width: 600px) {
    .promocode__controls {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .promocode__button {
        max-width: none;
        margin-top: .5rem
    }

    .promocode__text {
        margin-left: 0;
        text-align: center
    }

    #cookie-law-div {
        border-radius: 0;
        max-width: 100%;
        right: 0;
        bottom: 0
    }
}

@media screen and (max-width: 600px) {
    .acceptButton {
        top: 100px !important
    }

    #cookie-law-div p {
        padding-bottom: 50px
    }
}

@media (max-width: 550px) {
    .page-footer__logo {
        text-align: center
    }
}

@media (max-width: 767px) {

    .page-header__buttons {
        width: 100%;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        text-align: center;
        margin-top: 1rem
    }

    .page-header__buttons .accent-button {
        flex-grow: 1;
    }

    .comment-form__button, .comment-form__input {
        width: calc(100% - 20px)
    }
}

@media screen and (max-width: 400px) {
    .acceptButton {
        top: 127px !important
    }
}

.main-nav__list > li > a,
.main-nav__list > li > span {
    transition: all 0.3s ease-in-out;
    color: #117770;
    border-radius: 4px;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    display: flex;
}

.main-nav__list > li:hover > a::after {
    display: none;
}

.main-nav__list > li:hover > a,
.main-nav__list > li:hover > span:not(.sub-menu__arrow) {
    color: #06cebf;
}

.get-image {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__question.active svg {
    transform: rotate(180deg);
}

.faq__question svg {
    margin-left: 10px;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.faq__question svg path {
    fill: #f8ff13;
}

.faq__answer {
    margin-top: 10px;
    color: #000;
}


.faq__answer.active {
    padding-top: 1rem;
    border-top: 1px solid #f8ff13;
}

.toc {
    width: 100%;
    border-radius: 0;
    background-color: #000b14;
    border-radius: 8px;
}

.toc__title {
    display: flex;
    justify-content: space-between;
    margin: 0;
    color: #fff;
}

.toc.active .toc__title::after {
    pointer-events: none;
}

.toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.toc.active .toc__list {
    max-height: 100%;
}

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

.toc__link {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.toc__link:hover {
    opacity: 0.7;
}


@media (max-width: 767px) {
    .wrapper > :last-child {
        margin-bottom: 1rem;
    }

    .toc__title {
        width: 100%;
    }

    .toc__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

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

    .main-nav__list > li > a,
    .main-nav__list > li > span {
        font-size: 14px;
    }
}


/* LISTING */
.ListingV1Container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.listingItem {
    max-width: 18%;
    width: 338px;
    background-color: #fff;
    border-radius: 5px;
    margin: 10px;
    padding: 0 0 20px 0;
    position: relative;
    border: 1px solid #DADADA;
}


.listingItemBodyRating__stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 16px;
    font-family: Times;
    line-height: 1;
}

.listingItemBodyRating__stars::before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, #FF9900 var(--percent), #333 var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.listingItemHeader {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #DADADA;
    padding: 10px 0;
}

.listingItemHeader__counter {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    left: -1px;
    top: 20px;
    width: 31px;
    height: 46px;
    background: transparent url("../img/head_list_bg_count.svg") no-repeat center;
}

.listingItemHeader__label {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 100px;
    height: 40px;
    font-size: 14px;
    font-family: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.listingItemHeader__label-hot {
    background: transparent url("../img/listing_v2_label_hot.svg") no-repeat center;
}

.listingItemHeader__label-new {
    background: transparent url("../img/listing_v2_label_new.svg") no-repeat center;
}

.listingItemHeader__label-best {
    background: transparent url("../img/listing_v2_label_best.svg") no-repeat center;
}

.listingItemBody {
    font-family: inherit;
    font-weight: 500;
    padding: 15px 0 0 0;
    text-align: center;
}

.listingItemBody__name a,
.listingItemBody__name p,
.listingItemBody__name {
    font-size: 24px;
    font-family: inherit;
    color: #474747;
    font-weight: 600;
}

.listingItemBody__name a {
    text-decoration: none;
}

.listingItemBodyRating {
    display: flex;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #DADADA;
}

.listingItemBodyRating__count {
    margin-right: 11px;
    font-family: inherit;
    font-weight: 500;
    color: #818181;
    font-size: 14px;
}

.listingItemBody__bonus {
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #818181;
    margin-bottom: 25px;
}

.listingItemFooter {
    display: flex;
    justify-content: center;
}

.listingItemFooter__button {
    display: block;
    font-family: inherit;
    text-align: center;
    text-transform: uppercase;
    padding: 17px 0;
    margin: 0 20px;
    width: 100%;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(67.17deg, #007E2B 1.77%, #6FC000 21.13%, rgba(147, 255, 0, 0) 43.54%), #27B000;
    border-radius: 5px;
    text-decoration: none;
}

.listingItemFooter__button:hover {
    -webkit-box-shadow: 4px 5px 14px -9px #000000;
    box-shadow: 4px 5px 14px -9px #000000;
    transition: all .5s;
    cursor: pointer;
}


.tableListingV2RowButton__link:hover {
    cursor: pointer;
}

@media only screen and (max-width: 1000px) {
    .listingItem {
        max-width: 30%;
    }
}

@media only screen and (max-width: 850px) {
    .listingItem {
        max-width: 45%;
    }
}

@media only screen and (max-width: 500px) {
    .listingItem {
        max-width: 100%;
    }
}

.faq {
    margin-bottom: 20px;
}

.page-footer__logo img {
    max-height: 50px;
    width: auto;
}

.page-footer__text {
    text-align: center;
}

/* Game */
.game {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 80vh;
    overflow: hidden
}

@media (max-width: 767px) {
    .game._active {
        aspect-ratio: unset;
        height: 80vh
    }
}

.game:not(:last-of-type) {
    margin-bottom: 24px
}

.game .game__preview, .game .game__content, .game .game__preview:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.game .game__preview {
    z-index: 0
}

.game .game__preview:after {
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0.59))
}

.game .game__preview .get-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.game .game__preview .get-image img {
    max-height: 100%;
    object-fit: contain
}

.game .game__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    z-index: 1
}

/*.game .game__content .btn {*/
/*    min-width: unset;*/
/*    padding: 15px 30px;*/
/*    display: inline-block;*/
/*    border: none;*/
/*    border-radius: 5px;*/
/*    transition: 150ms;*/
/*    transform-origin: center;*/
/*    cursor: pointer;*/
/*    text-decoration: none;*/
/*    font-family: inherit;*/
/*    font-size: 17px;*/
/*    line-height: 20px;*/
/*    font-weight: 500;*/
/*    background-color: #09D065;*/
/*    border: 1px solid #09D065;*/
/*    color: var(--color-body)*/
/*}*/

/*.game .game__content .btn:hover {*/
/*    opacity: .7*/
/*}*/

/*.game .game__content .demo-btn {*/
/*    background-color: var(--color-second-header-footer-bg);*/
/*    border-color: rgba(255, 255, 255, 0.2);*/
/*    color: #09D065*/
/*}*/

/*.game .game__content .demo-btn:hover {*/
/*    border: 1px solid #09D065;*/
/*    opacity: 1*/
/*}*/

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

.game._active {
    display: flex;
    flex-direction: column;
    width: auto;
    aspect-ratio: unset;
    max-height: unset;
}

.game._active .game__content {
    position: relative;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    height: unset;
    background-color: var(--header-bg-color);
    border-radius: 10px 10px 0 0;
    order: 1;
}

.game._active .game__preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 80vh;
    height: auto;
    order: 2;
    flex: 1 1;
}

.game._active .game__preview:after {
    display: none;
}

.game._active .game__content .demo-btn {
    display: none;
}

.game .game__close {
    display: none;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    cursor: pointer;
    padding: 20px;
}

.game._active .game__close {
    display: block;

}

@media (max-width: 767px) {
    .game._active .game__content {
        align-items: flex-start;
    }

    .game .game__content .btn {
        padding: 10px 15px;
    }
}


.how-to {
    box-shadow: inset 0 0 10px #1ed0b4b3, 0 0 10px #1ed0b4;
    background: linear-gradient(90deg, #f1fffe 0%, #f6fff0 35.94%, #eefffe 71.88%, #fff9ee 100%);
    border: 6px solid #fff;
    border-radius: 30px;
    padding: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.how-to__main-title {
    margin: 0 0 20px;
    font-family: inherit;
    text-transform: uppercase;
}

.how-to__main-title.align-left {
    text-align: left
}

.how-to__main-title.align-center {
    text-align: center
}

.how-to__main-title.align-right {
    text-align: right
}

.how-to__main-description {
    margin: 0 0 20px;
    font-family: inherit;
}

.how-to__main-description.align-left {
    text-align: left
}

.how-to__main-description.align-center {
    text-align: center
}

.how-to__main-description.align-right {
    text-align: right
}

.how-to__list {
    padding-left: 0;
    display: grid;
    gap: 12px;
}

.how-to__item {
    position: relative;
    display: grid;
    grid-template-columns:1.05fr 1fr;
    gap: 12px 24px;
}

.how-to__item-label-text {
    padding: 0 16px;
    grid-column: 1 / -1;
    color: #117770;
    background-color: #4986821a;
    font-size: 14px;
    line-height: 40px;
    font-weight: 900;
    border-radius: 8px;
    text-transform: uppercase;
    text-align: center;
}


.how-to__item-content {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.how-to__item-label {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.how-to__item-label svg {
    width: 45px;
    height: 45px;
    margin-right: 10px
}

.how-to__item-label-counter {
    position: absolute;
    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    left: 17px;
    line-height: 1;
    text-transform: uppercase;
    color: #303344
}

.how-to__item-decor-line {
    display: block;
    position: absolute;
    top: 35px;
    left: 21px;
    height: calc(100% - 70px);
    width: 2px;
    background: repeating-linear-gradient(#303344, #303344 8px, transparent 8px, transparent 12px, #303344 12px)
}

.how-to__item-decor-line::after, .how-to__item-decor-line::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-color: #303344;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    -webkit-transform: translateX(calc(-50% + 1px));
    transform: translateX(calc(-50% + 1px))
}

.how-to__item-decor-line::before {
    top: -3px
}

.how-to__item-decor-line::after {
    bottom: -3px
}

.how-to__item-finish-icon {
    position: absolute;
    bottom: 0;
    left: 0
}

.how-to__item-finish-icon svg {
    width: 45px;
    height: 45px
}

.how-to__item-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-content: flex-end;
}

.how-to__item-image .get-image {
    margin: 0;
    width: 100%;
}

.how-to__item-image img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 500px
}

.how-to .how-to__item-title {
    margin: 0 0 10px
}

.how-to .how-to__item-description {
    font-family: inherit;
    margin: 0
}

.how-to .how-to__item-description a {
    text-decoration: none;
    font-family: inherit;
}

.how-to .how-to__item-description a:hover {
    text-decoration: underline
}

@media (max-width: 768px) {
    .main-footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .main-footer__info, .main-footer__info-desktop, .main-footer__info-mobile {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .main-footer__info-desktop {
        display: none
    }

    .main-footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .main-footer__nav-list ul li {
        text-align: center
    }

    .toc__list {
        -ms-grid-columns:(auto) [ 1 ];
        grid-template-columns:repeat(1, auto)
    }
}


@media (max-width: 767px) {
    .how-to {
        padding: 10px;
        margin-top: 1rem;
        margin-bottom: 1rem
    }

    .how-to__item:not(:first-child):before {
        width: calc(100% - 105px)
    }

    .how-to__item:first-child .how-to__item-decor-line {
        height: calc(100% - 105px)
    }

    .how-to__item:last-child .how-to__item-decor-line {
        height: calc(100% - 85px)
    }

    .how-to__item {
        grid-template-columns:1fr;
    }

    .how-to__item-label svg {
        width: 35px;
        height: 35px
    }

    .how-to__item-label-counter {
        font-size: 16px;
        left: 13px;
        top: 10px
    }

    .how-to__item-decor-line {
        left: 15px
    }

    .how-to__item-finish-icon svg {
        width: 35px;
        height: 35px
    }
}


.categories {
    padding: 0 !important;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.categories__item {
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--main-accent-bg-color);
    cursor: pointer;
}

.categories__item img {
    border-radius: 16px;
}

@media (max-width: 1100px) {
    .categories {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr  1fr;
    }

}

@media (max-width: 780px) {
    .categories {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (max-width: 650px) {
    .categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .categories__item {
        padding: 8px;
        border-radius: 10px;
        font-size: 16px;
    }

    .categories__item img {
        border-radius: 10px;
    }
}


.promotions .promotions__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.promotions .promotions__item {
    display: flex;
    gap: 16px;
    flex: 1 1 calc(50% - 10px);
    border-radius: 12px;
    background-color: var(--main-accent-bg-color);
    overflow: hidden;
}

.promotions .get-image {
    height: 100%;
}

.promotions .get-image img {
    height: 100%;
    width: auto;
    min-width: 220px;
    object-fit: cover;
}

.promotions .promotions__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 16px 0;
}

.promotions .promotions__title {
    color: #303344;
    font-size: 23px;
    font-weight: 800;
    line-height: 28px;
    margin: 0;
}

.promotions .promotions__description {
    color: #313037;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    flex: 1 1;
    margin: 0;
}

@media (max-width: 1200px) {
    .promotions .promotions__item {
        flex: 1 1 100%;
    }

    .promotions .bonus__button {
        min-width: 320px;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .promotions .promotions__item {
        flex-direction: column;
    }

    .promotions .get-image {
        width: 100%;
        height: auto;
    }

    .promotions .get-image img {
        width: 100%;
        height: auto;
        max-height: 260px;
        min-width: unset;
    }

    .promotions .promotions__content {
        padding: 0 16px 16px 16px;
    }

    .promotions .bonus__button {
        min-width: unset;
        width: 100%;
    }
}

.promocode {
    display: flex;
    gap: 8px;
    grid-row: 3/4;
    grid-column: 1/2;
}

.promocode-field {
    flex: 1 1;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: 3px dashed #ffffff;
    padding: 12px;
    max-width: 220px;

}

.promocode .copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    border: 3px solid #ffffffa6;
}

.promocode .copy-btn:hover {
    background: rgba(255, 255, 255, 0.30);
}


.image {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.image img {
    object-fit: contain;
}


.info-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: -10px;
    margin-top: 20px;
    padding: 0 !important;
}

.info-list__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: min-content
}

.info-list__item-title {
    z-index: 1;
    padding: 24px;
    border-radius: 8px;
    color: #fff;
    background-color: var(--main-accent-bg-color);
    border: 1px solid #000;
    font-size: 24px;
    line-height: 120%;
    font-weight: 700
}

.info-list__item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 0 0 8px 8px;
    padding: 24px;
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / 24%);
    margin-top: -8px;
    background: linear-gradient(180deg, rgba(240, 240, 240, .03) 0, rgba(108, 106, 123, .03) 100%);
    flex: 1;
    font-size: 18px;
    line-height: 136%;
    font-weight: 600;

    border: 1px solid #000;
}

.info-list__item-content p {
    margin: 0;
    font-size: 18px;
    line-height: 136%;
    font-weight: 600;

}

.info-list__item-content span {
    font-size: 18px;
    line-height: 136%;
    font-weight: 400;
}

.info-list__item-content a {
    transition-property: color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: color
}

.info-list__item-content a > * {
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: opacity
}

.info-list__item-content img {
    max-width: 200px;
    max-height: 30px;
    width: 100%;
}

.info-list__item-content svg {
    max-width: 32px;
    max-height: 32px;
    min-width: 32px;
    min-height: 32px
}

.info-list__horizontal a, .info-list__horizontal li, .info-list__vert a, .info-list__vert li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.info-list__vert {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.info-list__horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
}

.info-list__horizontal li {
    min-height: 24px
}

.info-list__horizontal_sep {
    align-items: flex-start;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 16px;
    overflow: hidden
}

.info-list__horizontal_sep li {
    position: relative
}

.info-list__horizontal_sep li::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + 16px);
    width: 1px;
    height: 100%;
    background: #434f72
}

.info-list__horizontal_sep li:last-child::before {
    display: none
}

@media (min-width: 768px) {
    .info-list__item_basic {
        width: 35.2112676056%
    }

    .info-list__item_financial {
        width: 45.0704225352%
    }

    .info-list__item_devices {
        width: 16.9014084507%
    }

    .info-list__item_bonuses {
        width: 44.3661971831%
    }

    .info-list__item_services {
        width: 29.1549295775%
    }

    .info-list__item_support {
        width: 23.661971831%
    }

}


.promotions .promotions__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}


.gallery_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 32px;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery_item img {
    max-height: 35px;
    width: fit-content;
    object-fit: contain;
}

.gallery_link {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}



* + .text-image {
    margin-top: 1.5rem;
}

.text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.text-image.reversed .text-image__item {
    order: 1;
}

.text-image__item > *:first-child {
    margin-top: 0;
}

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

    .text-image.reversed .text-image__item {
        order: 0;
    }
}


.bonus {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    grid-template-columns: 1fr auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 14px;
    gap: 8px 12px;
    min-height: 240px;
    height: 100%;
    box-shadow: 0 0 10px #ecb800, inset 0 0 7px #ecb800b3;
    background: #fa9a00;
    border: 6px solid #fff;
}

.bonus._anim-border {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bonus._anim-border:after,.bonus._anim-border:before {
    content: '';
    position: absolute;
    margin: auto
}

.bonus._anim-border:before {
    width: 1000px;
    top: 0;
    height: 1000px;
    right: 0;
    bottom: 0;
    left: -200px;
    background: #fa9a00;
    background: conic-gradient(#fe500c, rgb(255 255 255));
    animation: 2s linear infinite rotate;
    z-index: -1
}

@keyframes rotate {
    100% {
        transform: rotate(1turn)
    }
}

.bonus._anim-border:after {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-color: #fa9a00;
    border-radius: 12px;
    z-index: 0
}

.bonus._anim-border>* {
    z-index: 1
}

.bonus b,.bonus strong {
    color: #fd3307;
    background: #fff;
    padding: 4px;
    border-radius: 8px;
}

.bonus .bonus__title {
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 44px;
}

.bonus .bonus__description {
    grid-row: 2/3;
    grid-column: 1/2;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    margin-top: 0
}

.bonus .get-image {
    grid-row: 1/-1;
    grid-column: 2/3;
    min-width: 146px
}

.bonus .get-image img {
    max-width: 190px
}

.bonus .promocode {
    margin-top: 12px
}

.bonus.v2 {
    gap: 12px;
    padding: 16px
}

.bonus.v2 .bonus__button {
    min-width: 240px
}

.bonus__button {
    padding: 12px 16px;
    font-size: 24px;
    line-height: 32px;
    color: #fd3307;
    background-color: #fff;
    background-size: 0;
    box-shadow: 0 1px 4px #039c9333;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    border: none;
    border-radius: 12px;
    align-items: center;
    max-width: 100%;
    font-style: normal;
    font-weight: 900;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    min-width: 240px;
}

.bonus .bonus__button {
    margin-top: 20px;
}

.bonus__button:hover {
    color: #0ccfbd;
    box-shadow: 0 3px 8px #039c934d;
}

@keyframes move {
    50% {
        transform: translateY(-5px) rotate(15deg)
    }

    70% {
        transform: translateY(-5px) rotate(5deg)
    }
}

.promocode {
    display: flex;
    gap: 8px;
    grid-row: 3/4;
    grid-column: 1/2
}

.promocode:has(.active) .promocode-field {
    border: 2px solid #7cfc00
}

.promocode-field {
    flex: 1 1;
    color: #f9cb16;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: 2px dashed #f9cb16;
    padding: 12px;
    max-width: 220px
}

.promocode .copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    cursor: pointer;
    transition: .2s ease-in-out
}

.promocode .copy-btn:hover {
    background: rgba(255,255,255,.3)
}

@media (max-width: 1200px) {
    .bonus .bonus__title {
        grid-row:1/2;
        grid-column: 1/3
    }

    .bonus .bonus__description {
        grid-row: 2/3;
        grid-column: 1/2
    }

    .bonus .get-image {
        min-width: 78px;
        grid-row: 2/3;
        grid-column: 2/3;
        align-self: start;
        max-width: 110px
    }

    .bonus .get-image img {
        max-width: 100%
    }

    .bonus.v2 .get-image {
        max-width: 126px
    }

    .bonus .promocode {
        grid-row: 3/4;
        grid-column: 1/3
    }

    .bonus .promocode-field {
        max-width: unset
    }

    .bonus__button {
        padding-top: 0;
        padding-bottom: 0;
        min-width: unset;
        width: 100%
    }

    .bonus .bonus__button {
        grid-row: 4/5;
        grid-column: 1/3
    }

    .bonus__button {
        height: 48px;
    }

    .bonus.v2 {
        grid-template-rows: auto 1fr auto
    }

    .bonus.v2 .bonus__button {
        grid-row: 3/4
    }

    .bonus .bonus__button {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .bonus {
        padding:16px;
        gap: 16px 12px;
        min-height: unset
    }

    .bonus .bonus__title {
        font-size: 20px;
        font-weight: 900;
        line-height: 30px
    }

    .bonus .get-image {
        max-width: 78px
    }

    .bonus .promocode {
        margin-top: -12px
    }

    .bonus.v2 {
        gap: 8px
    }

    .bonus.v2 .bonus__title {
        grid-row: 1/2;
        grid-column: 1/2
    }

    .bonus.v2 .bonus__description {
        grid-column: 1/3
    }

    .bonus.v2 .get-image {
        grid-row: 1/2;
        grid-column: 2/3
    }

    .bonus.v2 .get-image img {
        max-width: 114px
    }
}

.wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 1023px) {
    .wp-block-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}