.store__balance,
.store__categories {
    margin-top: 20px;
}
.store__products,
.store__testimonials {
    margin-top: 36px;
}
.store__products-more {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    background: var(--color-block-background);
    border-radius: var(--border-radius);
    transition: background 0.25s ease-in-out;
    cursor: pointer;
}
.store__products-more:hover {
    background: var(--color-block-background-hover);
}
.store__subtitle {
    font-variation-settings: "wght" 700;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1;
}
@supports not (font-variation-settings: normal) {
    .store__subtitle {
        font-weight: 700;
    }
}
.store .swiper-pagination {
    position: relative;
    margin-top: 30px;
}
.store .swiper-pagination-bullet {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--color-block-background);
    border: 1px solid transparent;
    opacity: 1;
}
.store .swiper-pagination-bullet:after {
    position: absolute;
    content: "";
    z-index: 1;
    padding: 1px;
    background: var(--color-gradient-blue-90);
    border-radius: var(--border-radius);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.store .swiper-pagination-bullet:hover:after {
    opacity: 1;
}
.store .swiper-pagination-bullet-active {
    background: var(--color-background);
}
.store .swiper-pagination-bullet-active:after {
    opacity: 1;
}
.store .swiper-horizontal .swiper-pagination-bullet {
    margin: 0 15px;
}
.store .swiper-horizontal .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: background 0.25s ease-in-out, transform 0.2s, left 0.2s, border 0.25s ease-in-out;
}
@media only screen and (max-width: 1440px) {
    .store__categories {
        margin-top: 10px;
    }
    .store__products,
    .store__testimonials {
        margin-top: 24px;
    }
    .store__subtitle {
        margin-bottom: 16px;
        font-size: 18px;
    }
    .store__products-more {
        min-height: 50px;
        margin-top: 10px;
        font-size: 14px;
        border-radius: var(--border-radius-hd);
    }
    .store .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }
    .store .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .store .swiper-horizontal .swiper-pagination-bullet {
        margin: 0 10px;
    }
}
@media only screen and (max-width: 768px) {
    .store__balance,
    .store__categories {
        margin-top: 15px;
    }
    .store__products {
        margin-top: 30px;
    }
    .store__testimonials {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .store__testimonials .swiper {
        overflow: hidden;
    }
    .store__subtitle {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .store__products-more {
        margin-top: 15px;
        margin-bottom: 25px;
        border-radius: var(--border-radius);
    }
}
.sbal-card {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(90deg, rgba(31, 117, 234, 0.2), rgba(127, 62, 150, 0.2));
    border-radius: var(--border-radius);
    will-change: transform;
    transition: transform 0.35s ease, background 0.25s ease-in-out;
}
.sbal-card:hover {
    transform: scale(1.02);
}
.sbal-card._green {
    background: linear-gradient(90deg, rgba(31, 156, 86, 0.2), rgba(114, 137, 49, 0.2));
}
.sbal-card._gold {
    background: linear-gradient(90deg, rgba(var(--color-gold), 20%) 0, rgba(var(--color-gold), 20%) 100%);
}
.sbal-card__icon {
    flex: 0 0 auto;
    margin-right: 30px;
    font-size: 0;
}
.sbal-card__icon .svg-icon {
    font-size: 40px;
}
.sbal-card__icon img {
    width: 40px;
}
.sbal-card__contents {
    flex: 1 1 auto;
    margin-right: 30px;
}
.sbal-card__name {
    font-variation-settings: "wght" 700;
    font-size: 18px;
}
@supports not (font-variation-settings: normal) {
    .sbal-card__name {
        font-weight: 700;
    }
}
.sbal-card__description {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-font-60);
}
.sbal-card__counter {
    padding: 14px 15px;
    text-align: center;
    background: var(--color-block-background);
    border-radius: 15px;
    opacity: 0;
}
.sbal-card__counter._visible {
    opacity: 1;
}
.sbal-card__counter-label {
    font-size: 10px;
    line-height: 1;
    color: var(--color-font-60);
}
.sbal-card__counter-value {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1;
}
@media only screen and (max-width: 1440px) {
    .sbal-card {
        padding: 20px 30px;
        border-radius: var(--border-radius-hd);
    }
    .sbal-card__icon {
        margin-right: 20px;
    }
    .sbal-card__icon .svg-icon {
        font-size: 30px;
    }
    .sbal-card__icon img {
        width: 30px;
    }
    .sbal-card__contents {
        margin-right: 20px;
    }
    .sbal-card__name {
        font-size: 16px;
    }
    .sbal-card__counter {
        padding: 10px 10px 8px;
    }
}
@media only screen and (max-width: 768px) {
    .sbal-card {
        align-items: flex-start;
        padding: 20px;
        flex-wrap: wrap;
        border-radius: var(--border-radius);
    }
    .sbal-card__icon .svg-icon {
        font-size: 20px;
    }
    .sbal-card__icon img {
        width: 20px;
    }
    .sbal-card__contents {
        flex: 0 0 100%;
        margin-top: 20px;
    }
    .sbal-card__name {
        font-size: 14px;
    }
    .sbal-card__description {
        margin-top: 8px;
        font-size: 10px;
        line-height: 1;
    }
    .sbal-card__counter {
        position: absolute;
        display: none;
        top: 0;
        right: 0;
    }
}
